mirror of
https://github.com/zeldaret/tww.git
synced 2026-08-30 08:51:47 -04:00
d489dc996b
* most of dolsdk copied over * add some gf stuff * trk wip * ode/amc stuff * build fix
22 lines
346 B
C
22 lines
346 B
C
#ifndef METROTRK_PORTABLE_NUBINIT_H
|
|
#define METROTRK_PORTABLE_NUBINIT_H
|
|
|
|
#include "trk.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void TRKNubWelcome(void);
|
|
void TRKNubMainLoop(void);
|
|
DSError TRKTerminateNub(void);
|
|
DSError TRKInitializeNub(void);
|
|
|
|
extern BOOL gTRKBigEndian;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* METROTRK_PORTABLE_NUBINIT_H */
|