亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? xlib.h

?? linux系統(tǒng)下的音頻通信
?? H
?? 第 1 頁 / 共 5 頁
字號:
/* $XConsortium: Xlib.h,v 11.221 93/07/02 14:13:28 gildea Exp $ *//*  * Copyright 1985, 1986, 1987, 1991 by the Massachusetts Institute of Technology * * Permission to use, copy, modify, and distribute this software and its * documentation for any purpose and without fee is hereby granted, 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 M.I.T. not be used in advertising * or publicity pertaining to distribution of the software without specific,  * written prior permission. M.I.T. makes no representations about the  * suitability of this software for any purpose.  It is provided "as is" * without express or implied warranty. * * X Window System is a Trademark of MIT. * *//* *	Xlib.h - Header definition and support file for the C subroutine *	interface library (Xlib) to the X Window System Protocol (V11). *	Structures and symbols starting with "_" are private to the library. */#ifndef _XLIB_H_#define _XLIB_H_#define XlibSpecificationRelease 5#ifdef MAC_TCL#   include <X.h>#   define Cursor XCursor#   define Region XRegion#else#   include <X11/X.h>#endif/* applications should not depend on these two headers being included! */#ifdef MAC_TCL#include <Xfuncproto.h>#else#include <X11/Xfuncproto.h>#endif#ifndef X_WCHAR#ifdef X_NOT_STDC_ENV#define X_WCHAR#endif#endif#ifndef X_WCHAR#include <stddef.h>#else/* replace this with #include or typedef appropriate for your system */typedef unsigned long wchar_t;#endiftypedef char *XPointer;#define Bool int#define Status int#define True 1#define False 0#define QueuedAlready 0#define QueuedAfterReading 1#define QueuedAfterFlush 2#define ConnectionNumber(dpy) 	((dpy)->fd)#define RootWindow(dpy, scr) 	(((dpy)->screens[(scr)]).root)#define DefaultScreen(dpy) 	((dpy)->default_screen)#define DefaultRootWindow(dpy) 	(((dpy)->screens[(dpy)->default_screen]).root)#define DefaultVisual(dpy, scr) (((dpy)->screens[(scr)]).root_visual)#define DefaultGC(dpy, scr) 	(((dpy)->screens[(scr)]).default_gc)#define BlackPixel(dpy, scr) 	(((dpy)->screens[(scr)]).black_pixel)#define WhitePixel(dpy, scr) 	(((dpy)->screens[(scr)]).white_pixel)#define AllPlanes 		((unsigned long)~0L)#define QLength(dpy) 		((dpy)->qlen)#define DisplayWidth(dpy, scr) 	(((dpy)->screens[(scr)]).width)#define DisplayHeight(dpy, scr) (((dpy)->screens[(scr)]).height)#define DisplayWidthMM(dpy, scr)(((dpy)->screens[(scr)]).mwidth)#define DisplayHeightMM(dpy, scr)(((dpy)->screens[(scr)]).mheight)#define DisplayPlanes(dpy, scr) (((dpy)->screens[(scr)]).root_depth)#define DisplayCells(dpy, scr) 	(DefaultVisual((dpy), (scr))->map_entries)#define ScreenCount(dpy) 	((dpy)->nscreens)#define ServerVendor(dpy) 	((dpy)->vendor)#define ProtocolVersion(dpy) 	((dpy)->proto_major_version)#define ProtocolRevision(dpy) 	((dpy)->proto_minor_version)#define VendorRelease(dpy) 	((dpy)->release)#define DisplayString(dpy) 	((dpy)->display_name)#define DefaultDepth(dpy, scr) 	(((dpy)->screens[(scr)]).root_depth)#define DefaultColormap(dpy, scr)(((dpy)->screens[(scr)]).cmap)#define BitmapUnit(dpy) 	((dpy)->bitmap_unit)#define BitmapBitOrder(dpy) 	((dpy)->bitmap_bit_order)#define BitmapPad(dpy) 		((dpy)->bitmap_pad)#define ImageByteOrder(dpy) 	((dpy)->byte_order)#define NextRequest(dpy)	((dpy)->request + 1)#define LastKnownRequestProcessed(dpy)	((dpy)->request)/* macros for screen oriented applications (toolkit) */#define ScreenOfDisplay(dpy, scr)(&((dpy)->screens[(scr)]))#define DefaultScreenOfDisplay(dpy) (&((dpy)->screens[(dpy)->default_screen]))#define DisplayOfScreen(s)	((s)->display)#define RootWindowOfScreen(s)	((s)->root)#define BlackPixelOfScreen(s)	((s)->black_pixel)#define WhitePixelOfScreen(s)	((s)->white_pixel)#define DefaultColormapOfScreen(s)((s)->cmap)#define DefaultDepthOfScreen(s)	((s)->root_depth)#define DefaultGCOfScreen(s)	((s)->default_gc)#define DefaultVisualOfScreen(s)((s)->root_visual)#define WidthOfScreen(s)	((s)->width)#define HeightOfScreen(s)	((s)->height)#define WidthMMOfScreen(s)	((s)->mwidth)#define HeightMMOfScreen(s)	((s)->mheight)#define PlanesOfScreen(s)	((s)->root_depth)#define CellsOfScreen(s)	(DefaultVisualOfScreen((s))->map_entries)#define MinCmapsOfScreen(s)	((s)->min_maps)#define MaxCmapsOfScreen(s)	((s)->max_maps)#define DoesSaveUnders(s)	((s)->save_unders)#define DoesBackingStore(s)	((s)->backing_store)#define EventMaskOfScreen(s)	((s)->root_input_mask)/* * Extensions need a way to hang private data on some structures. */typedef struct _XExtData {	int number;		/* number returned by XRegisterExtension */	struct _XExtData *next;	/* next item on list of data for structure */	int (*free_private)();	/* called to free private storage */	XPointer private_data;	/* data private to this extension. */} XExtData;/* * This file contains structures used by the extension mechanism. */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 */} XExtCodes;/* * Data structure for retrieving info about pixmap formats. */typedef struct {    int depth;    int bits_per_pixel;    int scanline_pad;} XPixmapFormatValues;/* * Data structure for setting graphics context. */typedef struct {	int function;		/* logical operation */	unsigned long plane_mask;/* plane mask */	unsigned long foreground;/* foreground pixel */	unsigned long background;/* background pixel */	int line_width;		/* line width */	int line_style;	 	/* LineSolid, LineOnOffDash, LineDoubleDash */	int cap_style;	  	/* CapNotLast, CapButt, 				   CapRound, CapProjecting */	int join_style;	 	/* JoinMiter, JoinRound, JoinBevel */	int fill_style;	 	/* FillSolid, FillTiled, 				   FillStippled, FillOpaeueStippled */	int fill_rule;	  	/* EvenOddRule, WindingRule */	int arc_mode;		/* ArcChord, ArcPieSlice */	Pixmap tile;		/* tile pixmap for tiling operations */	Pixmap stipple;		/* stipple 1 plane pixmap for stipping */	int ts_x_origin;	/* offset for tile or stipple operations */	int ts_y_origin;        Font font;	        /* default text font for text operations */	int subwindow_mode;     /* ClipByChildren, IncludeInferiors */	Bool graphics_exposures;/* boolean, should exposures be generated */	int clip_x_origin;	/* origin for clipping */	int clip_y_origin;	Pixmap clip_mask;	/* bitmap clipping; other calls for rects */	int dash_offset;	/* patterned/dashed line information */	char dashes;#ifdef __WIN32__	unsigned int fgBrush;	unsigned int bgBrush;	unsigned int fgPen;	unsigned int fgExtPen;	unsigned int extpenstyle;#endif} XGCValues;/* * Graphics context.  The contents of this structure are implementation * dependent.  A GC should be treated as opaque by application code. */typedef XGCValues *GC;/* * Visual structure; contains information about colormapping possible. */typedef struct {	XExtData *ext_data;	/* hook for extension to hang data */	VisualID visualid;	/* visual id of this visual */#if defined(__cplusplus) || defined(c_plusplus)	int c_class;		/* C++ class of screen (monochrome, etc.) */#else	int class;		/* class of screen (monochrome, etc.) */#endif	unsigned long red_mask, green_mask, blue_mask;	/* mask values */	int bits_per_rgb;	/* log base 2 of distinct color values */	int map_entries;	/* color map entries */} Visual;/* * Depth structure; contains information for each possible depth. */	typedef struct {	int depth;		/* this depth (Z) of the depth */	int nvisuals;		/* number of Visual types at this depth */	Visual *visuals;	/* list of visuals possible at this depth */} Depth;/* * Information about the screen.  The contents of this structure are * implementation dependent.  A Screen should be treated as opaque * by application code. */typedef struct {	XExtData *ext_data;	/* hook for extension to hang data */	struct _XDisplay *display;/* back pointer to display structure */	Window root;		/* Root window id. */	int width, height;	/* width and height of screen */	int mwidth, mheight;	/* width and height of  in millimeters */	int ndepths;		/* number of depths possible */	Depth *depths;		/* list of allowable depths on the screen */	int root_depth;		/* bits per pixel */	Visual *root_visual;	/* root visual */	GC default_gc;		/* GC for the root root visual */	Colormap cmap;		/* default color map */	unsigned long white_pixel;	unsigned long black_pixel;	/* White and Black pixel values */	int max_maps, min_maps;	/* max and min color maps */	int backing_store;	/* Never, WhenMapped, Always */	Bool save_unders;		long root_input_mask;	/* initial root input mask */} Screen;/* * Format structure; describes ZFormat data the screen will understand. */typedef struct {	XExtData *ext_data;	/* hook for extension to hang data */	int depth;		/* depth of this image format */	int bits_per_pixel;	/* bits/pixel at this depth */	int scanline_pad;	/* scanline must padded to this multiple */} ScreenFormat;/* * Data structure for setting window attributes. */typedef struct {    Pixmap background_pixmap;	/* background or None or ParentRelative */    unsigned long background_pixel;	/* background pixel */    Pixmap border_pixmap;	/* border of the window */    unsigned long border_pixel;	/* border pixel value */    int bit_gravity;		/* one of bit gravity values */    int win_gravity;		/* one of the window gravity values */    int backing_store;		/* NotUseful, WhenMapped, Always */    unsigned long backing_planes;/* planes to be preseved if possible */    unsigned long backing_pixel;/* value to use in restoring planes */    Bool save_under;		/* should bits under be saved? (popups) */    long event_mask;		/* set of events that should be saved */    long do_not_propagate_mask;	/* set of events that should not propagate */    Bool override_redirect;	/* boolean value for override-redirect */    Colormap colormap;		/* color map to be associated with window */    Cursor cursor;		/* cursor to be displayed (or None) */} XSetWindowAttributes;typedef struct {    int x, y;			/* location of window */    int width, height;		/* width and height of window */    int border_width;		/* border width of window */    int depth;          	/* depth of window */    Visual *visual;		/* the associated visual structure */    Window root;        	/* root of screen containing window */#if defined(__cplusplus) || defined(c_plusplus)    int c_class;		/* C++ InputOutput, InputOnly*/#else    int class;			/* InputOutput, InputOnly*/#endif    int bit_gravity;		/* one of bit gravity values */    int win_gravity;		/* one of the window gravity values */    int backing_store;		/* NotUseful, WhenMapped, Always */    unsigned long backing_planes;/* planes to be preserved if possible */    unsigned long backing_pixel;/* value to be used when restoring planes */    Bool save_under;		/* boolean, should bits under be saved? */    Colormap colormap;		/* color map to be associated with window */    Bool map_installed;		/* boolean, is color map currently installed*/    int map_state;		/* IsUnmapped, IsUnviewable, IsViewable */    long all_event_masks;	/* set of events all people have interest in*/    long your_event_mask;	/* my event mask */    long do_not_propagate_mask; /* set of events that should not propagate */    Bool override_redirect;	/* boolean value for override-redirect */    Screen *screen;		/* back pointer to correct screen */} XWindowAttributes;/* * Data structure for host setting; getting routines. * */typedef struct {	int family;		/* for example FamilyInternet */	int length;		/* length of address, in bytes */	char *address;		/* pointer to where to find the bytes */} XHostAddress;/* * Data structure for "image" data, used by image manipulation routines. */typedef struct _XImage {    int width, height;		/* size of image */    int xoffset;		/* number of pixels offset in X direction */    int format;			/* XYBitmap, XYPixmap, ZPixmap */    char *data;			/* pointer to image data */    int byte_order;		/* data byte order, LSBFirst, MSBFirst */    int bitmap_unit;		/* quant. of scanline 8, 16, 32 */    int bitmap_bit_order;	/* LSBFirst, MSBFirst */    int bitmap_pad;		/* 8, 16, 32 either XY or ZPixmap */    int depth;			/* depth of image */    int bytes_per_line;		/* accelarator to next line */    int bits_per_pixel;		/* bits per pixel (ZPixmap) */    unsigned long red_mask;	/* bits in z arrangment */    unsigned long green_mask;    unsigned long blue_mask;    XPointer obdata;		/* hook for the object routines to hang on */    struct funcs {		/* image manipulation routines */	struct _XImage *(*create_image)();#if NeedFunctionPrototypes	int (*destroy_image)        (struct _XImage *);	unsigned long (*get_pixel)  (struct _XImage *, int, int);	int (*put_pixel)            (struct _XImage *, int, int, unsigned long);	struct _XImage *(*sub_image)(struct _XImage *, int, int, unsigned int, unsigned int);	int (*add_pixel)            (struct _XImage *, long);#else	int (*destroy_image)();	unsigned long (*get_pixel)();	int (*put_pixel)();	struct _XImage *(*sub_image)();	int (*add_pixel)();#endif	} f;} XImage;/*  * Data structure for XReconfigureWindow */typedef struct {    int x, y;    int width, height;    int border_width;    Window sibling;    int stack_mode;} XWindowChanges;/* * Data structure used by color operations */typedef struct {	unsigned long pixel;	unsigned short red, green, blue;	char flags;  /* do_red, do_green, do_blue */	char pad;} XColor;/*  * Data structures for graphics operations.  On most machines, these are * congruent with the wire protocol structures, so reformatting the data * can be avoided on these architectures. */typedef struct {    short x1, y1, x2, y2;} XSegment;typedef struct {    short x, y;} XPoint;    typedef struct {    short x, y;    unsigned short width, height;} XRectangle;    typedef struct {    short x, y;    unsigned short width, height;    short angle1, angle2;} XArc;/* Data structure for XChangeKeyboardControl */typedef struct {        int key_click_percent;        int bell_percent;        int bell_pitch;        int bell_duration;        int led;        int led_mode;        int key;        int auto_repeat_mode;   /* On, Off, Default */} XKeyboardControl;/* Data structure for XGetKeyboardControl */typedef struct {        int key_click_percent;	int bell_percent;	unsigned int bell_pitch, bell_duration;	unsigned long led_mask;	int global_auto_repeat;	char auto_repeats[32];} XKeyboardState;/* Data structure for XGetMotionEvents.  */typedef struct {        Time time;	short x, y;} XTimeCoord;/* Data structure for X{Set,Get}ModifierMapping */typedef struct { 	int max_keypermod;	/* The server's max # of keys per modifier */ 	KeyCode *modifiermap;	/* An 8 by max_keypermod array of modifiers */} XModifierKeymap;/* * Display datatype maintaining display specific data. * The contents of this structure are implementation dependent. * A Display should be treated as opaque by application code. */typedef struct _XDisplay {	XExtData *ext_data;	/* hook for extension to hang data */	struct _XFreeFuncs *free_funcs; /* internal free functions */	int fd;			/* Network socket. */	int conn_checker;         /* ugly thing used by _XEventsQueued */	int proto_major_version;/* maj. version of server's X protocol */	int proto_minor_version;/* minor version of servers X protocol */	char *vendor;		/* vendor of the server hardware */        XID resource_base;	/* resource ID base */	XID resource_mask;	/* resource ID mask bits */	XID resource_id;	/* allocator current ID */	int resource_shift;	/* allocator shift to correct bits */	XID (*resource_alloc)(); /* allocator function */	int byte_order;		/* screen byte order, LSBFirst, MSBFirst */	int bitmap_unit;	/* padding and data requirements */	int bitmap_pad;		/* padding requirements on bitmaps */	int bitmap_bit_order;	/* LeastSignificant or MostSignificant */	int nformats;		/* number of pixmap formats in list */	ScreenFormat *pixmap_format;	/* pixmap format list */	int vnumber;		/* Xlib's X protocol version number. */	int release;		/* release of the server */	struct _XSQEvent *head, *tail;	/* Input event queue. */	int qlen;		/* Length of input event queue */	unsigned long request;	/* sequence number of last request. */	char *last_req;		/* beginning of last request, or dummy */	char *buffer;		/* Output buffer starting address. */	char *bufptr;		/* Output buffer index pointer. */	char *bufmax;		/* Output buffer maximum+1 address. */	unsigned max_request_size; /* maximum number 32 bit words in request*/	struct _XrmHashBucketRec *db;	int (*synchandler)();	/* Synchronization handler */	char *display_name;	/* "host:display" string used on this connect*/	int default_screen;	/* default screen for operations */	int nscreens;		/* number of screens on this server*/	Screen *screens;	/* pointer to list of screens */	unsigned long motion_buffer;	/* size of motion buffer */	unsigned long flags;	/* internal connection flags */	int min_keycode;	/* minimum defined keycode */	int max_keycode;	/* maximum defined keycode */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产综合久久久久影院| 成人小视频免费观看| 国产女人18水真多18精品一级做 | 欧美三级一区二区| 丁香啪啪综合成人亚洲小说 | 欧美精品一区二区三区四区| 8v天堂国产在线一区二区| 欧美色窝79yyyycom| 欧美在线啊v一区| 欧美日韩一区久久| 91精品国产乱| 久久女同性恋中文字幕| 精品国产人成亚洲区| 久久久蜜桃精品| 国产三级三级三级精品8ⅰ区| 久久夜色精品国产欧美乱极品| 久久天天做天天爱综合色| 国产清纯白嫩初高生在线观看91 | av电影在线观看不卡 | 亚洲乱码中文字幕| 亚洲综合无码一区二区| 亚洲国产精品久久久久婷婷884 | 久色婷婷小香蕉久久| 精彩视频一区二区三区| 高清成人免费视频| 91在线国产福利| 色综合天天天天做夜夜夜夜做| 91国偷自产一区二区开放时间| 色中色一区二区| 3d成人动漫网站| 久久久久久**毛片大全| 一区二区三区电影在线播| 日韩和欧美一区二区| 国产在线播放一区二区三区 | 亚洲欧洲制服丝袜| 久久激情五月激情| 色综合天天在线| 久久综合色婷婷| 亚洲国产精品久久人人爱| 久久av资源网| 91视频免费播放| 日韩欧美国产不卡| 亚洲欧美一区二区不卡| 国产一区二区美女诱惑| 欧美日韩国产小视频在线观看| 久久久国产精品午夜一区ai换脸| 中文欧美字幕免费| 秋霞av亚洲一区二区三| 色av综合在线| 欧美国产精品一区二区三区| 五月婷婷色综合| 99国产精品久久久久久久久久| 日韩视频免费直播| 亚洲第一电影网| 91论坛在线播放| 国产精品拍天天在线| 另类的小说在线视频另类成人小视频在线 | eeuss鲁片一区二区三区在线看| 日韩一级大片在线| 亚洲h精品动漫在线观看| gogo大胆日本视频一区| 国产精品色婷婷久久58| 国产综合色视频| 久久久久久一级片| 国产尤物一区二区| 精品美女在线观看| 免费成人av在线| 日韩你懂的在线观看| 视频一区二区三区入口| 欧美丝袜丝交足nylons| 亚洲一区二区四区蜜桃| 色噜噜偷拍精品综合在线| 亚洲欧洲一区二区三区| 99久久婷婷国产综合精品| 欧美韩国日本综合| 99re热视频这里只精品 | 色婷婷亚洲精品| 中文字幕中文在线不卡住| 丰满亚洲少妇av| 综合在线观看色| 欧洲一区在线观看| 亚洲国产一区二区在线播放| 欧美丝袜丝交足nylons图片| 五月天国产精品| 日韩三级中文字幕| 国产乱子轮精品视频| 久久这里只精品最新地址| 国产成人av一区二区| 亚洲天堂福利av| 欧美日韩国产经典色站一区二区三区| 亚洲福中文字幕伊人影院| 欧美一区二区三区免费| 久久99深爱久久99精品| 国产日韩av一区二区| 91天堂素人约啪| 午夜免费久久看| 久久久亚洲午夜电影| 99国产一区二区三精品乱码| 亚洲国产日韩av| 精品乱码亚洲一区二区不卡| 成人黄色777网| 亚洲成a人在线观看| 欧美精品一区二区三区视频| 成人毛片视频在线观看| 亚洲国产va精品久久久不卡综合| 91精品一区二区三区在线观看| 黄色日韩三级电影| 一区二区三区在线播| 91精品在线一区二区| 成人午夜在线播放| 亚洲福利一区二区| 欧美—级在线免费片| 欧美日韩大陆在线| 国产高清亚洲一区| 亚洲成a人片在线不卡一二三区| 欧美精品一区二区三区蜜桃| 91麻豆国产福利精品| 国内精品在线播放| 午夜视频在线观看一区二区| 国产午夜精品福利| 欧美一区二区视频在线观看2022| 成人av网站免费观看| 日本不卡123| 亚洲一区二区三区精品在线| 久久精品网站免费观看| 欧美一区二区三区在线观看视频| av不卡在线观看| 精品一区中文字幕| 日日摸夜夜添夜夜添亚洲女人| 国产精品女上位| 26uuu精品一区二区| 日韩一级在线观看| 欧美亚洲综合色| 91麻豆国产精品久久| 成人黄色av电影| 丁香另类激情小说| 国产麻豆视频精品| 麻豆精品视频在线观看视频| 亚洲国产wwwccc36天堂| 亚洲黄色性网站| 亚洲欧美视频一区| 亚洲色图20p| 最新欧美精品一区二区三区| 久久精品人人做人人爽人人 | 成人免费视频免费观看| 狠狠色丁香久久婷婷综合丁香| 日韩成人免费电影| 五月婷婷激情综合| 日韩国产在线一| 三级成人在线视频| 日本一不卡视频| 久久99久久99小草精品免视看| 日韩和欧美一区二区三区| 日日欢夜夜爽一区| 日韩av电影免费观看高清完整版| 亚洲国产精品久久久久婷婷884 | 久久精品国产免费看久久精品| 婷婷成人激情在线网| 亚洲一区二区三区在线播放| 亚洲永久精品大片| 亚洲一区二区三区自拍| 日韩经典一区二区| 狠狠v欧美v日韩v亚洲ⅴ| 韩国中文字幕2020精品| 国产福利91精品一区二区三区| 国产乱子伦视频一区二区三区 | 精品噜噜噜噜久久久久久久久试看| 欧美高清激情brazzers| 这里只有精品免费| www欧美成人18+| 国产精品久久久久久久久免费丝袜 | 亚洲国产综合在线| 亚洲成av人在线观看| 蜜桃视频免费观看一区| 国产一区二区三区黄视频| 99精品久久只有精品| 56国语精品自产拍在线观看| 欧美成人精品高清在线播放| 国产欧美一区二区精品性色超碰 | 亚洲精品自拍动漫在线| 亚洲一区二区美女| 久久精品99国产精品| 不卡影院免费观看| 欧美日韩一区高清| 国产欧美日韩另类一区| 一级特黄大欧美久久久| 久久国产精品一区二区| 成人av在线网| 欧美精品久久99久久在免费线 | 一区二区三区欧美| 久久成人免费网| 色94色欧美sute亚洲线路一ni| 91精品国产91综合久久蜜臀| 中文字幕av不卡| 日韩高清不卡在线| 播五月开心婷婷综合| 日韩午夜精品电影| 一区二区三区日韩在线观看| 国产一区久久久| 欧美日韩精品欧美日韩精品一综合|