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
750 B

  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright Microsoft Corporation
  4. //
  5. // Module Name:
  6. //
  7. // utils.h
  8. //
  9. //////////////////////////////////////////////////////////////////////////////
  10. #ifndef _UTILS_H_
  11. #define _UTILS_H_
  12. #if _MSC_VER > 1000
  13. #pragma once
  14. #endif
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. #define BREAK_ON_DWERR(_e) if ((_e)) break;
  19. #define RutlDispTokenErrMsg(hModule, dwMsgId, pwszTag, pwszValue) \
  20. DisplayMessage( hModule, dwMsgId, pwszValue, pwszTag)
  21. HRESULT RefreshIASService();
  22. AAAA_PARSE_FN RutlParse;
  23. VOID
  24. WINAPI
  25. RutlFree(
  26. IN PVOID pvData
  27. );
  28. #ifdef __cplusplus
  29. }
  30. #endif
  31. #endif //_UTILS_H_