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.

58 lines
667 B

  1. /*++
  2. Copyright (c) 2002 Microsoft Corporation
  3. Module Name:
  4. dll.cpp
  5. Abstract:
  6. Routines that interface this dll to the system, such as
  7. the dll entry point.
  8. Author:
  9. Jaime Sasson (jaimes) 12-Apr-2002
  10. Revision History:
  11. --*/
  12. #include "precomp.h"
  13. #pragma hdrstop
  14. BOOL
  15. WINAPI
  16. DllMain(
  17. HINSTANCE ModuleHandle,
  18. DWORD Reason,
  19. PVOID Reserved
  20. )
  21. /*++
  22. Routine Description:
  23. Dll entry point.
  24. Arguments:
  25. Return Value:
  26. --*/
  27. {
  28. switch(Reason) {
  29. case DLL_PROCESS_ATTACH:
  30. break;
  31. case DLL_PROCESS_DETACH:
  32. break;
  33. }
  34. return(TRUE);
  35. }