mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-06-21 06:52:22 -04:00
82a28f7a23
* work on d_file_sel_warning * various cleanup * attempt to fix d_gameover * event cleanup * trk work * most of TRK done * remove asm
20 lines
342 B
C
20 lines
342 B
C
#ifndef PPC_EXPORT_TARGSUPP_H
|
|
#define PPC_EXPORT_TARGSUPP_H
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
u32 TRKAccessFile(u32, u32, u32*, u8*);
|
|
u32 TRKOpenFile(u32, u32, u32*, u8*);
|
|
u32 TRKCloseFile(u32, u32);
|
|
u32 TRKPositionFile(u32, u32, u32*, u8*);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* PPC_EXPORT_TARGSUPP_H */
|