/usr/include/X11/fonts/FSlib.h is in libfs-dev 2:1.0.7-1+b2.
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 | /*
* Copyright 1990 Network Computing Devices;
* Portions Copyright 1987 by Digital Equipment Corporation
*
* Permission to use, copy, modify, distribute, and sell this software
* and its documentation for any purpose is hereby granted without fee,
* provided that the above copyright notice appear in all copies and
* that both that copyright notice and this permission notice appear
* in supporting documentation, and that the names of Network Computing
* Devices or Digital not be used in advertising or publicity pertaining
* to distribution of the software without specific, written prior
* permission. Network Computing Devices or Digital make no representations
* about the suitability of this software for any purpose. It is provided
* "as is" without express or implied warranty.
*
* NETWORK COMPUTING DEVICES AND DIGITAL DISCLAIM ALL WARRANTIES WITH
* REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL NETWORK COMPUTING DEVICES
* OR DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES
* OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
* WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
* ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
* SOFTWARE.
*/
/*
Copyright 1987, 1994, 1998 The Open Group
Permission to use, copy, modify, distribute, and sell this software and its
documentation for any purpose is hereby granted without fee, provided that
the above copyright notice appear in all copies and that both that
copyright notice and this permission notice appear in supporting
documentation.
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Except as contained in this notice, the name of The Open Group shall not be
used in advertising or otherwise to promote the sale, use or other dealings
in this Software without prior written authorization from The Open Group.
*/
/*
* Font server C interface library
*/
#ifndef _FSLIB_H_
#define _FSLIB_H_
#include <X11/Xfuncproto.h>
#include <X11/fonts/FS.h>
#include <X11/fonts/FSproto.h>
#define Bool int
#define Status int
#define True 1
#define False 0
#define QueuedAlready 0
#define QueuedAfterReading 1
#define QueuedAfterFlush 2
#define FSServerString(svr) ((svr)->server_name)
#define FSVendorRelease(svr) ((svr)->release)
#define FSProtocolVersion(svr) ((svr)->proto_version)
#define FSServerVendor(svr) ((svr)->vendor)
#define FSAuthorizationData(svr) ((svr)->auth_data)
#define FSAlternateServers(svr) ((svr)->alternate_servers)
#define FSNumAlternateServers(svr) ((svr)->num_alternates)
#define FSQLength(svr) ((svr)->qlen)
#define FSNextRequest(svr) ((svr)->request + 1)
#define FSLastKnownRequestProcessed(svr) ((svr)->last_request_read)
#define FSAllocID(svr) ((*(svr)->resource_alloc)((svr)))
typedef struct _alternate {
Bool subset;
char *name;
} AlternateServer;
/* extension stuff */
typedef struct _FSExtData {
int number; /* number returned by FSRegisterExtension */
struct _FSExtData *next; /* next item on list of data for structure */
int (*free_private) (char *); /* called to free private storage */
char *private_data; /* data private to this extension. */
} FSExtData;
typedef struct { /* public to extension, cannot be changed */
int extension; /* extension number */
int major_opcode; /* major op-code assigned by server */
int first_event; /* first event number for the extension */
int first_error; /* first error number for the extension */
} FSExtCodes;
typedef struct _FSServer FSServer;
typedef union _FSEvent FSEvent;
typedef struct _FSExtent {
struct _FSExtent *next; /* next in list */
FSExtCodes codes; /* public information, all extension told */
int (*close_server) (FSServer *, FSExtCodes *); /* routine to call when connection
* closed */
int (*error) (FSServer *, fsError *, FSExtCodes *, int *); /* who to call when an error occurs */
int (*error_string) (FSServer *, int, FSExtCodes *, char *, int); /* routine to supply error string */
char *name;
} _FSExtension;
typedef int (*FSSyncHandler)(FSServer *);
/* server data structure */
struct _FSServer {
struct _FSServer *next;
int fd;
int proto_version;
char *vendor;
int byte_order;
int vnumber;
int release;
int resource_id;
struct _FSQEvent *head,
*tail;
int qlen;
unsigned long last_request_read;
unsigned long request;
char *last_req;
char *buffer;
char *bufptr;
char *bufmax;
unsigned max_request_size;
char *server_name;
char *auth_data;
AlternateServer *alternate_servers;
int num_alternates;
FSExtData *ext_data;
_FSExtension *ext_procs;
int ext_number;
Bool (*event_vec[132]) (FSServer *, FSEvent *, fsEvent *);
Status (*wire_vec[132]) (FSServer *, FSEvent *, fsEvent *);
void *unused_1; /* previously scratch_buffer */
unsigned long unused_2; /* previously scratch_length */
FSSyncHandler synchandler;
unsigned long flags;
struct _XtransConnInfo *trans_conn; /* transport connection object */
};
typedef struct {
int type;
unsigned long serial;
Bool send_event;
FSServer *server;
} FSAnyEvent;
typedef struct {
int type;
FSServer *server;
FSID resourceid;
unsigned long serial;
unsigned char error_code;
unsigned char request_code;
unsigned char minor_code;
} FSErrorEvent;
union _FSEvent {
int type;
FSAnyEvent fsany;
};
typedef struct _FSQEvent {
struct _FSQEvent *next;
FSEvent event;
} _FSQEvent;
/* protocol-related stuctures */
typedef unsigned long FSBitmapFormat;
typedef unsigned long FSBitmapFormatMask;
typedef struct _FSChar2b {
unsigned char high;
unsigned char low;
} FSChar2b;
typedef struct _FSRange {
FSChar2b min_char;
FSChar2b max_char;
} FSRange;
typedef struct _FSOffset {
unsigned int position;
unsigned int length;
} FSOffset;
/* use names as in xCharInfo? */
typedef struct _FSXCharInfo {
short left;
short right;
short width;
short ascent;
short descent;
unsigned short attributes;
} FSXCharInfo;
typedef struct _FSPropOffset {
FSOffset name;
FSOffset value;
unsigned char type;
} FSPropOffset;
typedef struct _FSPropInfo {
unsigned int num_offsets;
unsigned int data_len;
} FSPropInfo;
/* should names match FontInfoRec? */
typedef struct _FSXFontInfoHeader {
int flags;
FSRange char_range;
unsigned draw_direction;
FSChar2b default_char;
FSXCharInfo min_bounds;
FSXCharInfo max_bounds;
short font_ascent;
short font_descent;
} FSXFontInfoHeader;
/* function decls */
_XFUNCPROTOBEGIN
extern FSServer * FSOpenServer ( const char *server );
extern FSSyncHandler FSSynchronize(FSServer *, int);
extern FSSyncHandler FSSetAfterFunction(FSServer *, FSSyncHandler);
extern const char * FSServerName ( const char *server );
extern char ** FSListExtensions ( FSServer *svr, int *next );
extern int FSQueryExtension ( FSServer *svr, const char *name, int *major_opcode,
int *first_event, int *first_error );
extern char ** FSListCatalogues ( FSServer *svr, const char *pattern,
int maxNames, int *actualCount );
extern char ** FSGetCatalogues ( FSServer *svr, int *num );
extern long FSMaxRequestSize ( FSServer *svr );
extern char ** FSListFonts ( FSServer *svr, const char *pattern, int maxNames,
int *actualCount );
extern char ** FSListFontsWithXInfo ( FSServer *svr, const char *pattern,
int maxNames, int *count,
FSXFontInfoHeader ***info,
FSPropInfo ***pprops,
FSPropOffset ***offsets,
unsigned char ***prop_data );
extern Font FSOpenBitmapFont ( FSServer *svr, FSBitmapFormat hint,
FSBitmapFormatMask fmask, const char *name,
Font *otherid );
extern int FSSync ( FSServer *svr, Bool discard );
extern int FSCloseServer ( FSServer *svr );
extern int FSCloseFont ( FSServer *svr, Font fid );
extern int FSGetErrorDatabaseText ( FSServer *svr, const char *name,
const char *type, const char *defaultp,
char *buffer, int nbytes );
extern int FSGetErrorText ( FSServer *svr, int code, char *buffer,
int nbytes );
extern int FSFlush ( FSServer *svr );
extern int FSFreeFontNames ( char **list );
extern int FSFreeCatalogues ( char **list );
extern int FSFreeExtensionList ( char **list );
extern int FSNextEvent ( FSServer *svr, FSEvent *event );
extern int FSQueryXBitmaps8 ( FSServer *svr, Font fid, FSBitmapFormat format,
int range_type, const unsigned char *str,
unsigned long str_len, FSOffset **offsets,
unsigned char **glyphdata );
extern int FSQueryXBitmaps16 ( FSServer *svr, Font fid, FSBitmapFormat format,
int range_type, const FSChar2b *str,
unsigned long str_len, FSOffset **offsets,
unsigned char **glyphdata );
extern int FSQueryXExtents8 ( FSServer *svr, Font fid, int range_type,
const unsigned char *str, unsigned long str_len,
FSXCharInfo **extents );
extern int FSQueryXExtents16 ( FSServer *svr, Font fid, int range_type,
const FSChar2b *str, unsigned long str_len,
FSXCharInfo **extents );
extern int FSQueryXInfo ( FSServer *svr, Font fid, FSXFontInfoHeader *info,
FSPropInfo *props, FSPropOffset **offsets,
unsigned char **prop_data );
extern int FSSetCatalogues ( FSServer *svr, int num, char **cats );
extern int FSFree ( char *data );
extern unsigned char * FSMalloc ( unsigned size );
_XFUNCPROTOEND
#endif /* _FSLIB_H_ */
|