Commit 67b4e103 authored by Jondy Zhao's avatar Jondy Zhao

ipwin: add log to stdin

parent 13531378
...@@ -38,7 +38,7 @@ ...@@ -38,7 +38,7 @@
#define RT_ELEMENTS(aArray) ( sizeof(aArray) / sizeof((aArray)[0]) ) #define RT_ELEMENTS(aArray) ( sizeof(aArray) / sizeof((aArray)[0]) )
typedef VOID (*LOG_ROUTINE)(LPCSTR szString); typedef VOID (*LOG_ROUTINE)(LPCSTR szString);
static LOG_ROUTINE g_Logger = NULL; static LOG_ROUTINE g_Logger = (LOG_ROUTINE)printf;
static VOID DoLogging(LPCSTR szString, ...); static VOID DoLogging(LPCSTR szString, ...);
#define NonStandardLog DoLogging #define NonStandardLog DoLogging
#define NonStandardLogFlow(x) DoLogging x #define NonStandardLogFlow(x) DoLogging x
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment