xrmi.h

来自「Nxlib,一个模拟xlib的程序。使用microwindows的库来运行需要x」· C头文件 代码 · 共 44 行

H
44
字号
/* $Xorg: XrmI.h,v 1.3 2000/08/17 19:45:08 cpqbld Exp $ *//*Copyright 1990, 1998  The Open GroupAll Rights Reserved.The above copyright notice and this permission notice shall be includedin all copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESSOR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OFMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OROTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OROTHER DEALINGS IN THE SOFTWARE.Except as contained in this notice, the name of The Open Group shallnot be used in advertising or otherwise to promote the sale, use orother dealings in this Software without prior written authorizationfrom The Open Group.*//* * Macros to abstract out reading the file, and getting its size. * * You may need to redefine these for various other operating systems.  */#include	<X11/Xos.h>#include        <sys/stat.h>                        #define GetSizeOfFile(fd,size)                      \{                                                   \    struct stat status_buffer;                      \    if ( (fstat((fd), &status_buffer)) == -1 )      \	size = -1;                                  \    else                                            \	size = status_buffer.st_size;               \}

⌨️ 快捷键说明

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