This example don't work
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
char * po_strstr(const char *string1, const char *string2);
#pragma comment(linker, "-export:po_strstr=pocrt.strstr")
BOOL WINAPI _DllMainCRTStartup(HANDLE hInstDLL, DWORD dwReason, LPVOID lpvReserved)
{
return 1;
}
gives error
POLINK: error: Unresolved external symbol 'strstr'.
so that forwander problem still exist