3 * Copyright (c) 2002-2012 Apple Inc. All rights reserved.
5 * Permission is hereby granted, free of charge, to any person
6 * obtaining a copy of this software and associated documentation files
7 * (the "Software"), to deal in the Software without restriction,
8 * including without limitation the rights to use, copy, modify, merge,
9 * publish, distribute, sublicense, and/or sell copies of the Software,
10 * and to permit persons to whom the Software is furnished to do so,
11 * subject to the following conditions:
13 * The above copyright notice and this permission notice shall be
14 * included in all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19 * NONINFRINGEMENT. IN NO EVENT SHALL THE ABOVE LISTED COPYRIGHT
20 * HOLDER(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
21 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23 * DEALINGS IN THE SOFTWARE.
25 * Except as contained in this notice, the name(s) of the above
26 * copyright holders shall not be used in advertising or otherwise to
27 * promote the sale, use or other dealings in this Software without
28 * prior written authorization.
34 #import <Foundation/Foundation.h>
38 #include <AvailabilityMacros.h>
39 #if MAC_OS_X_VERSION_MIN_REQUIRED < 1050
40 #if __LP64__ || NS_BUILD_32_LIKE_64
41 typedef long NSInteger
;
42 typedef unsigned long NSUInteger
;
44 typedef int NSInteger
;
45 typedef unsigned int NSUInteger
;
49 #define Cursor X_Cursor
52 #include <X11/extensions/shape.h>
55 #ifdef STANDALONE_XPBPROXY
56 /* Just used for the standalone to respond to SIGHUP to reload prefs */
57 extern BOOL xpbproxy_prefs_reload
;
59 /* Setting this to YES (for the standalone app) causes us to ignore the
60 * 'sync_pasteboard' defaults preference since we assume it to be on... this is
61 * mainly useful for debugging/developing xpbproxy with XQuartz still running.
62 * Just disable the one in the server with X11's preference pane, then run
65 extern BOOL xpbproxy_is_standalone
;
70 xpbproxy_set_is_active(BOOL state
);
72 xpbproxy_get_is_active(void);
74 xpbproxy_selection_object(void);
76 xpbproxy_current_timestamp(void);
80 extern Display
*xpbproxy_dpy
;
81 extern int xpbproxy_apple_wm_event_base
, xpbproxy_apple_wm_error_base
;
82 extern int xpbproxy_xfixes_event_base
, xpbproxy_xfixes_error_base
;
83 extern BOOL xpbproxy_have_xfixes
;
87 xpbproxy_input_register(void);
89 /* os/log.c or app-main.m */
91 ErrorF(const char *f
, ...) _X_ATTRIBUTE_PRINTF(1, 2);
94 _X_ATTRIBUTE_PRINTF(6, 7)
96 xq_asl_log(int level
, const char *subsystem
, const char *file
,
97 const char *function
, int line
, const char *fmt
,
100 #define ASL_LOG(level, subsystem, msg, args ...) xq_asl_log(level, subsystem, \
105 #define DebugF(msg, args ...) ASL_LOG(ASL_LEVEL_DEBUG, \
108 #define TRACE() DebugF("TRACE")
110 #endif /* PBPROXY_H */