ランタイム
CriticalSection.h
Go to the documentation of this file.
1 #pragma once
2 
5 
6 #include "Mix/Noncopyable.h"
7 
8 namespace Mix{
9 
13  {
14  private:
15  mutable CRITICAL_SECTION m_Sync;
16 
17  public:
19  CriticalSection( void );
21  ~CriticalSection( void );
22 
24  void Enter( void ) const;
26  void Leave( void ) const;
27  };
28 
29 }
クリティカルセクションクラス
Definition: CriticalSection.h:12
コピー禁止クラス
Definition: Noncopyable.h:10
ミックス
Definition: AtomicValue.h:6
コピー禁止クラスインクルードファイル
#define _MIX_DLL_API
DLLインポート定義
Definition: Common.h:38