mirror of
https://github.com/encounter/ac-decomp.git
synced 2026-03-30 10:57:04 -07:00
18 lines
271 B
C
18 lines
271 B
C
#ifndef TRK_DISPATCH
|
|
#define TRK_DISPATCH
|
|
#include "types.h"
|
|
#include "TRK/trk.h"
|
|
#include "TRK/msgbuf.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
TRKResult TRKDispatchMessage(MessageBuffer* mBuf);
|
|
TRKResult TRKInitializeDispatcher();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|