feat(profile): added bc information
Some checks failed
Push / build (push) Has been cancelled

This commit is contained in:
phaneron 2026-04-04 07:12:21 -04:00
parent c43e39205f
commit 1c5ace1e7f
15 changed files with 179 additions and 34 deletions

View file

@ -0,0 +1,12 @@
#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