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.
 
 
 
 
 
 

37 lines
1.1 KiB

//+---------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright (C) Microsoft Corporation, 1992 - 1997.
//
// File: debug.c
//
// Contents: Debug support
//
// Classes:
//
// Functions:
//
// History: 2-19-97 RichardW Created
//
//----------------------------------------------------------------------------
#include "xtcbpkg.h"
DEFINE_DEBUG2( XtcbPkg );
DEBUG_KEY XtcbPkgDebugKeys[] = { {DEB_ERROR, "Error"},
{DEB_WARN, "Warning"},
{DEB_TRACE, "Trace"},
{DEB_TRACE_CREDS, "Creds"},
{DEB_TRACE_CTXT, "Context"},
{DEB_TRACE_CALLS, "Calls"},
{DEB_TRACE_AUTH, "Auth"},
{0, NULL},
};
void
InitDebugSupport(void)
{
XtcbPkgInitDebug( XtcbPkgDebugKeys );
}