
DLL doesn't link runtime functions
If you want to send me the project (or a stripped down version of it...)
I'll look into it. BTW, I just built a simple do-nothing DLL with no
libraries
linked, but with the following code. No link errors. As long as I don't
specify /NODEFAULTLIB, the linker searches the appropriate libraries
to resolve printf().
-------------------------------------------------------------
#include <stdio.h>
void main()
{
printf("Hello world\n");
Quote:
}
>The functions are those found in time.h and stdio.h.