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.

40 lines
1.1 KiB

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. // Copyright (C) Microsoft Corporation, 1992 - 1993.
  5. //
  6. // File: dbgprt.hxx
  7. //
  8. // Contents: Routines to make printing trace info for debugging easier
  9. //
  10. // History: 31-Jan-95 Ricksa Created
  11. //
  12. //--------------------------------------------------------------------------
  13. #ifndef __DBGINFO_HXX__
  14. #define __DBGINFO_HXX__
  15. #if DBG == 1
  16. WCHAR *FormatGuid(const GUID& rguid, WCHAR *pwszGuid);
  17. void DbgPrintFileTime(char *pszDesc, FILETIME *pfiletime);
  18. void DbgPrintGuid(char *pszDesc, const GUID *pguid);
  19. void DbgPrintIFD(char *pszDesc, InterfaceData *pifdObject);
  20. void DbgPrintMkIfList(char *pszDesc, MkInterfaceList **ppMkIFList);
  21. void DbgPrintMnkEqBuf(char *pszDesc, MNKEQBUF *pmkeqbuf);
  22. void DbgPrintRegIn(char *pszDesc, RegInput *pregin);
  23. void DbgPrintRevokeClasses(char *pszDesc, RevokeClasses *prevcls);
  24. void DbgPrintScmRegKey(char *pszDesc, SCMREGKEY *psrkRegister);
  25. #else
  26. #endif // DBG == 1
  27. #endif // __DBGINFO_HXX__