mirror of
https://github.com/zeldaret/tp
synced 2026-05-28 08:25:48 -04:00
c70d485d35
i previously had a bad habit of using double underscores in include guard macro names, which are implementation-reserved per the C++98 standard (see 17.4.3.1.2 Global names). Co-authored-by: Pheenoh <pheenoh@gmail.com>
9 lines
159 B
C
9 lines
159 B
C
#ifndef Z2AUDIOMGR_H_
|
|
#define Z2AUDIOMGR_H_
|
|
|
|
extern "C" {
|
|
void Z2AudioMgr_NS_setOutputMode(void*, unsigned long);
|
|
u32 Z2AudioMgr_NS_hasReset(void*);
|
|
};
|
|
|
|
#endif |