I am working in two different versions of c++ (builder 2009 and XE1)
.
In both I need to use the same file f.cpp
, which contains function LoadLibrary("path")
.
Builder 2009
requires path of type char
and XE1
- wchar
, so this invokes error.
Is there some way to use "LoadLibrary()" with both char&wchar?
tanks.