committing this for posterity

it's a massive failure tho
This commit is contained in:
Arisotura
2020-05-20 15:00:53 +02:00
parent 3af92fe737
commit fb0d50a71a
3 changed files with 78 additions and 3 deletions

View File

@ -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