how to add an lib file
Hi I have a lib file that I used in Borland C++. I have this lib file in both OMF and COFF format. I know that in VC++ i must use the COFF format. Can you please tell me how to add/use this LIB file.
The prototype is:
extern "C" int _pascal Function(char *Name, HANDLE hWnd);
how I must declare it on VC++?
Thanks
[349 byte] By [
dimitrisk] at [2007-11-18 15:18:17]

# 4 Re: how to add an lib file
Yes but is not a DLL, it is a LIB (consider it as OBJ) that is linked inside the exe file. I think LoadLibrary does not help in this situation.
Am I wrong?