ardour/libs/pbd/misc.c
Paul Davis 35b9bf0567 "boot" messages; more AU fixes; new SAE ui.conf file
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@3049 d708f5d6-7413-0410-9779-e7cbd77b26cf
2008-02-13 16:38:14 +00:00

21 lines
244 B
C

#include <pbd/misc.h>
#ifdef GTKOSX
#include <AppKit/AppKit.h>
#endif
void
disable_screen_updates ()
{
#ifdef GTKOSX
// NSDisableScreenUpdates ();
#endif
}
void
enable_screen_updates ()
{
#ifdef GTKOSX
// NSEnableScreenUpdates();
#endif
}