Has anyone seen a linker warning like the following:
"LIBCD.lib(crt0init.obj) : warning LNK4098: defaultlib 'libc.lib' conflicts with use of other libs; use /NODEFAULTLIB:library"
Im using DGSDK and Visual Studio .NET 2003. The Project compiles and links ok.
My Code is as follows
#include "..\\Includes\\dbfix.h"
#include "DarkSDK.h"
void DarkSDK(void)
{
}
The dbfix header file includes the following code which fixes a DX linker error.
#define INITGUID
#include <dxdiag.h>
#undef INITGUID
I've managed to find the option in VS 2003 to turn on "/NODEFAULTLIB" but when that is turned on I get a further 3 linker errors as a result.
Does anyone know if this linker warning is a problem?
Andrew