spoolint.h

来自「一个两碟控制的VCD的代码,两碟之间的转动及连续播放,已大量生产的CODE.」· C头文件 代码 · 共 51 行

H
51
字号
/* SCCSID @(#)spoolint.h	1.6 4/21/97 *//* 1.condition compiler constant:    VCW -- only using function "spoolkeyvar"   VCWSPOOL1 -- also using functions: "spoolchar", "spoolint", "spoolstring" "and spoolptr"     VCWSPOOL2 -- using all functions, include "spoolprintf"2.winnum is output window id, it could be the value of following:   0 -- outputing data to window #0, "command a window"    1 -- outputing data to window #1, normal vc window    2 -- outputing data to window #2, "key var debug window"   	*/#if defined(VCW)||defined(VCWSPOOL1)||defined(VCWSPOOL2)int spoolkeyvar(int *ptr);void spoolhandler(void);#if defined(VCWSPOOL1)||defined(VCWSPOOL2)#define SPOOLSTRING		0x00#define SPOOLBLOCK		0x01#define SPOOLCHAR		0x02#define SPOOLBYTE		0x03#define SPOOLINT		0x04#define SPOOLWORD		0x05#define SPOOLLONG		0x06#define SPOOLDWORD		0x07#define SPOOLKEYVAR		0x08int spoolstring(int winnum, char *string);int spoolout(int, int, ...);#define spoolchar(x, y) 	spoolout(x, SPOOLCHAR, y)#define spoolint(x, y)  	spoolout(x, SPOOLINT, y)#define spoolptr(x, y) 		spoolout(x, SPOOLDWORD, y)#ifdef VCWSPOOL2int spoolprintf(int, const char *, ...);#endif#endif#else#define spoolkeyvar(a)#define spoolhandler()#endif

⌨️ 快捷键说明

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