mirror of
https://github.com/thunderbrewhq/binana.git
synced 2026-05-03 05:03:50 +00:00
15 lines
334 B
C
15 lines
334 B
C
|
|
#ifndef BC_THREAD_TLS_H
|
||
|
|
#define BC_THREAD_TLS_H
|
||
|
|
|
||
|
|
DECLARE_STRUCT(Blizzard__Thread__TLSSlot);
|
||
|
|
|
||
|
|
typedef void (*Blizzard__Thread__TLSDestructor)(void*);
|
||
|
|
|
||
|
|
struct Blizzard__Thread__TLSSlot {
|
||
|
|
uint32_t key;
|
||
|
|
Blizzard__Thread__TLSDestructor destructor;
|
||
|
|
bool initialized;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|