mirror of https://github.com/tongzx/nt5src
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
40 lines
776 B
//////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// 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_
|