}
}
+// ----------------------------------------------------------------------------
+// wxCriticalSection implementation
+// ----------------------------------------------------------------------------
+
+wxCriticalSection::wxCriticalSection()
+{
+}
+
+wxCriticalSection::~wxCriticalSection()
+{
+}
+
+void wxCriticalSection::Enter()
+{
+ ::DosEnterCritSec();
+}
+
+void wxCriticalSection::Leave()
+{
+ ::DosExitCritSec();
+}
+
// ----------------------------------------------------------------------------
// wxThread implementation
// ----------------------------------------------------------------------------