mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 23:05:04 +01:00
19 lines
233 B
C++
19 lines
233 B
C++
#include "pbd/glib_event_source.h"
|
|
|
|
bool
|
|
GlibEventLoopSource::prepare (int& timeout)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool
|
|
GlibEventLoopSource::check ()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool
|
|
GlibEventLoopSource::dispatch (sigc::slot_base*)
|
|
{
|
|
return false;
|
|
}
|