Subject: | dbdimp.obj : error LNK2001: unresolved external symbol _snprintf |
The error
dbdimp.obj : error LNK2001: unresolved external symbol _snprintf
The fix is simple.
Add a
#define snprintf _snprintf
to dbdimp.h
For distribution purposes, you should probably wrap it in an #ifndef
Cheers