Update file names to match convention

This commit is contained in:
Hyper
2024-10-17 18:02:09 +01:00
parent 9da9bc8014
commit 02c9484c9c
2 changed files with 0 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
#pragma once
struct Mutex : CRITICAL_SECTION
{
Mutex()
{
InitializeCriticalSection(this);
}
~Mutex()
{
DeleteCriticalSection(this);
}
void lock()
{
EnterCriticalSection(this);
}
void unlock()
{
LeaveCriticalSection(this);
}
};