mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-06-02 17:48:21 -04:00
274b30fefb
* WPAD mostly matching, likely equivalent * Implement WPADEncrypt (mostly taken from SMG1 decomp) * Implement WPADHidParser * Add wpad_debug_msg stub * Fix WUD file paths in splits * Fix WPAD regressions in Shield/ShieldD
15 lines
226 B
C
15 lines
226 B
C
#ifndef _REVOLUTION_WUD_DEBUG_MSG_H_
|
|
#define _REVOLUTION_WUD_DEBUG_MSG_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void WUD_DEBUGPrint(const char*, ...);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _REVOLUTION_WUD_DEBUG_MSG_H_ */
|