⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fserve.h

📁 unix vnc 协议源码. VNC是一款远程控制工具软件.
💻 H
字号:
/* $XConsortium: fserve.h,v 1.7 93/08/24 18:49:12 gildea Exp $ *//* * Copyright 1990 Network Computing Devices * * 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 name of Network Computing Devices not be * used in advertising or publicity pertaining to distribution of the * software without specific, written prior permission.  Network Computing * Devices makes no representations about the suitability of this software * for any purpose.  It is provided "as is" without express or implied * warranty. * * NETWORK COMPUTING DEVICES DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, * IN NO EVENT SHALL NETWORK COMPUTING DEVICES 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. * * Author:  	Dave Lemke, Network Computing Devices, Inc * */#ifndef _FSERVE_H_#define _FSERVE_H_/* * font server data structures *//* types of block records */#define	FS_OPEN_FONT		1#define	FS_LOAD_GLYPHS		2#define	FS_LIST_FONTS		3#define	FS_LIST_WITH_INFO	4/* states of OpenFont */#define	FS_OPEN_REPLY		0#define	FS_INFO_REPLY		1#define	FS_EXTENT_REPLY		2#define	FS_GLYPHS_REPLY		3#define	FS_DONE_REPLY		4#define FS_DEPENDING		5/* status of ListFontsWithInfo */#define	FS_LFWI_WAITING		0#define	FS_LFWI_REPLY		1#define	FS_LFWI_FINISHED	2#define	AccessDone	0x400typedef struct _fs_font_data *FSFontDataPtr;typedef struct _fs_blocked_font *FSBlockedFontPtr;typedef struct _fs_blocked_glyphs *FSBlockedGlyphPtr;typedef struct _fs_blocked_list *FSBlockedListPtr;typedef struct _fs_blocked_list_info *FSBlockedListInfoPtr;typedef struct _fs_block_data *FSBlockDataPtr;typedef struct _fs_font_table *FSFontTablePtr;typedef struct _fs_blocked_bitmaps *FSBlockedBitmapPtr;typedef struct _fs_blocked_extents *FSBlockedExtentPtr;extern void fs_convert_char_info();#endif				/* _FSERVE_H_ */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -