Files
Include/EgtTrace.h
T
2013-11-21 17:16:59 +00:00

24 lines
618 B
C

//----------------------------------------------------------------------------
// EgalTech 2013-2013
//----------------------------------------------------------------------------
// File : EgtTrace.h Data : 16.11.13 Versione : 1.3a1
// Contenuto : Dichiarazione macro per TRACE.
//
//
//
// Modifiche : 16.11.13 DS Creazione modulo.
//
//
//----------------------------------------------------------------------------
#pragma once
#include <windows.h>
#if defined( _DEBUG)
#define EGT_TRACE( sz) OutputDebugStringA( sz)
#else
#define EGT_TRACE( sz)
#endif