/** * \file cf_local.h * * \author myusgun */ #ifndef __CF_LOCAL_H__ #define __CF_LOCAL_H__ /** 파일 이름 및 경로 길이 */ #define NAME_LENGTH 128 /** 예외 처리 */ #define TRY do #define TRY_BREAK break #define NO_CATCH while (0) #define CATCH_IF(__expr) NO_CATCH; if (__expr) #define CATCH_ELSE_IF(__expr) else if (__expr) #define CATCH_ELSE else /** non-compatible function */ #if defined(_WIN32) || defined(_WIN64) # define snprintf _snprintf #else #endif #endif // #ifndef __CF_LOCAL_H__