This commit is contained in:
Christopher Roy Bratusek 2013-01-01 13:05:59 +01:00
parent b9b4052a46
commit 6d9feadca8
2 changed files with 17 additions and 5 deletions

View File

@ -1,5 +1,11 @@
void HaltGeckoThread();
void ResumeGeckoThread();
void InitGeckoThread();
void ShutdownGeckoThread();
#ifdef VWII
#define HaltGeckoThread() false
#define ResumeGeckoThread() false
#define InitGeckoThread() false
#define ShutdownGeckoThread() false
#else
void HaltGeckoThread();
void ResumeGeckoThread();
void InitGeckoThread();
void ShutdownGeckoThread();
#endif

View File

@ -21,6 +21,12 @@ extern "C"
#define hexdump( x, y )
#endif /* NO_DEBUG */
#ifdef VWII
#define gprintf(...)
#define InitGecko() false
#define hexdump( x, y )
#endif
#ifdef __cplusplus
}
#endif