blob: c857c2ff61929dd3aacdb0ec8cbb69e85b854904 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef _X11VNC_MACOSXCGP_H
#define _X11VNC_MACOSXCGP_H
/* -- macosxCGP.h -- */
extern int macosxCGP_save_dim(void);
extern int macosxCGP_restore_dim(void);
extern int macosxCGP_save_sleep(void);
extern int macosxCGP_restore_sleep(void);
extern int macosxCGP_init_dimming(void);
extern int macosxCGP_undim(void);
extern int macosxCGP_dim_shutdown(void);
extern void macosxCGP_screensaver_timer_off(void);
extern void macosxCGP_screensaver_timer_on(void);
#endif /* _X11VNC_MACOSXCGP_H */
|