LeviLamina
Loading...
Searching...
No Matches
RecursiveCriticalSection.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace rtc {
6
8public:
9 // member variables
10 // NOLINTBEGIN
12 // NOLINTEND
13
14public:
15 // prevent constructor by default
18
19public:
20 // member functions
21 // NOLINTBEGIN
22 MCNAPI void Enter() const;
23
24 MCNAPI void Leave() const;
25
27
29 // NOLINTEND
30
31public:
32 // constructor thunks
33 // NOLINTBEGIN
34 MCNAPI void* $ctor();
35 // NOLINTEND
36
37public:
38 // destructor thunk
39 // NOLINTBEGIN
40 MCNAPI void $dtor();
41 // NOLINTEND
42};
43
44} // namespace rtc
Definition RecursiveCriticalSection.h:7
MCAPI void Enter() const
MCAPI void Leave() const
Definition Alias.h:14