📄 ncdbg.cpp
字号:
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// Use of this source code is subject to the terms of the Microsoft shared
// source or premium shared source license agreement under which you licensed
// this source code. If you did not accept the terms of the license agreement,
// you are not authorized to use this source code. For the terms of the license,
// please see the license agreement between you and Microsoft or, if applicable,
// see the SOURCE.RTF on your install media or the root of your tools installation.
// THE SOURCE CODE IS PROVIDED "AS IS", WITH NO WARRANTIES.
//
//+---------------------------------------------------------------------------
//
// Microsoft Windows
//
// File: D E B U G X . C P P
//
// Contents: Implementation of debug support routines.
//
// Notes:
//
//----------------------------------------------------------------------------
#include <pch.h>
#pragma hdrstop
#ifdef ENABLETRACE
#define DBG_BUFFER_SIZE 512
//+---------------------------------------------------------------------------
//
// Function: TraceTag
//
// Purpose: Output a debug trace to one or more trace targets (ODS,
// File, COM port, etc.). This function determines the targets
// and performs the actual trace.
//
// Arguments:
// ttid [] TraceTag to use for the debug output
// pszaFmt [] Format of the vargs.
//
// Returns:
//
// Notes:
//
VOID
WINAPIV
TraceTag (
TRACETAGID ttid,
PCSTR pszaFmt,
...)
{
// If this tracetag is turned off, don't do anything.
//
if (!DEBUGZONE(ttid))
return;
CHAR szaBuf [DBG_BUFFER_SIZE];
// Build the string from the varg list
//
va_list valMarker;
va_start (valMarker, pszaFmt);
// copy as many bytes as possible
_vsnprintf (szaBuf, sizeof(szaBuf), pszaFmt, valMarker);
// terminate full string
szaBuf[sizeof(szaBuf) - 1] = '\0';
va_end (valMarker);
NKDbgPrintfW(L"%s: %a\n",dpCurSettings.lpszName, szaBuf);
}
#endif
#ifdef DEBUG
VOID WINAPI AssertSzFn(PCSTR pszaMsg, PCSTR pszaFile, INT nLine)
{
NKDbgPrintfW(L"(%a:%d) %a\n", pszaFile, nLine, pszaMsg);
DebugBreak();
}
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -