diff --git a/main/source/Network/wiiload_gecko.h b/main/source/Network/wiiload_gecko.h index d5b013e..4961649 100644 --- a/main/source/Network/wiiload_gecko.h +++ b/main/source/Network/wiiload_gecko.h @@ -1,5 +1,11 @@ - -void HaltGeckoThread(); -void ResumeGeckoThread(); -void InitGeckoThread(); -void ShutdownGeckoThread(); \ No newline at end of file +#ifdef VWII +#define HaltGeckoThread() false +#define ResumeGeckoThread() false +#define InitGeckoThread() false +#define ShutdownGeckoThread() false +#else + void HaltGeckoThread(); + void ResumeGeckoThread(); + void InitGeckoThread(); + void ShutdownGeckoThread(); +#endif \ No newline at end of file diff --git a/main/source/gecko.h b/main/source/gecko.h index 029257c..4523a76 100644 --- a/main/source/gecko.h +++ b/main/source/gecko.h @@ -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