console.h
来自「基于单片机的 snmp协议解析的一些原代码 给有用的 同行」· C头文件 代码 · 共 53 行
H
53 行
// Copyright (c) 1996 Federal Highway Administration
//
// This software has been developed for the Federal Highway Administration
// by Viggen Corporation under contract with Oak Ridge National Lab.
//
// Permission to use, copy, and distribute this software for any purpose
// without fee is hereby granted, provided that the above copyright notice
// appears in all copies and that both the copyright and this permission notice
// appear in the supporting documentation.
//
// Permission to modify this software is granted provided that the above
// copyright and this permission notice appears in the modified software.
//
// This software is provided "as is" with no warranty expressed or implied.
//
// For additional information, please go to the Web site www.fhwatml.com/ntcip.
//
#ifndef CONSOLE_H
#define CONSOLE_H
const string VERSION_NUMBER="2.1beta 14Aug";
const int CONTINUE=0;
const int PAUSE=0;
const int QUIT= -1;
const int EXIT= -2;
const int GET=1;
const int GETNEXT=2;
const int SET=3;
const int LOAD=4;
const int MODE=5;
const int SETNO=6;
const int HELP=7;
const int VERSION=8;
const int INFO=9;
const int DYNPOKE=10;
const int DYNPEEK=11;
const int CMD_ERROR=12;
const int SYNC=13;
const int SETVAL=14;
const int INDEX=15;
const int RUNMACRO=16;
const int TEST=17;
const int CERROR=18;
const int GETINST=19;
const int CLEAR=20;
const int VAL=21;
const int TSET=22;
const int LOOP=23;
const int GETOBJ=24;
const int GETNEXTUNKNOWN=25;
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?