mirror of
https://github.com/thunderbrewhq/binana.git
synced 2026-05-02 20:54:03 +00:00
12 lines
198 B
C
12 lines
198 B
C
#ifndef BC_LOCK_MUTEX_H
|
|
#define BC_LOCK_MUTEX_H
|
|
|
|
DECLARE_STRUCT(Blizzard__Lock__Mutex);
|
|
|
|
#include "external/win/critsect.h"
|
|
|
|
struct Blizzard__Lock__Mutex {
|
|
CRITICAL_SECTION critsect;
|
|
};
|
|
|
|
#endif
|