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.
60 lines
1.4 KiB
60 lines
1.4 KiB
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1992 - 1994.
|
|
//
|
|
// File: astg.hxx
|
|
//
|
|
// Contents: Common header file for async docfiles
|
|
//
|
|
// Classes:
|
|
//
|
|
// Functions:
|
|
//
|
|
// History: 19-Dec-95 PhilipLa Created
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#ifndef __ASTG_HXX__
|
|
#define __ASTG_HXX__
|
|
|
|
#if DBG == 1
|
|
DECLARE_DEBUG(astg);
|
|
#endif
|
|
|
|
#if DBG == 1
|
|
|
|
#define astgDebugOut(x) astgInlineDebugOut x
|
|
#ifndef REF
|
|
#define astgAssert(e) Win4Assert(e)
|
|
#define astgVerify(e) Win4Assert(e)
|
|
#else
|
|
#include <assert.h>
|
|
#define astgAssert(e) assert(e)
|
|
#define astgVerify(e) assert(e)
|
|
#endif //!REF
|
|
|
|
#else
|
|
|
|
#define astgDebugOut(x)
|
|
#define astgAssert(e)
|
|
#define astgVerify(e) (e)
|
|
|
|
#endif
|
|
|
|
#define astgErr(l, e) ErrJmp(astg, l, e, sc)
|
|
#define astgChkTo(l, e) if (FAILED(sc = (e))) astgErr(l, sc) else 1
|
|
#define astgHChkTo(l, e) if (FAILED(sc = GetScode(e))) astgErr(l, sc) else 1
|
|
#define astgChk(e) astgChkTo(Err, e)
|
|
#define astgHChk(e) astgHChkTo(Err, e)
|
|
#define astgMemTo(l, e) if ((e) == NULL) astgErr(l, STG_E_INSUFFICIENTMEMORY) else 1
|
|
#define astgMem(e) astgMemTo(Err, e)
|
|
|
|
|
|
#ifndef ASYNC
|
|
#define UNTERMINATED 0
|
|
#define TERMINATED_NORMAL 1
|
|
#define TERMINATED_ABNORMAL 2
|
|
#endif
|
|
|
|
#endif // #ifndef __ASTG_HXX__
|