Examples:
"sql.h" header file how to skip compile in vs 2008 ?
Printable View
Examples:
"sql.h" header file how to skip compile in vs 2008 ?
I'm not quite sure what you mean. If you have
in your program and you don't want to compile the sql.h header file, you can just comment out that line asCode:#include <sql.h>
Code://#include <sql.h>
And what is the problem with the header? The header just adds a bunch of declarations to your code, but does not bring any extra thing to be compiled. What is the problem with that?