Files
2023-06-26 22:40:31 -04:00

16 lines
371 B
C

#ifndef METROTRK_DEBUGGER_PORTABLE_DISPATCH_H
#define METROTRK_DEBUGGER_PORTABLE_DISPATCH_H
#include <MetroTRK/debugger/portable/dserror.h>
#include <MetroTRK/debugger/portable/msgbuf.h>
#include <types.h>
#ifdef __cplusplus
extern "C" {
#endif
DSError TRKInitializeDispatcher(void);
DSError TRKDispatchMessage(TRKMessageBuffer* buf);
#ifdef __cplusplus
}
#endif
#endif