41 lines
776 B
C
41 lines
776 B
C
|
//////////////////////////////////////////////////////////////////////////////
|
||
|
//
|
||
|
// Copyright (c) 1999 Microsoft Corporation
|
||
|
//
|
||
|
// Module Name:
|
||
|
//
|
||
|
// utils.h
|
||
|
//
|
||
|
// Abstract:
|
||
|
//
|
||
|
// Revision History:
|
||
|
//
|
||
|
// Thierry Perraut 04/02/1999
|
||
|
//
|
||
|
//////////////////////////////////////////////////////////////////////////////
|
||
|
#ifndef _UTILS_H_
|
||
|
#define _UTILS_H_
|
||
|
|
||
|
#if _MSC_VER > 1000
|
||
|
#pragma once
|
||
|
#endif
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
#define BREAK_ON_DWERR(_e) if ((_e)) break;
|
||
|
// #define AAAAMON_ERROR_BASE 0XFEFF0000
|
||
|
|
||
|
#define RutlDispTokenErrMsg(hModule, dwMsgId, pwszTag, pwszValue) \
|
||
|
DisplayMessage( hModule, dwMsgId, pwszValue, pwszTag)
|
||
|
|
||
|
HRESULT RefreshIASService();
|
||
|
|
||
|
AAAA_PARSE_FN RutlParse;
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
#endif //_UTILS_H_
|