⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 types.h

📁 操作系统SunOS 4.1.3版本的源码
💻 H
字号:
/*	@(#)types.h 1.1 92/07/30 SMI	*//* * Copyright (c) 1986 by Sun Microsystems, Inc. */#ifndef _NSE_TYPES_H#define _NSE_TYPES_H/* Including <sys/types.h> to get time_t and unsigned types typedefs. */#include <sys/types.h>/*  * Including <rpc/types.h> to get bool_t, TRUE, and FALSE definitions. * The window system header files also define TRUE and FALSE and * rpc/types.h does not check for them already being defined so we * undefined them here just to be sure. */#ifndef bool_t#undef TRUE#undef FALSE#include <rpc/types.h>#endiftypedef	char		*Nse_opaque;typedef	int		(*Nse_intfunc)();typedef bool_t		(*Nse_boolfunc)();typedef void		(*Nse_voidfunc)();typedef	Nse_opaque	(*Nse_opaquefunc)();#endif _NSE_TYPES_H

⌨️ 快捷键说明

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