mirror of
https://github.com/thunderbrewhq/binana.git
synced 2026-05-04 21:43:52 +00:00
This commit is contained in:
parent
c43e39205f
commit
1c5ace1e7f
15 changed files with 179 additions and 34 deletions
14
profile/3.3.5a-windows-386/include/bc/thread/tls.h
Normal file
14
profile/3.3.5a-windows-386/include/bc/thread/tls.h
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
#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
|
||||
Loading…
Add table
Add a link
Reference in a new issue