13
0
livetrax/gtk2_ardour/gui_thread.h

11 lines
286 B
C
Raw Normal View History

#ifndef __ardour_gtk_gui_thread_h__
#define __ardour_gtk_gui_thread_h__
#define ENSURE_GUI_THREAD(slot) \
if (!Gtkmm2ext::UI::instance()->caller_is_gui_thread()) {\
Gtkmm2ext::UI::instance()->call_slot ((slot));\
return;\
}
#endif /* __ardour_gtk_gui_thread_h__ */