summaryrefslogtreecommitdiff
path: root/include/threadengines/threadengine_win32.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/threadengines/threadengine_win32.h')
-rw-r--r--include/threadengines/threadengine_win32.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/include/threadengines/threadengine_win32.h b/include/threadengines/threadengine_win32.h
index 39e6ae88d..e19f24ca0 100644
--- a/include/threadengines/threadengine_win32.h
+++ b/include/threadengines/threadengine_win32.h
@@ -53,5 +53,24 @@ class CoreExport ThreadEngineFactory : public classbase
}
};
+class CoreExport Win32Mutex : public Mutex
+{
+ private:
+ CRITICAL_SECTION wutex;
+ public:
+ Win32Mutex(InspIRCd* Instance);
+ virtual void Enable(bool enable);
+ ~Win32Mutex();
+};
+
+class CoreExport MutexEngine : public Extensible
+{
+ protected:
+ InspIRCd* ServerInstance;
+ public:
+ MutexEngine(InspIRCd* Instance);
+ virtual Mutex* CreateMutex();
+};
+
#endif