mirror of
https://github.com/thunderbrewhq/binana.git
synced 2026-05-03 05:03:50 +00:00
10 lines
148 B
C
10 lines
148 B
C
#ifndef WIN_CRITSECT_H
|
|
#define WIN_CRITSECT_H
|
|
|
|
DECLARE_STRUCT(CRITICAL_SECTION);
|
|
|
|
struct CRITICAL_SECTION {
|
|
uint32_t opaque_data[6];
|
|
};
|
|
|
|
#endif
|