mirror of
https://github.com/zeldaret/tww.git
synced 2026-08-26 07:33:24 -04:00
d489dc996b
* most of dolsdk copied over * add some gf stuff * trk wip * ode/amc stuff * build fix
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 */
|