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

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

?? xlib.h

?? linux系統下的音頻通信
?? 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一区二区三区免费野_久草精品视频
蜜桃视频在线观看一区二区| 爽爽淫人综合网网站| 欧美日韩中文一区| 激情伊人五月天久久综合| 亚洲成人激情综合网| 国产精品久久久久影院色老大 | 欧美一区二区福利在线| 欧美主播一区二区三区美女| 91首页免费视频| 99久久精品国产毛片| 99视频精品在线| av成人动漫在线观看| 精品国产一区久久| 欧美精品一区二区三区在线| 亚洲一区二区三区视频在线播放| 亚洲成人免费在线观看| 国产999精品久久久久久绿帽| 国产一区二区三区不卡在线观看| 丁香激情综合国产| 色先锋久久av资源部| 欧美在线观看视频一区二区三区 | 免费观看成人av| 国产一区二区三区四区在线观看| 欧美久久久影院| 久久久久亚洲蜜桃| 国产精品国产三级国产| 国产成人在线视频网站| 日本道精品一区二区三区| 7777精品伊人久久久大香线蕉超级流畅 | 日韩电影免费在线| 国产乱对白刺激视频不卡| 成人国产精品免费观看动漫 | 亚洲日本电影在线| 日韩高清不卡一区二区| 欧美日韩国产小视频| 久久精品综合网| 一区二区三区中文字幕电影| 免费黄网站欧美| 欧美一区二区三区日韩| 久久精品国内一区二区三区| 色综合天天综合网天天狠天天| 精品视频免费看| 亚洲成人第一页| 欧美一区二区免费观在线| 奇米色一区二区| 2023国产精品视频| 亚洲成人av福利| 91麻豆精品91久久久久同性| 麻豆成人久久精品二区三区小说| 欧美大片在线观看| 亚洲图片欧美视频| 99久久综合国产精品| 亚洲日韩欧美一区二区在线| 欧美三级资源在线| 美女爽到高潮91| 国产亚洲va综合人人澡精品 | 国产精品亚洲午夜一区二区三区| 国产视频一区二区三区在线观看| 成人av在线播放网站| 一区二区三区四区乱视频| 在线不卡免费av| 国产制服丝袜一区| 亚洲私人黄色宅男| 3atv一区二区三区| 国产一区二区成人久久免费影院 | 精品久久久久久久久久久久久久久 | 日本一区二区三区高清不卡| 天天操天天综合网| 欧美性大战久久久| 成人免费小视频| 国产成人精品一区二区三区网站观看| 中国av一区二区三区| 国产精品综合网| 亚洲激情在线激情| 色婷婷久久一区二区三区麻豆| 一区二区三区小说| 久久这里只有精品首页| 99久久免费国产| 国内精品免费**视频| ...av二区三区久久精品| 欧美一区二区在线不卡| 成人99免费视频| 蓝色福利精品导航| 亚洲一区在线观看免费| 日本一区二区成人| 成人免费毛片app| 麻豆91精品视频| 一区二区三区在线视频观看58 | 884aa四虎影成人精品一区| 国产乱一区二区| 免费高清成人在线| 亚洲一区二区精品3399| 国产精品午夜免费| 久久色在线观看| 5858s免费视频成人| 色8久久人人97超碰香蕉987| 国产成人夜色高潮福利影视| 蜜臀av性久久久久蜜臀aⅴ流畅| 亚洲精品国产第一综合99久久| 亚洲精品在线观看网站| 9191成人精品久久| 91福利视频在线| 色综合久久久久综合99| 成人久久视频在线观看| 大桥未久av一区二区三区中文| 精品亚洲成a人在线观看| 国产精品丝袜91| 国产日韩欧美不卡| 欧美激情在线观看视频免费| 国产欧美综合在线| 久久精品一区二区三区不卡牛牛| 日韩欧美一区二区久久婷婷| 欧美精品123区| 日韩一区二区在线免费观看| 不卡的av电影在线观看| 成人avav在线| 99国产一区二区三精品乱码| 99精品久久只有精品| 91网页版在线| 日本高清不卡视频| 欧美网站一区二区| 欧美三片在线视频观看| 欧美日韩国产不卡| 欧美日韩精品福利| 日韩免费高清av| 亚洲精品一区在线观看| 欧美精品一区在线观看| 国产清纯美女被跳蛋高潮一区二区久久w | 欧美日韩国产经典色站一区二区三区| 色综合色综合色综合色综合色综合 | 成人激情开心网| 色噜噜狠狠色综合中国| 精品视频在线视频| 91精品久久久久久久91蜜桃| 精品久久久久久久久久久院品网 | 日韩精品一区二区三区老鸭窝| 日韩亚洲欧美综合| 国产亚洲综合色| 亚洲视频免费看| 亚洲免费观看高清完整版在线| 久久综合视频网| 《视频一区视频二区| 亚洲国产精品嫩草影院| 国内不卡的二区三区中文字幕| 国产精品亚洲专一区二区三区 | 日韩欧美123| 欧美国产乱子伦| 亚洲资源在线观看| 久99久精品视频免费观看| 成人一级片在线观看| 欧洲生活片亚洲生活在线观看| 91精品中文字幕一区二区三区| 日韩精品一区二区三区中文不卡| 国产女人aaa级久久久级| 亚洲自拍偷拍九九九| 国产精品一区久久久久| 在线观看国产一区二区| 精品久久久影院| 一区二区三区高清在线| 精品在线一区二区| 91黄色激情网站| 精品国产自在久精品国产| 一级精品视频在线观看宜春院 | 麻豆精品在线视频| 97精品视频在线观看自产线路二| 在线观看91av| 国产精品激情偷乱一区二区∴| 五月婷婷综合在线| a4yy欧美一区二区三区| 欧美成人在线直播| 一级做a爱片久久| 北条麻妃一区二区三区| 日韩免费成人网| 亚洲一区二区视频| 成人午夜电影小说| 欧美一区二区三区不卡| 一区二区三区欧美日韩| 成+人+亚洲+综合天堂| 精品精品国产高清a毛片牛牛| 亚洲一区二区三区美女| 波多野结衣欧美| 国产亚洲自拍一区| 久久草av在线| 欧美一二三四在线| 亚洲一级片在线观看| 91捆绑美女网站| 国产精品久久久久影院| 激情欧美日韩一区二区| 欧美久久久久久蜜桃| 玉米视频成人免费看| av一区二区三区四区| 亚洲国产成人午夜在线一区| 久久爱www久久做| 精品国产在天天线2019| 日韩电影网1区2区| 欧美一二三四区在线| 青青草原综合久久大伊人精品优势| 精品视频1区2区3区| 亚洲综合激情另类小说区| 91电影在线观看|