binana/profile/3.3.5a-windows-386/include/bc/thread/tls.h
superp00t 1c5ace1e7f
Some checks failed
Push / build (push) Has been cancelled
feat(profile): added bc information
2026-04-04 07:12:21 -04:00

14 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