feat(thread): add writing overloads for CCritSect

This commit is contained in:
fallenoak 2023-03-27 16:50:33 -05:00
parent a500c34d45
commit c7379a8509
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D
2 changed files with 12 additions and 0 deletions

View file

@ -15,7 +15,9 @@ class CCritSect {
CCritSect();
~CCritSect();
void Enter();
void Enter(int32_t forWriting);
void Leave();
void Leave(int32_t fromWriting);
private:
// Member variables