13
0
livetrax/libs/pbd/misc.c

22 lines
238 B
C
Raw Normal View History

#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
}