mirror of
https://github.com/thunderbrewhq/binana.git
synced 2025-12-12 17:52:29 +00:00
11 lines
176 B
C
11 lines
176 B
C
#ifndef BC_LOCK_DO_ONCE_H
|
|
#define BC_LOCK_DO_ONCE_H
|
|
|
|
DECLARE_STRUCT(Blizzard__Lock__DoOnceData);
|
|
|
|
struct Blizzard__Lock__DoOnceData {
|
|
bool done;
|
|
int32_t atomic;
|
|
};
|
|
|
|
#endif
|