summaryrefslogtreecommitdiff
path: root/libs/pbd/misc.c
blob: 797be5de452b6a0c054c892bdbd6955058aaa39d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#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
}