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.
 
 
 
 
 
 

22 lines
430 B

#ifndef __DEBUG_H
#define __DEBUG_H
// debug.h
//
// Copyright (c) 1997 Microsoft Corporation
//
// This header contains definitions for debug trace macros that are used
// by the migration DLL.
//
// Author:
// Brian Dewey (t-briand) 1997-8-4
void dprintf(LPTSTR Format, ...);
void DebugSystemError(DWORD dwErrCode);
#ifdef NDEBUG
#define TRACE(_x_) dprintf _x_
#else
#define TRACE(_x_)
#endif // NDEBUG
#endif // __DEBUG_H