/usr/include/libxnee/xnee_internal.h is in libxnee-dev 3.19-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 | /*****
* Xnee's Not an Event Emulator
*
* Xnee enables recording and replaying of X protocol data
*
* Copyright (C) 1999, 2000, 2001, 2002, 2003, 2013
* Henrik Sandklef
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 3
* of the License, or any later version.
*
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Boston,
* MA 02110-1301, USA.
****/
#ifndef XNEE_XNEE_INTERNAL_H
#define XNEE_XNEE_INTERNAL_H
#include <stdio.h>
#include <unistd.h>
#include <signal.h>
#include "libxnee/xnee_settings.h"
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif /* HAVE_CONFIG_H */
#ifdef HAVE_STDARG_H
#include <stdarg.h>
#else
#include <varargs.h>
#endif
/* needed for the RECORD extension */
#ifndef NEED_EVENTS
#define NEED_EVENTS
#endif /* NEED_EVENTS */
#ifndef NEED_REPLIES
#define NEED_REPLIES
#endif /* NEED_REPLIES */
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
/* If not using GNU C skip: __attribute__ */
#ifndef __GNUC__
# define __attribute__(x) /*NOTHING AT ALL*/
#endif
#define XNEE_FREE(a) xnee_free(a);
#define XNEE_FCLOSE(a) (void)fclose(a);
#define XNEE_FREE_AND_NULL(a) XNEE_FREE(a); a=NULL;
#define XNEE_FCLOSE_AND_NULL(a) XNEE_FCLOSE(a); a=NULL;
#define XNEE_FREE_IF_NOT_NULL(a) if (a!=NULL) { XNEE_FREE_AND_NULL(a); }
#define XNEE_FCLOSE_IF_NOT_NULL(a) if (a!=NULL) { XNEE_FCLOSE_AND_NULL(a); }
#define XNEE_CLOSE_DISPLAY_IF_NOT_NULL(a) if(a!=NULL) { XCloseDisplay(a); a=NULL; }
/* ** Do NOT edit ** */
enum _xnee_data_types {
XNEE_EVENT = 0,
XNEE_REQUEST ,
XNEE_REPLY ,
XNEE_ERROR ,
XNEE_DELIVERED_EVENT ,
XNEE_DEVICE_EVENT ,
XNEE_EXT_REPLY_MAJOR ,
XNEE_EXT_REPLY_MINOR ,
XNEE_EXT_REQUEST_MAJOR ,
XNEE_EXT_REQUEST_MINOR ,
XNEE_NR_OF_TYPES ,
XNEE_META_DATA ,
XNEE_REPLAY_DATA ,
XNEE_SETTINGS_DATA ,
XNEE_MARK_DATA ,
XNEE_ACTION_DATA ,
XNEE_PRIMITIVE_DATA ,
XNEE_PROJECT_INFORMATION_DATA,
XNEE_NEW_WINDOW_DATA,
XNEE_PREDEF_EVENTS,
XNEE_NO_DATA
} xnee_data_types ;
/* ** Do NOT edit ** */
enum _xnee_mode {
XNEE_NOMODE = 0,
XNEE_REPLAYER ,
XNEE_RECORDER ,
XNEE_RETYPER ,
XNEE_DISTRIBUTOR ,
XNEE_SYNTAX_CHECKER
} xnee_mode ;
/* this macro might be dangerous
.. don't use when incrementing variables (e.g i++) */
#define XNEE_MAX(x, y) ((x)>(y)?(x):(y))
/* this macro might be dangerous
.. don't use when decrementing variables (e.g i++) */
#define XNEE_MIN(x, y) ((x)>(y)?(y):(x))
/* this macro might be dangerous
.. don't use when incrementing variables (e.g i++) */
#define XNEE_ABS(x) ((x)>0?(x):(0-(x)))
#ifdef XNEE_WANT_DEBUG
#define XNEE_DEBUG(arg) fprintf arg
#else
#define XNEE_DEBUG(arg)
#endif
#ifdef XNEE_WANT_SYNC_DEBUG
#define XNEE_SYNC_DEBUG(arg) fprintf arg
#else
#define XNEE_SYNC_DEBUG(arg)
#endif
/* AIX's XTestFakeKeyEvent has a bug with the last argument
* requires 0 - so we use usleep instead
*
* OBSOLETE
*
*/
#ifdef AIX
#define XTEST_ERR_SLEEP(per) usleep (per*1000)
#else
#define XTEST_ERR_SLEEP(per)
#endif
/* EO OBSOLETE */
#define XNEE_FAKE_SLEEP(per) { if (per>1000)usleep (per*1000); }
#define XNEE_RETURN_IF_ERR(ret_val) \
if (ret_val!=XNEE_OK) \
{ \
const char *xnee_macro_tmp ; \
(void) fprintf (stderr, "Xnee error\n"); \
xnee_macro_tmp = xnee_get_err_description (ret); \
(void) fprintf (stderr, "Description: %s\n", xnee_macro_tmp ); \
xnee_macro_tmp = xnee_get_err_solution (ret) ; \
(void) fprintf (stderr, "Solution: %s\n", xnee_macro_tmp); \
return (ret); \
}
#define XNEE_RETURN_NULL_IF_ERR(ret_val) \
if (ret_val != XNEE_OK) \
{ \
return (NULL); \
}
#define XNEE_RETURN_VOID_IF_ERR(ret_val) \
if (ret_val != XNEE_OK) \
{ \
const char *xnee_macro_tmp ; \
(void) fprintf (stderr, "Xnee error\n"); \
xnee_macro_tmp = xnee_get_err_description (ret); \
(void) fprintf (stderr, "Description: %s\n", xnee_macro_tmp ); \
xnee_macro_tmp = xnee_get_err_solution (ret) ; \
(void) fprintf (stderr, "Solution: %s\n", xnee_macro_tmp); \
return; \
}
#define XNEE_SILENTLY_RETURN_VOID_IF_ERR(ret_val) \
if (ret_val != XNEE_OK) \
{ \
return; \
}
/*
* Resolution states
*
*/
enum xnee_resolution_states
{
XNEE_RESOLUTION_UNSET = -1,
XNEE_RESOLUTION_USED = 0,
XNEE_RESOLUTION_UNUSED = 1
} _xnee_resolution_states;
/*
* Grab modes/actions
*/
enum xnee_grab_modes
{
XNEE_GRAB_STOP = 0,
XNEE_GRAB_PAUSE ,
XNEE_GRAB_RESUME ,
XNEE_GRAB_INSERT ,
XNEE_GRAB_EXEC ,
XNEE_GRAB_LAST,
XNEE_GRAB_NODATA = 0,
XNEE_GRAB_SET = 1,
XNEE_GRAB_UNKOWN = 15
} _xnee_grab_modes;
/*
* continue_process commnd enum
*/
enum cont_proc_commands
{
XNEE_PROCESS_RESET = 0 ,
XNEE_PROCESS_INC ,
XNEE_PROCESS_DEC ,
XNEE_PROCESS_GET
} _cont_proc_commands;
typedef void (*callback_ptr)( XPointer, XRecordInterceptData *);
typedef callback_ptr *callback_ptrptr;
typedef void (*synch_ptr)( XPointer, XRecordInterceptData *);
typedef synch_ptr *synch_ptrptr;
typedef int (*print_fptr) ( const char*, ... );
typedef int (*fprint_fptr) (FILE*, const char*, ... );
typedef int (*vfprint_fptr) (FILE*, const char*, va_list ap );
#endif /* XNEE_XNEE_INTERNAL_H */
|