mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-14 03:52:30 +00:00
chore: initial commit
This commit is contained in:
commit
70b00c5c38
965 changed files with 264882 additions and 0 deletions
25
src/event/Scheduler.hpp
Normal file
25
src/event/Scheduler.hpp
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
#ifndef EVENT_SCHEDULER_HPP
|
||||
#define EVENT_SCHEDULER_HPP
|
||||
|
||||
#include "event/Types.hpp"
|
||||
#include <cstdint>
|
||||
|
||||
void DestroySchedulerThread(uint32_t a1);
|
||||
|
||||
HEVENTCONTEXT IEvtSchedulerCreateContext(int32_t interactive, int32_t (*initializeHandler)(const void*, void*), int32_t (*destroyHandler)(const void*, void*), uint32_t idleTime, uint32_t debugFlags);
|
||||
|
||||
void IEvtSchedulerInitialize(int32_t threadCount, int32_t netServer);
|
||||
|
||||
void IEvtSchedulerProcess();
|
||||
|
||||
void IEvtSchedulerShutdown();
|
||||
|
||||
uint32_t InitializeSchedulerThread();
|
||||
|
||||
bool SchedulerMainProcess();
|
||||
|
||||
uint32_t SchedulerThreadProc(void* mainThread);
|
||||
|
||||
int32_t SchedulerThreadProcProcess(uint32_t a1);
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue