Initial commit

This commit is contained in:
2026-07-09 11:27:59 +08:00
commit 3f1edda843
126 changed files with 34446 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
#ifndef _DEBUG_H_
#define _DEBUG_H_
#ifdef __MACOSX__
#if DEBUG
#define DebugPrint printf
#else
#define DebugPrint
#endif
#else
#ifdef __cplusplus
extern "C" {
#endif
int DebugPrint( const char * fmt, ... );
#ifdef __cplusplus
}
#endif
#endif
#ifndef TRACE
#define TRACE DebugPrint
#endif
#endif //_DEBUG_H_