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.

49 lines
684 B

  1. /*++
  2. Copyright (c) 2000 Microsoft Corporation
  3. Filename :
  4. idw_dbg.h
  5. Abstract:
  6. Header for idw_dbg.c
  7. Author:
  8. Wally Ho (wallyho) 31-Jan-2000
  9. Revision History:
  10. Created
  11. --*/
  12. #ifndef IDW_DBG_H
  13. #define IDW_DBG_H
  14. #include <windows.h>
  15. #include <stdio.h>
  16. #include <tchar.h>
  17. #include <stdarg.h>
  18. CONST DWORD WRITE_SERVICE_DBG = 0x1;
  19. CONST DWORD WRITE_NORMAL_DBG = 0x0;
  20. // Global
  21. extern FILE* fpIdwlogDebugFile;
  22. // Prototypes
  23. VOID OpenIdwlogDebugFile(DWORD dwPart);
  24. VOID CloseIdwlogDebugFile(VOID);
  25. VOID RemoveIdwlogDebugFile(DWORD dwPart);
  26. VOID Idwlog (LPTSTR szMessage,...);
  27. VOID CopySetupErrorLog ( LPINSTALL_DATA );
  28. #endif