mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-26 07:39:56 -06:00
committing this for posterity
it's a massive failure tho
This commit is contained in:
@ -67,6 +67,7 @@ inline bool LocalFileExists(const char* name)
|
||||
void* Thread_Create(void (*func)());
|
||||
void Thread_Free(void* thread);
|
||||
void Thread_Wait(void* thread);
|
||||
void Thread_Sleep(u32 ms);
|
||||
|
||||
void* Semaphore_Create();
|
||||
void Semaphore_Free(void* sema);
|
||||
@ -74,6 +75,9 @@ void Semaphore_Reset(void* sema);
|
||||
void Semaphore_Wait(void* sema);
|
||||
void Semaphore_Post(void* sema);
|
||||
|
||||
u64 Perf_GetFrequency();
|
||||
u64 Perf_GetCounter();
|
||||
|
||||
void* GL_GetProcAddress(const char* proc);
|
||||
|
||||
// local multiplayer comm interface
|
||||
|
Reference in New Issue
Block a user