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

📄 mac.h

📁 早期freebsd实现
💻 H
字号:
/*************************************************************************** * This program is Copyright (C) 1986, 1987, 1988 by Jonathan Payne.  JOVE * * is provided to you without charge, and with no warranty.  You may give  * * away copies of JOVE, including sources, provided that this notice is    * * included in all the files.                                              * ***************************************************************************//* Macintosh related things. K. Mitchum 2/88 */#define NMENUS 6#define NMENUITEMS 40	/* This has GOT to be enough! */typedef data_obj *menumap[NMENUITEMS];struct menu {	char *Name;	int menu_id;	MenuHandle Mn;	menumap m;};struct stat {	int st_dev;		/* volume number */	long st_ino;		/* file number on volume */	dev_t st_rdev;	off_t st_size;		/* logical end of file */	int st_mode;	time_t st_mtime;	/* last modified */};#define S_IFDIR 2typedef char *va_list;#define va_dcl va_list va_alist;#define va_start(l) { (l) = (va_list)&va_alist; }#define va_arg(l,m) (((m*)((l) += sizeof(m)))[-1])#define va_end(l) { (l) = NULL; }

⌨️ 快捷键说明

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