mirror of
https://github.com/thunderbrewhq/squall.git
synced 2025-12-12 10:32:29 +00:00
12 lines
332 B
C++
12 lines
332 B
C++
#ifndef STORM_THREAD_HPP
|
|
#define STORM_THREAD_HPP
|
|
|
|
#include "thread/SCritSect.hpp"
|
|
#include "thread/SEvent.hpp"
|
|
#include "thread/SSyncObject.hpp"
|
|
#include "thread/SThread.hpp"
|
|
#include <cstdint>
|
|
|
|
int32_t SCreateThread(uint32_t (*threadProc)(void*), void* threadParam, void* a3, SThread* syncObject, const char* threadName);
|
|
|
|
#endif
|