Leaked source code of windows server 2003
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.

30 lines
664 B

  1. //++--------------------------------------------------------------
  2. //
  3. // Function: DllMain
  4. //
  5. // Synopsis: Disabling thread calls
  6. //
  7. // Arguments: [in] HINSTANCE - module handle
  8. // [in] DWORD - reason for call
  9. // reserved
  10. //
  11. // Returns: BOOL - sucess/failure
  12. //
  13. //
  14. // History: TMarsh Created 11/07/2001
  15. //
  16. //----------------------------------------------------------------
  17. #include "windows.h"
  18. extern "C" BOOL WINAPI
  19. DllMain(
  20. HINSTANCE hInstance,
  21. DWORD dwReason,
  22. LPVOID lpReserved
  23. )
  24. {
  25. return (TRUE);
  26. } // end of DllMain method