beos_x11.h

来自「mesa-6.5-minigui源码」· C头文件 代码 · 共 34 行

H
34
字号
#ifndef __beos_x11_h__#define __beos_x11_h__/* Copyright (c) Nate Robins, 1997. *//* This program is freely distributable without licensing fees    and is provided without guarantee or warrantee expressed or    implied. This program is -not- in the public domain. *//*  * Bitmask returned by XParseGeometry().  Each bit tells if the corresponding * value (x, y, width, height) was found in the parsed string.*/#define NoValue		0x0000#define XValue  	0x0001#define YValue		0x0002#define WidthValue  	0x0004#define HeightValue  	0x0008#define AllValues 	0x000F#define XNegative 	0x0010#define YNegative 	0x0020/* Function prototypes. */extern int DisplayWidth();extern int DisplayHeight();extern int XParseGeometry(  char* string,  int* x, int* y,   unsigned int* width, unsigned int* height);#endif /* __beos_x11_h__ */

⌨️ 快捷键说明

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