windows-nt/Source/XPSP1/NT/termsrv/remdsk/server/ics/icshelper/icshelp.c

20 lines
375 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
// ICSHelp.c : Implementation of DLL Exports.
#include <windows.h>
/////////////////////////////////////////////////////////////////////////////
// DLL Entry Point
BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved)
{
if (dwReason == DLL_PROCESS_ATTACH)
{
DisableThreadLibraryCalls(hInstance);
}
return TRUE; // ok
}