diff options
author | runge <runge@karlrunge.com> | 2010-12-29 10:05:52 -0500 |
---|---|---|
committer | runge <runge@karlrunge.com> | 2010-12-29 10:05:52 -0500 |
commit | 596331a5c3124f080cdcbb400c188c095048ef35 (patch) | |
tree | 66eb904b6c0181703d8f3c9ec81352a970d52601 /x11vnc/options.c | |
parent | 0c03b989407f9e5ea66b403011baaaad09fcd536 (diff) | |
download | libtdevnc-596331a5c3124f080cdcbb400c188c095048ef35.tar.gz libtdevnc-596331a5c3124f080cdcbb400c188c095048ef35.zip |
x11vnc: Use opengl to read screen on macosx. non-deprecated macosx interfaces for input injection.
Diffstat (limited to 'x11vnc/options.c')
-rw-r--r-- | x11vnc/options.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/x11vnc/options.c b/x11vnc/options.c index 890a8a4..ab119b6 100644 --- a/x11vnc/options.c +++ b/x11vnc/options.c @@ -134,6 +134,8 @@ int no_external_cmds = 1; /* cannot be turned back on. */ char *allowed_external_cmds = NULL; int started_as_root = 0; int host_lookup = 1; +char *unix_sock = NULL; +int unix_sock_fd = -1; #if X11VNC_LISTEN6 int ipv6_listen = 1; /* -6 / -no6 */ int got_ipv6_listen = 1; @@ -217,6 +219,10 @@ int macosx_console = 0; int macosx_swap23 = 1; int macosx_resize = 1; int macosx_icon_anim_time = 450; +int macosx_no_opengl = 0; +int macosx_no_rawfb = 0; +int macosx_read_opengl = 0; +int macosx_read_rawfb = 0; unsigned long subwin = 0x0; /* -id, -sid */ int subwin_wait_mapped = 0; |