This is just a little ditty I use to keep my Windows dll smaller... I plop this code in somewhere...// This is to prevent the CRT from loading, thus making this a smaller
// and faster dll.
extern BOOL __stdcall _DllMainCRTStartup( HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
{
Sleep(0);
return DllMain( hinstDLL, fdwReason, lpvReserved );
}