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.
 
 
 
 
 
 

35 lines
926 B

//+-------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 1992 - 1996.
//
// File: srgtdeb.hxx
//
// Contents: debugging utilities for the surrogate executable
//
// History: 03-Jun-96 t-AdamE Created
//
//--------------------------------------------------------------------------
#if !defined(__SRGTDEB_HXX__)
#define __SRGTDEB_HXX__
#include <debnot.h>
#define DEB_SRGT_ALL 0xFFFFFFFF
#define DEB_SRGT_START DEB_USER15 | DEB_ERROR | DEB_WARN
#define DEB_SRGT_METHODCALL 0x00000001 | DEB_SRGT_START
#define DEB_SRGT_STATUS 0x00000002 | DEB_SRGT_START
#define DEB_SRGT_ENTRY 0x00000004 | DEB_SRGT_START
DECLARE_DEBUG(Surrogate)
#if DBG
#define SrgtDebugOut(x,y,z) SurrogateInlineDebugOut(x,y,z)
#else // DBG
#define SrgtDebugOut(x,y,z)
#undef SurrogateInlineDebugOut
#endif // DBG
#endif // !defined(__SRGTDEB_HXX__)