mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-14 18:46:34 +01:00
git-svn-id: svn://localhost/ardour2/branches/3.0@3074 d708f5d6-7413-0410-9779-e7cbd77b26cf
21 lines
244 B
C
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
|
|
}
|