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

📄 setkey_tables.h

📁 操作系统SunOS 4.1.3版本的源码
💻 H
字号:
/*	@(#)setkey_tables.h 1.1 92/07/30	*//* * Copyright (c) 1986 by Sun Microsystems, Inc. */#include <sys/time.h>#include <sys/types.h>#include <sundev/kbd.h>#include <sundev/kbio.h>#include <sundev/msio.h>#include <sunwindow/win_input.h>#ifndef TRUE#define TRUE	1#define FALSE	0#endiftypedef enum { Unknown_kbd, Klunker_kbd, Sun1_kbd, Sun2_kbd, Sun3_kbd, Sun4_kbd}	Keybd_type;typedef struct {    int		    key;    int		    code;}	Pair;typedef struct {    Pair           *down_only;    int             count_downs;    Pair           *ups;    int             count_ups;}	Key_info;typedef struct {    Key_info       *standard;    Key_info       *standard_noarrow;    Key_info       *lefty;    Key_info       *lefty_noarrow;}	Keybd_info;extern Keybd_info    ktbl_klunker_info, ktbl_no_sunview_info,		     ktbl_sun1_info, ktbl_sun2_info, ktbl_sun3_info,		     ktbl_sun4_info;

⌨️ 快捷键说明

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