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
1.1 KiB

  1. /***********************************************************************
  2. *
  3. * DBGUTIL.H
  4. *
  5. * Debug Utility functions
  6. *
  7. * Copyright 1992 - 1996 Microsoft Corporation. All Rights Reserved.
  8. *
  9. * Revision History:
  10. *
  11. * When Who What
  12. * -------- ------------------ ---------------------------------------
  13. * 11.13.95 Bruce Kelley Created
  14. *
  15. ***********************************************************************/
  16. #ifdef __cplusplus
  17. extern "C" {
  18. #endif
  19. VOID _DebugObjectProps(LPMAPIPROP lpObject, LPTSTR Label);
  20. VOID _DebugProperties(LPSPropValue lpProps, DWORD cProps, PUCHAR pszObject);
  21. void _DebugMapiTable(LPMAPITABLE lpTable);
  22. void _DebugADRLIST(LPADRLIST lpAdrList, LPTSTR lpszTitle);
  23. #define DebugObjectProps(lpObject, Label) _DebugObjectProps(lpObject, Label)
  24. #define DebugProperties(lpProps, cProps, pszObject) _DebugProperties(lpProps, cProps, pszObject)
  25. #define DebugMapiTable(lpTable) _DebugMapiTable(lpTable)
  26. #define DebugADRLIST(lpAdrList, lpszTitle) _DebugADRLIST(lpAdrList, lpszTitle)
  27. VOID FAR CDECL DebugTrace(LPSTR lpszFmt, ...);
  28. #ifdef __cplusplus
  29. }
  30. #endif