debug.h
Upload User: caisha3
Upload Date: 2013-09-21
Package Size: 208739k
Code Size: 0k
Category:

Windows Develop

Development Platform:

Visual C++

  1. // Copyright (c) 1996-1999 Microsoft Corporation
  2. // Macros and function prototypes for debugging
  3. #ifdef DEBUG
  4.   #define _DEBUG
  5. #endif
  6. #ifdef _DEBUG
  7.   void FAR CDECL PrintIt(LPTSTR strFmt, ...);
  8.   #define DBPRINTF PrintIt
  9. #else
  10.   #define DBPRINTF        1 ? (void)0 : (void)
  11. #endif