]> git.saurik.com Git - wxWidgets.git/commitdiff
changed "inline"s to "extern"
authorVadim Zeitlin <vadim@wxwidgets.org>
Tue, 12 Jan 1999 23:39:07 +0000 (23:39 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Tue, 12 Jan 1999 23:39:07 +0000 (23:39 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1383 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/thread.h

index 1e9d3e09b761ffd6609b7ca2bbd21be635c43e6e..909608c60620a094ee0eae6199bbeca97a69da52 100644 (file)
@@ -298,13 +298,13 @@ public:
     // unlock GUI if there are threads waiting for and lock it back when
     // there are no more of them - should be called periodically by the main
     // thread
-    void WXDLLEXPORT wxMutexGuiLeaveOrEnter();
+    extern void WXDLLEXPORT wxMutexGuiLeaveOrEnter();
 
     // returns TRUE if the main thread has GUI lock
-    bool WXDLLEXPORT wxGuiOwnedByMainThread();
+    extern bool WXDLLEXPORT wxGuiOwnedByMainThread();
 
     // wakes up the main thread if it's sleeping inside ::GetMessage()
-    void WXDLLEXPORT wxWakeUpMainThread();
+    extern void WXDLLEXPORT wxWakeUpMainThread();
 #else // !MSW
     // implement wxCriticalSection using mutexes
     inline wxCriticalSection::wxCriticalSection() { }