mirror of
https://github.com/zeldaret/tp
synced 2026-05-22 22:44:28 -04:00
f5dbf1d827
* 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_ */
|