Initial commit: client source

This commit is contained in:
Andreas Lierschaft
2026-08-17 20:03:02 +02:00
commit 9ae37cd0ea
869 changed files with 227899 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
#include "StdAfx.h"
#include "Mutex.h"
Mutex::Mutex()
{
InitializeCriticalSection(&lock);
}
Mutex::~Mutex()
{
DeleteCriticalSection(&lock);
}
void Mutex::Lock()
{
EnterCriticalSection(&lock);
}
void Mutex::Unlock()
{
LeaveCriticalSection(&lock);
}