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.

43 lines
838 B

  1. /******************************************************************\
  2. * Microsoft Windows NT *
  3. * Copyright(c) Microsoft Corp., 1995 *
  4. \******************************************************************/
  5. /*++
  6. Module Name:
  7. DLLINIT.C
  8. Description:
  9. This module contains code for the rasadm.dll initialization.
  10. Author:
  11. Janakiram Cherala (RamC) November 29, 1995
  12. Revision History:
  13. --*/
  14. #include <windows.h>
  15. BOOL
  16. DllMain(
  17. HANDLE hinstDll,
  18. DWORD fdwReason,
  19. LPVOID lpReserved
  20. )
  21. {
  22. switch (fdwReason)
  23. {
  24. case DLL_PROCESS_ATTACH:
  25. DisableThreadLibraryCalls(hinstDll);
  26. break;
  27. case DLL_PROCESS_DETACH:
  28. break;
  29. }
  30. return(TRUE);
  31. }