Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
375 B

  1. // ICSHelp.c : Implementation of DLL Exports.
  2. #include <windows.h>
  3. /////////////////////////////////////////////////////////////////////////////
  4. // DLL Entry Point
  5. BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved)
  6. {
  7. if (dwReason == DLL_PROCESS_ATTACH)
  8. {
  9. DisableThreadLibraryCalls(hInstance);
  10. }
  11. return TRUE; // ok
  12. }