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.

36 lines
533 B

  1. /*++
  2. Copyright (c) 1989-2000 Microsoft Corporation
  3. Module Name:
  4. dllmain.c
  5. Abstract:
  6. BUGBUG: This module implements ...
  7. Author:
  8. clupu created sometime in 2000
  9. Revision History:
  10. --*/
  11. #include "sdbp.h"
  12. BOOL APIENTRY
  13. DllMain(
  14. HANDLE hModule,
  15. DWORD ul_reason,
  16. LPVOID lpReserved
  17. )
  18. {
  19. return TRUE;
  20. UNREFERENCED_PARAMETER(hModule);
  21. UNREFERENCED_PARAMETER(ul_reason);
  22. UNREFERENCED_PARAMETER(lpReserved);
  23. }