12 lines
162 B
C
12 lines
162 B
C
|
#include"orca.h"
|
||
|
|
||
|
ORCA_EXPORT mp_event* _OrcaGetRawEventPtr()
|
||
|
{
|
||
|
static mp_event event;
|
||
|
return &event;
|
||
|
}
|
||
|
|
||
|
ORCA_EXPORT void _OrcaClockInit()
|
||
|
{
|
||
|
mp_clock_init();
|
||
|
}
|