Pelles C 4.5
Writing a DLL like #define WIN32_LEAN_AND_MEAN /* speed up */
#include <windows.h>
#include <tchar.h>
#include <winsock.h>
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
;int WINAPI serverSetup(long,long,long)
;int WINAPI clientSetup(long,long,long)
//blablablub...
If there is no "pocrt.dll" on target computer, my dll doesnt work and a Messagebox like "pocrt.dll not found" appears.
What is my fault?