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.

40 lines
776 B

  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) 1999 Microsoft Corporation
  4. //
  5. // Module Name:
  6. //
  7. // utils.h
  8. //
  9. // Abstract:
  10. //
  11. // Revision History:
  12. //
  13. // Thierry Perraut 04/02/1999
  14. //
  15. //////////////////////////////////////////////////////////////////////////////
  16. #ifndef _UTILS_H_
  17. #define _UTILS_H_
  18. #if _MSC_VER > 1000
  19. #pragma once
  20. #endif
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24. #define BREAK_ON_DWERR(_e) if ((_e)) break;
  25. // #define AAAAMON_ERROR_BASE 0XFEFF0000
  26. #define RutlDispTokenErrMsg(hModule, dwMsgId, pwszTag, pwszValue) \
  27. DisplayMessage( hModule, dwMsgId, pwszValue, pwszTag)
  28. HRESULT RefreshIASService();
  29. AAAA_PARSE_FN RutlParse;
  30. #ifdef __cplusplus
  31. }
  32. #endif
  33. #endif //_UTILS_H_