I have a statement in a C++Builder .cpp file;
#pragma link "AdvListV"
What file does this link to a .bpi file, .obj file?
e.g. AdvListV.obj or AdvListV.bpi?
>What file does this link to a .bpi file, .obj file?
according to help "by default linker assumes a .obj extension"
--
Vladimir Ulchenko aka vavan
> according to help "by default linker assumes a .obj extension"
It should also find .lib files. I don't think it will try to link
.bpi files.
--
David Dean (CodeGear)
Lead C++ QA Engineer
> It should also find .lib files. I don't think it will try to link
>.bpi files.
tbh I don't know since I don't use #pragma link
I prefer #pragma comment which forces to link either .lib or .bpi
files according to conditional define in my projects