From: Vadim Zeitlin Date: Tue, 12 Jan 1999 23:39:07 +0000 (+0000) Subject: changed "inline"s to "extern" X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/a0abb8a882dd3e1e66b51343ead07a9bda77548b changed "inline"s to "extern" git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1383 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/thread.h b/include/wx/thread.h index 1e9d3e09b7..909608c606 100644 --- a/include/wx/thread.h +++ b/include/wx/thread.h @@ -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() { }