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.

55 lines
845 B

  1. /*++
  2. Copyright (c) 1989-1997 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 builkt and tested only in UNICODE environment
  10. --*/
  11. #include <windows.h>
  12. // NOTE:
  13. //
  14. // Function: DllMain
  15. //
  16. // Return: TRUE => Success
  17. // FALSE => Failure
  18. BOOL WINAPI DllMain(HINSTANCE hDLLInst, DWORD fdwReason, LPVOID lpvReserved)
  19. {
  20. BOOL bStatus = TRUE;
  21. WORD wVersionRequested;
  22. switch (fdwReason) {
  23. case DLL_PROCESS_ATTACH:
  24. break;
  25. case DLL_PROCESS_DETACH:
  26. break;
  27. case DLL_THREAD_ATTACH:
  28. break;
  29. case DLL_THREAD_DETACH:
  30. break;
  31. default:
  32. break;
  33. }
  34. return(bStatus);
  35. }