Source code of Windows XP (NT5)
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.

48 lines
574 B

  1. /*++
  2. Copyright (c) 1990 Microsoft Corporation
  3. Module Name:
  4. dbginit.c
  5. Abstract:
  6. Author:
  7. Krishna Ganugapati (KrishnaG) 12-Dec-1994
  8. Revision History:
  9. --*/
  10. #define NOMINMAX
  11. #include <nt.h>
  12. #include <ntrtl.h>
  13. #include <nturtl.h>
  14. #include <windows.h>
  15. #include <winspool.h>
  16. #include <lm.h>
  17. #include <stdlib.h>
  18. #include <string.h>
  19. HANDLE hInst;
  20. BOOL
  21. LibMain(
  22. HANDLE hModule,
  23. DWORD dwReason,
  24. LPVOID lpRes
  25. )
  26. {
  27. if (dwReason != DLL_PROCESS_ATTACH)
  28. return TRUE;
  29. hInst = hModule;
  30. return TRUE;
  31. UNREFERENCED_PARAMETER( lpRes );
  32. }