1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-24 08:10:05 +02:00

Fix visibility of CallAfter and Yield on Windows

This commit is contained in:
Paul Licameli 2021-07-19 23:13:05 -04:00
parent dc474680a1
commit f0e1ae9c21

View File

@ -219,7 +219,7 @@ BASIC_UI_API Services *Install(Services *pInstance);
are yet installed, the action is not lost, but may be dispatched by Yield(). are yet installed, the action is not lost, but may be dispatched by Yield().
The action may itself invoke CallAfter to enqueue other actions. The action may itself invoke CallAfter to enqueue other actions.
*/ */
void CallAfter(Action action); BASIC_UI_API void CallAfter(Action action);
//! Dispatch waiting events, including actions enqueued by CallAfter //! Dispatch waiting events, including actions enqueued by CallAfter
/*! This function must be called by the main thread. Actions enqueued by /*! This function must be called by the main thread. Actions enqueued by
@ -227,7 +227,7 @@ void CallAfter(Action action);
they were enqueued, unless an exception thrown by one of them stops the they were enqueued, unless an exception thrown by one of them stops the
dispatching. dispatching.
*/ */
void Yield(); BASIC_UI_API void Yield();
//! Show an error dialog with a link to the manual for further help //! Show an error dialog with a link to the manual for further help
inline void ShowErrorDialog( inline void ShowErrorDialog(