/usr/include/libxnee/print.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 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 | /*
Xnee's Not an Event Emulator enables recording and replaying of X protocol data
Copyright (C) 1999, 2000, 2001, 2002, 2003, 2008 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.
*/
#include "xnee_record.h"
#include "xnee_replay.h"
#include "print_varargs.h"
#ifndef XNEE_PRINT_H
#define XNEE_PRINT_H
#define XNEE_VERBOSE_ENTER_FUNCTION() xnee_verbose((xd, " ---> %s\n", __func__ ))
#define XNEE_VERBOSE_LEAVE_FUNCTION() xnee_verbose((xd, " <--- %s\n", __func__ ))
#define XNEE_VERBOSE_IN_FUNCTION(str) xnee_verbose((xd, " %s: \"%s\"\n", __func__ , str))
#define XNEE_VERBOSE_MARK() xnee_verbose((xd, " %s:%d %s()\n", __FILE__, __LINE__, __func__ ))
/**
* Prints number and name of X11 events
*
* @param xd xnee's main structure
* @return int XNEE_OK on success.
*/
int
xnee_print_event_info (xnee_data *xd);
/**
* Prints number and name of X11 errors
*
* @param xd xnee's main structure
* @return int
*/
int
xnee_print_error_info (xnee_data *xd);
/**
* Prints number and name of X11 replies
*
* @param xd xnee's main structure
* @return int
*/
int
xnee_print_reply_info (xnee_data *xd);
/**
* Prints number and name of X11 requests
*
* @param xd xnee's main structure
* @return int
*/
int
xnee_print_request_info (xnee_data *xd);
/**
* Prints number and name of X11 data
*
* @param xd xnee's main structure
* @return int
*/
int
xnee_print_data_info (xnee_data *xd);
int
xnee_print_sys_info(xnee_data *, FILE *);
/*
* Print character representation of event if verbose mode is on
*/
void
xnee_verbose_event (xnee_data *, int ev ) ;
/*
*
* Name: xnee_record_print_request
*
* Arguments: xnee_data
* XRecordInterceptData
*
*
* Description: Prints X requests according to the Xnee protocol/format
*
*/
void
xnee_record_print_request (xnee_data *xd, XRecordInterceptData *xrecintd );
/*
*
* Name: xnee_human_print_request
*
* Arguments: xnee_data
* XRecordInterceptData
*
*
* Description: Prints X requests so humans can read
*
*/
void
xnee_human_print_request (xnee_data *xd, XRecordInterceptData *xrecintd );
/*
*
* Name: xnee_human_print_reply
*
* Arguments: xnee_data
* XRecordInterceptData
*
*
* Description: Prints X replies so humans can read
*
*/
void xnee_human_print_reply (xnee_data* xd, XRecordInterceptData *xrecintd );
/*
*
* Name: xnee_record_print_reply
*
* Arguments: xnee_data
* XRecordInterceptData
*
*
* Description: Prints X replies according to the Xnee protocol/format
*
*/
void xnee_record_print_reply (xnee_data* xd, XRecordInterceptData *xrecintd );
/*
*
* Name: xnee_record_print_error
*
* Arguments: xnee_data
* XRecordInterceptData
*
*
* Description: Prints X errors according to the Xnee protocol/format
*
*/
void xnee_record_print_error (xnee_data *xd, XRecordInterceptData *xrecintd );
/*
*
* Name: xnee_human_print_error
*
* Arguments: xnee_data
* XRecordInterceptData
*
*
* Description: Prints X errors in a human format
*
*/
void xnee_human_print_error (xnee_data *xd, XRecordInterceptData *xrecintd );
/*
*
* Name: xnee_human_print_event
*
* Arguments: xnee_data
* XRecordInterceptData
*
*
* Description: Prints X events in a human format
*
*/
void xnee_human_print_event (xnee_data *xd, XRecordInterceptData *xrecintd );
/*
*
* Name: xnee_record_print_record_range
*
* Arguments: xnee_data* , FILE*
*
*
* Description: Prints the Record range in a(n almost) user friendly format
* File descriptors to be used are specified in the xnee_data struct
*
*/
int
xnee_record_print_record_range (xnee_data *xd, /*@null@*/ FILE *) ;
/*
*
* Name: xnee_record_print_sys_info
*
* Arguments: xnee_data
*
*
* Description: Prints the X and xnee states and settings
* The format of the file will be recognised by xnee
* when replaying, in order to use the same settings
* and thereby enable synchronisation again
*
*
int
xnee_rec_print_sys_info(xnee_data *xd);
*/
/*
*
* Name: xnee_print_xnee_settings
*
* Arguments: xnee_data
*
*
* Description: Prints some init stuff ......
* This function is obsoleted by the new printout function xnee_rec_print_sys_info
*
*
*/
int
xnee_print_xnee_settings (xnee_data* xd, /*@null@*/ FILE *) ;
/*
* Name: xnee_print_distribution_list
*
* Arguments:
* xnee_data *, FILE *
*
* Description: Prints the list of displays to distribute events to
*
*
*/
int
xnee_print_distr_list (xnee_data*, /*@null@*/FILE *);
/*
* Name: xnee_print_data_range_count
*
* Arguments: xnee_data*
*
*
*/
int
xnee_print_data_range_count (xnee_data * xd);
#ifdef NO_BUF_VERBOSE
#define xnee_replay_printbuffer(a)
#else
#define xnee_replay_printbuffer(a) xnee_replay_printbuffer_impl(a)
#endif
/**
* If xnee_data->verbose is set this functions prints the synchronisation buffers.
*
* @param xd xnee's main structure
* @return void
*/
void
xnee_replay_printbuffer_impl (xnee_data *xd);
/**
* Print version information etc
*
* @param xd xnee's main structure
* @return void
*/
void
xnee_version(xnee_data *xd);
int
xnee_print_ranges (xnee_data *xd, FILE *fp);
int
xnee_print_xnee_resource_settings (xnee_data* xd, FILE* out) ;
void
xnee_store_mouse_pos (xnee_data* xd );
int
xnee_print_xnee_data(xnee_data *xd);
void
xnee_human_print_request_verbose (xnee_data *xd, XRecordInterceptData *xrecintd );
void
xnee_human_print_event_verbose (xnee_data *xd, XRecordInterceptData *xrecintd );
int
xnee_print_data_str(xnee_data *xd, char *tmp, int type);
#endif /* XNEE_PRINT_H */
|