mirror of
https://github.com/encounter/ogws.git
synced 2026-03-30 11:33:37 -07:00
16 lines
371 B
C
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 |