Paul Davis
f7f9d6fdc4
git-svn-id: svn://localhost/ardour2/trunk@2539 d708f5d6-7413-0410-9779-e7cbd77b26cf
22 lines
238 B
C
22 lines
238 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
|
|
}
|