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

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

?? xlib.h

?? linux系統下的音頻通信
?? H
?? 第 1 頁 / 共 5 頁
字號:
	KeySym *keysyms;	/* This server's keysyms */	XModifierKeymap *modifiermap;	/* This server's modifier keymap */	int keysyms_per_keycode;/* number of rows */	char *xdefaults;	/* contents of defaults from server */	char *scratch_buffer;	/* place to hang scratch buffer */	unsigned long scratch_length;	/* length of scratch buffer */	int ext_number;		/* extension number on this display */	struct _XExten *ext_procs; /* extensions initialized on this display */	/*	 * the following can be fixed size, as the protocol defines how	 * much address space is available. 	 * While this could be done using the extension vector, there	 * may be MANY events processed, so a search through the extension	 * list to find the right procedure for each event might be	 * expensive if many extensions are being used.	 */	Bool (*event_vec[128])();  /* vector for wire to event */	Status (*wire_vec[128])(); /* vector for event to wire */	KeySym lock_meaning;	   /* for XLookupString */	struct _XLockInfo *lock;   /* multi-thread state, display lock */	struct _XInternalAsync *async_handlers; /* for internal async */	unsigned long bigreq_size; /* max size of big requests */	struct _XLockPtrs *lock_fns; /* pointers to threads functions */	/* things above this line should not move, for binary compatibility */	struct _XKeytrans *key_bindings; /* for XLookupString */	Font cursor_font;	   /* for XCreateFontCursor */	struct _XDisplayAtoms *atoms; /* for XInternAtom */	unsigned int mode_switch;  /* keyboard group modifiers */	struct _XContextDB *context_db; /* context database */	Bool (**error_vec)();      /* vector for wire to error */	/*	 * Xcms information	 */	struct {	   XPointer defaultCCCs;  /* pointer to an array of default XcmsCCC */	   XPointer clientCmaps;  /* pointer to linked list of XcmsCmapRec */	   XPointer perVisualIntensityMaps;				  /* linked list of XcmsIntensityMap */	} cms;	struct _XIMFilter *im_filters;	struct _XSQEvent *qfree; /* unallocated event queue elements */	unsigned long next_event_serial_num; /* inserted into next queue elt */	int (*savedsynchandler)(); /* user synchandler when Xlib usurps */} Display;#if NeedFunctionPrototypes	/* prototypes require event type definitions */#undef _XEVENT_#endif#ifndef _XEVENT_#define XMaxTransChars 4/* * Definitions of specific events. */typedef struct {	int type;		/* of event */	unsigned long serial;	/* # of last request processed by server */	Bool send_event;	/* true if this came from a SendEvent request */	Display *display;	/* Display the event was read from */	Window window;	        /* "event" window it is reported relative to */	Window root;	        /* root window that the event occured on */	Window subwindow;	/* child window */	Time time;		/* milliseconds */	int x, y;		/* pointer x, y coordinates in event window */	int x_root, y_root;	/* coordinates relative to root */	unsigned int state;	/* key or button mask */	unsigned int keycode;	/* detail */	Bool same_screen;	/* same screen flag */        char trans_chars[XMaxTransChars];				/* translated characters */	int nchars;} XKeyEvent;typedef XKeyEvent XKeyPressedEvent;typedef XKeyEvent XKeyReleasedEvent;typedef struct {	int type;		/* of event */	unsigned long serial;	/* # of last request processed by server */	Bool send_event;	/* true if this came from a SendEvent request */	Display *display;	/* Display the event was read from */	Window window;	        /* "event" window it is reported relative to */	Window root;	        /* root window that the event occured on */	Window subwindow;	/* child window */	Time time;		/* milliseconds */	int x, y;		/* pointer x, y coordinates in event window */	int x_root, y_root;	/* coordinates relative to root */	unsigned int state;	/* key or button mask */	unsigned int button;	/* detail */	Bool same_screen;	/* same screen flag */} XButtonEvent;typedef XButtonEvent XButtonPressedEvent;typedef XButtonEvent XButtonReleasedEvent;typedef struct {	int type;		/* of event */	unsigned long serial;	/* # of last request processed by server */	Bool send_event;	/* true if this came from a SendEvent request */	Display *display;	/* Display the event was read from */	Window window;	        /* "event" window reported relative to */	Window root;	        /* root window that the event occured on */	Window subwindow;	/* child window */	Time time;		/* milliseconds */	int x, y;		/* pointer x, y coordinates in event window */	int x_root, y_root;	/* coordinates relative to root */	unsigned int state;	/* key or button mask */	char is_hint;		/* detail */	Bool same_screen;	/* same screen flag */} XMotionEvent;typedef XMotionEvent XPointerMovedEvent;typedef struct {	int type;		/* of event */	unsigned long serial;	/* # of last request processed by server */	Bool send_event;	/* true if this came from a SendEvent request */	Display *display;	/* Display the event was read from */	Window window;	        /* "event" window reported relative to */	Window root;	        /* root window that the event occured on */	Window subwindow;	/* child window */	Time time;		/* milliseconds */	int x, y;		/* pointer x, y coordinates in event window */	int x_root, y_root;	/* coordinates relative to root */	int mode;		/* NotifyNormal, NotifyGrab, NotifyUngrab */	int detail;	/*	 * NotifyAncestor, NotifyVirtual, NotifyInferior, 	 * NotifyNonlinear,NotifyNonlinearVirtual	 */	Bool same_screen;	/* same screen flag */	Bool focus;		/* boolean focus */	unsigned int state;	/* key or button mask */} XCrossingEvent;typedef XCrossingEvent XEnterWindowEvent;typedef XCrossingEvent XLeaveWindowEvent;typedef struct {	int type;		/* FocusIn or FocusOut */	unsigned long serial;	/* # of last request processed by server */	Bool send_event;	/* true if this came from a SendEvent request */	Display *display;	/* Display the event was read from */	Window window;		/* window of event */	int mode;		/* NotifyNormal, NotifyGrab, NotifyUngrab */	int detail;	/*	 * NotifyAncestor, NotifyVirtual, NotifyInferior, 	 * NotifyNonlinear,NotifyNonlinearVirtual, NotifyPointer,	 * NotifyPointerRoot, NotifyDetailNone 	 */} XFocusChangeEvent;typedef XFocusChangeEvent XFocusInEvent;typedef XFocusChangeEvent XFocusOutEvent;/* generated on EnterWindow and FocusIn  when KeyMapState selected */typedef struct {	int type;	unsigned long serial;	/* # of last request processed by server */	Bool send_event;	/* true if this came from a SendEvent request */	Display *display;	/* Display the event was read from */	Window window;	char key_vector[32];} XKeymapEvent;	typedef struct {	int type;	unsigned long serial;	/* # of last request processed by server */	Bool send_event;	/* true if this came from a SendEvent request */	Display *display;	/* Display the event was read from */	Window window;	int x, y;	int width, height;	int count;		/* if non-zero, at least this many more */} XExposeEvent;typedef struct {	int type;	unsigned long serial;	/* # of last request processed by server */	Bool send_event;	/* true if this came from a SendEvent request */	Display *display;	/* Display the event was read from */	Drawable drawable;	int x, y;	int width, height;	int count;		/* if non-zero, at least this many more */	int major_code;		/* core is CopyArea or CopyPlane */	int minor_code;		/* not defined in the core */} XGraphicsExposeEvent;typedef struct {	int type;	unsigned long serial;	/* # of last request processed by server */	Bool send_event;	/* true if this came from a SendEvent request */	Display *display;	/* Display the event was read from */	Drawable drawable;	int major_code;		/* core is CopyArea or CopyPlane */	int minor_code;		/* not defined in the core */} XNoExposeEvent;typedef struct {	int type;	unsigned long serial;	/* # of last request processed by server */	Bool send_event;	/* true if this came from a SendEvent request */	Display *display;	/* Display the event was read from */	Window window;	int state;		/* Visibility state */} XVisibilityEvent;typedef struct {	int type;	unsigned long serial;	/* # of last request processed by server */	Bool send_event;	/* true if this came from a SendEvent request */	Display *display;	/* Display the event was read from */	Window parent;		/* parent of the window */	Window window;		/* window id of window created */	int x, y;		/* window location */	int width, height;	/* size of window */	int border_width;	/* border width */	Bool override_redirect;	/* creation should be overridden */} XCreateWindowEvent;typedef struct {	int type;	unsigned long serial;	/* # of last request processed by server */	Bool send_event;	/* true if this came from a SendEvent request */	Display *display;	/* Display the event was read from */	Window event;	Window window;} XDestroyWindowEvent;typedef struct {	int type;	unsigned long serial;	/* # of last request processed by server */	Bool send_event;	/* true if this came from a SendEvent request */	Display *display;	/* Display the event was read from */	Window event;	Window window;	Bool from_configure;} XUnmapEvent;typedef struct {	int type;	unsigned long serial;	/* # of last request processed by server */	Bool send_event;	/* true if this came from a SendEvent request */	Display *display;	/* Display the event was read from */	Window event;	Window window;	Bool override_redirect;	/* boolean, is override set... */} XMapEvent;typedef struct {	int type;	unsigned long serial;	/* # of last request processed by server */	Bool send_event;	/* true if this came from a SendEvent request */	Display *display;	/* Display the event was read from */	Window parent;	Window window;} XMapRequestEvent;typedef struct {	int type;	unsigned long serial;	/* # of last request processed by server */	Bool send_event;	/* true if this came from a SendEvent request */	Display *display;	/* Display the event was read from */	Window event;	Window window;	Window parent;	int x, y;	Bool override_redirect;} XReparentEvent;typedef struct {	int type;	unsigned long serial;	/* # of last request processed by server */	Bool send_event;	/* true if this came from a SendEvent request */	Display *display;	/* Display the event was read from */	Window event;	Window window;	int x, y;	int width, height;	int border_width;	Window above;	Bool override_redirect;} XConfigureEvent;typedef struct {	int type;	unsigned long serial;	/* # of last request processed by server */	Bool send_event;	/* true if this came from a SendEvent request */	Display *display;	/* Display the event was read from */	Window event;	Window window;	int x, y;} XGravityEvent;typedef struct {	int type;	unsigned long serial;	/* # of last request processed by server */	Bool send_event;	/* true if this came from a SendEvent request */	Display *display;	/* Display the event was read from */	Window window;	int width, height;} XResizeRequestEvent;typedef struct {	int type;	unsigned long serial;	/* # of last request processed by server */	Bool send_event;	/* true if this came from a SendEvent request */	Display *display;	/* Display the event was read from */	Window parent;	Window window;	int x, y;	int width, height;	int border_width;	Window above;	int detail;		/* Above, Below, TopIf, BottomIf, Opposite */	unsigned long value_mask;} XConfigureRequestEvent;typedef struct {	int type;	unsigned long serial;	/* # of last request processed by server */	Bool send_event;	/* true if this came from a SendEvent request */	Display *display;	/* Display the event was read from */	Window event;	Window window;	int place;		/* PlaceOnTop, PlaceOnBottom */} XCirculateEvent;typedef struct {	int type;	unsigned long serial;	/* # of last request processed by server */	Bool send_event;	/* true if this came from a SendEvent request */	Display *display;	/* Display the event was read from */	Window parent;	Window window;	int place;		/* PlaceOnTop, PlaceOnBottom */} XCirculateRequestEvent;typedef struct {	int type;	unsigned long serial;	/* # of last request processed by server */	Bool send_event;	/* true if this came from a SendEvent request */	Display *display;	/* Display the event was read from */	Window window;	Atom atom;	Time time;	int state;		/* NewValue, Deleted */} XPropertyEvent;typedef struct {	int type;	unsigned long serial;	/* # of last request processed by server */	Bool send_event;	/* true if this came from a SendEvent request */	Display *display;	/* Display the event was read from */	Window window;	Atom selection;	Time time;} XSelectionClearEvent;typedef struct {	int type;	unsigned long serial;	/* # of last request processed by server */	Bool send_event;	/* true if this came from a SendEvent request */	Display *display;	/* Display the event was read from */	Window owner;	Window requestor;	Atom selection;	Atom target;	Atom property;	Time time;} XSelectionRequestEvent;typedef struct {	int type;	unsigned long serial;	/* # of last request processed by server */	Bool send_event;	/* true if this came from a SendEvent request */	Display *display;	/* Display the event was read from */	Window requestor;	Atom selection;	Atom target;	Atom property;		/* ATOM or None */	Time time;} XSelectionEvent;typedef struct {	int type;	unsigned long serial;	/* # of last request processed by server */	Bool send_event;	/* true if this came from a SendEvent request */	Display *display;	/* Display the event was read from */	Window window;	Colormap colormap;	/* COLORMAP or None */#if defined(__cplusplus) || defined(c_plusplus)	Bool c_new;		/* C++ */#else	Bool new;#endif	int state;		/* ColormapInstalled, ColormapUninstalled */} XColormapEvent;typedef struct {	int type;	unsigned long serial;	/* # of last request processed by server */	Bool send_event;	/* true if this came from a SendEvent request */	Display *display;	/* Display the event was read from */	Window window;	Atom message_type;	int format;	union {		char b[20];		short s[10];		long l[5];		} data;} XClientMessageEvent;typedef struct {	int type;	unsigned long serial;	/* # of last request processed by server */	Bool send_event;	/* true if this came from a SendEvent request */	Display *display;	/* Display the event was read from */	Window window;		/* unused */	int request;		/* one of MappingModifier, MappingKeyboard,				   MappingPointer */	int first_keycode;	/* first keycode */	int count;		/* defines range of change w. first_keycode*/} XMappingEvent;typedef struct {	int type;	Display *display;	/* Display the event was read from */	XID resourceid;		/* resource id */	unsigned long serial;	/* serial number of failed request */	unsigned char error_code;	/* error code of failed request */	unsigned char request_code;	/* Major op-code of failed request */	unsigned char minor_code;	/* Minor op-code of failed request */} XErrorEvent;typedef struct {	int type;	unsigned long serial;	/* # of last request processed by server */	Bool send_event;	/* true if this came from a SendEvent request */	Display *display;/* Display the event was read from */	Window window;	/* window on which event was requested in event mask */} XAnyEvent;/* * this union is defined so Xlib can always use the same sized * event structure internally, to avoid memory fragmentation. */typedef union _XEvent {        int type;		/* must not be changed; first element */	XAnyEvent xany;	XKeyEvent xkey;	XButtonEvent xbutton;	XMotionEvent xmotion;	XCrossingEvent xcrossing;	XFocusChangeEvent xfocus;	XExposeEvent xexpose;	XGraphicsExposeEvent xgraphicsexpose;	XNoExposeEvent xnoexpose;	XVisibilityEvent xvisibility;	XCreateWindowEvent xcreatewindow;	XDestroyWindowEvent xdestroywindow;	XUnmapEvent xunmap;	XMapEvent xmap;	XMapRequestEvent xmaprequest;	XReparentEvent xreparent;	XConfigureEvent xconfigure;	XGravityEvent xgravity;	XResizeRequestEvent xresizerequest;	XConfigureRequestEvent xconfigurerequest;	XCirculateEvent xcirculate;	XCirculateRequestEvent xcirculaterequest;	XPropertyEvent xproperty;	XSelectionClearEvent xselectionclear;	XSelectionRequestEvent xselectionrequest;	XSelectionEvent xselection;	XColormapEvent xcolormap;	XClientMessageEvent xclient;	XMappingEvent xmapping;	XErrorEvent xerror;	XKeymapEvent xkeymap;	long pad[24];} XEvent;#endif#define XAllocID(dpy) ((*(dpy)->resource_alloc)((dpy)))

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产毛片精品一区| 国产日韩av一区二区| 久久综合九色综合欧美98| 亚洲欧洲精品天堂一级| 日本一不卡视频| 在线免费观看日本欧美| 国产欧美日韩精品a在线观看| 亚洲综合自拍偷拍| 不卡视频免费播放| 一区二区三区中文免费| 久久精品久久精品| 欧美日韩在线一区二区| 国产精品国产三级国产有无不卡 | 欧美日韩另类国产亚洲欧美一级| 国产色一区二区| 麻豆国产欧美日韩综合精品二区| 在线观看网站黄不卡| 国产精品久久综合| 国产精品一级片在线观看| 91精品免费在线观看| 亚洲国产色一区| 色欧美日韩亚洲| 亚洲天堂网中文字| 99久久精品国产网站| 国产精品欧美极品| www.亚洲激情.com| 久久精品亚洲精品国产欧美| 老司机一区二区| 欧美不卡一区二区| 免费观看30秒视频久久| 91精品福利在线一区二区三区| 亚洲一卡二卡三卡四卡五卡| 在线免费观看日韩欧美| 有坂深雪av一区二区精品| 94-欧美-setu| 亚洲精品成人在线| 日本精品免费观看高清观看| 玉足女爽爽91| 在线不卡中文字幕播放| 蜜桃av一区二区在线观看| 日韩丝袜情趣美女图片| 久久99国产精品久久99果冻传媒 | 欧美色图片你懂的| 亚洲国产一区二区视频| 5858s免费视频成人| 精品在线一区二区三区| 国产欧美一二三区| 99re66热这里只有精品3直播 | 亚洲欧洲精品一区二区三区| av一区二区三区| 亚洲欧美日韩国产另类专区 | 国产成人免费av在线| 精品国产自在久精品国产| 一个色综合网站| 在线亚洲高清视频| 亚洲成人资源网| 91麻豆精品国产91久久久资源速度 | 中文字幕在线不卡一区| 成人黄色免费短视频| 日韩理论片网站| 91丨九色丨蝌蚪丨老版| 精品国产麻豆免费人成网站| 国产制服丝袜一区| 亚洲黄色录像片| 青娱乐精品在线视频| 91精品国产综合久久福利| 日韩国产高清在线| 精品理论电影在线| 国产99久久久久| 日韩一区在线看| 欧美亚洲国产bt| 喷水一区二区三区| 久久久久久久电影| 成人aa视频在线观看| 日本欧美一区二区三区| 久久免费视频一区| 色综合久久久久综合体| 日本欧美一区二区在线观看| 国产女人aaa级久久久级| 91丨porny丨蝌蚪视频| 亚洲国产精品久久人人爱| 欧美α欧美αv大片| 狠狠v欧美v日韩v亚洲ⅴ| 国产精品蜜臀av| 色婷婷精品久久二区二区蜜臂av | 亚洲激情图片小说视频| 欧美日本一区二区| 国产成人在线网站| 亚洲网友自拍偷拍| 久久免费视频色| 欧美性感一区二区三区| 国产成人h网站| 日日摸夜夜添夜夜添国产精品 | 韩国毛片一区二区三区| 国产日韩欧美一区二区三区综合| 91在线porny国产在线看| 亚洲综合色在线| 国产精品初高中害羞小美女文| 欧美精品 国产精品| 国产suv精品一区二区6| 天天色图综合网| 中文字幕中文字幕一区二区| 日韩欧美一级二级三级| 在线视频观看一区| 国产白丝网站精品污在线入口| 青椒成人免费视频| 亚洲少妇屁股交4| 欧美国产日韩一二三区| 精品国产一区二区三区忘忧草| 欧美主播一区二区三区美女| 粉嫩av一区二区三区在线播放| 婷婷激情综合网| 亚洲一级片在线观看| 国产精品福利电影一区二区三区四区| 欧美xxxxx牲另类人与| 欧美日韩精品一区二区三区 | 亚洲成va人在线观看| 中文字幕一区三区| 精品久久久三级丝袜| 精品国内片67194| 69堂国产成人免费视频| 欧美亚州韩日在线看免费版国语版| 成人a区在线观看| 丰满亚洲少妇av| 免费在线一区观看| 亚洲欧洲成人自拍| 欧美国产精品劲爆| 久久久.com| 久久久久久99久久久精品网站| 欧美精品欧美精品系列| 欧美午夜寂寞影院| 成人毛片老司机大片| 波多野结衣中文字幕一区 | 不卡一区中文字幕| eeuss国产一区二区三区| 不卡一区中文字幕| 欧洲中文字幕精品| 欧美日韩第一区日日骚| 欧美男女性生活在线直播观看| 欧美日韩一区二区三区高清 | 亚洲欧洲三级电影| 亚洲欧洲日韩在线| 一区二区三区成人在线视频| 亚洲午夜羞羞片| 蜜桃一区二区三区四区| 狂野欧美性猛交blacked| 激情综合五月天| 成人av在线电影| 欧洲av一区二区嗯嗯嗯啊| 日本高清成人免费播放| 欧美另类高清zo欧美| 精品美女一区二区| 亚洲国产激情av| 亚洲电影在线免费观看| 蜜桃视频免费观看一区| 国产美女娇喘av呻吟久久| 99视频一区二区三区| 欧美一级久久久久久久大片| 久久久久久日产精品| 亚洲日本一区二区| 亚洲sss视频在线视频| 国产中文字幕一区| 色欧美片视频在线观看| 91精品婷婷国产综合久久| 精品国产一区二区三区av性色 | 国产99精品国产| 一本色道综合亚洲| 欧美一区二区在线看| 国产日韩欧美精品综合| 五月激情六月综合| 懂色av一区二区三区免费看| 欧美精品在欧美一区二区少妇| 7777精品伊人久久久大香线蕉的 | 日韩欧美三级在线| 亚洲日本青草视频在线怡红院| 天堂蜜桃一区二区三区| 成人在线综合网| 欧美日韩国产美| 中文字幕在线视频一区| 日本欧美一区二区在线观看| 99精品国产热久久91蜜凸| 日韩欧美黄色影院| 亚洲gay无套男同| www.亚洲人| 久久亚洲综合色一区二区三区| 亚洲综合成人在线| 国产suv精品一区二区三区| 91精品国产综合久久久久| 亚洲美女屁股眼交| 九九九久久久精品| 精品裸体舞一区二区三区| 亚洲成a人片在线观看中文| 97国产一区二区| 久久久久97国产精华液好用吗| 日本欧美肥老太交大片| 欧美中文字幕一区| 国产精品女上位| 高清av一区二区| 国产视频911| 国产一级精品在线|