.lib in 6.0
C / C++ / MFC
2
Posts
2
Posters
0
Views
1
Watching
-
In 6.0 "#using" is not a valid command. I want to do this: #using but it won't let me. How do you say that in 6.0? LOSTTWARE.com
-
In 6.0 "#using" is not a valid command. I want to do this: #using but it won't let me. How do you say that in 6.0? LOSTTWARE.com
#pragma comment( lib, "msimg32.lib" )
This embeds a command to the linker in the object file generated by the compiler for this source file. MFC uses comment pragmas to force linking to the appropriate MFC runtime library files depending on your definitions. The#using
directive is for importing a managed library for use in managed C++ code.