CSCommon: MMatchDebug.h 소스 파일

MAIET

MMatchDebug.h

00001 #ifndef _MMATCHDEBUG_H
00002 #define _MMATCHDEBUG_H
00003 
00004 // cscommon에서 디버그에 관한 사항 정리
00005 
00006 //#define _DEBUG_PUBLISH                // 디버그모드로 퍼블리쉬 - 테스트하기 위함
00007 
00008 
00009 #if defined(_DEBUG_PUBLISH) && defined(_DEBUG)
00010     #ifdef _ASSERT
00011     #undef _ASSERT
00012     #endif
00013     #define _ASSERT(X)      ((void)0)
00014 
00015     #ifdef OutputDebugString
00016     #undef OutputDebugString
00017     #endif
00018     #define OutputDebugString(X)        ((void)0)
00019 #endif
00020 
00021 
00022 
00023 #endif


MAIET entertainment