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.

57 lines
855 B

  1. /*++
  2. Copyright (c) 1989-1999 Microsoft Corporation
  3. Module Name:
  4. dllmain.c
  5. Abstract:
  6. This module implements the initialization routines for network
  7. provider interface
  8. Notes:
  9. This module has been built and tested only in UNICODE environment
  10. --*/
  11. #include <windows.h>
  12. #include <process.h>
  13. // NOTE:
  14. //
  15. // Function: DllMain
  16. //
  17. // Return: TRUE => Success
  18. // FALSE => Failure
  19. BOOL WINAPI DllMain(HINSTANCE hDLLInst, DWORD fdwReason, LPVOID lpvReserved)
  20. {
  21. BOOL bStatus = TRUE;
  22. WORD wVersionRequested;
  23. switch (fdwReason) {
  24. case DLL_PROCESS_ATTACH:
  25. break;
  26. case DLL_PROCESS_DETACH:
  27. break;
  28. case DLL_THREAD_ATTACH:
  29. break;
  30. case DLL_THREAD_DETACH:
  31. break;
  32. default:
  33. break;
  34. }
  35. return(bStatus);
  36. }
  37.