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

📄 stat_msg.hh

📁 Source code for an Numeric Cmputer
💻 HH
字号:
/********************************************************************* Description: stat_msg.hh**   Derived from a work by Fred Proctor & Will Shackleford** Author:* License: LGPL Version 2* System: Linux*    * Copyright (c) 2004 All rights reserved.** Last change: * $Revision: 1.7 $* $Author: paul_c $* $Date: 2005/05/23 16:34:15 $********************************************************************/#ifndef RCS_STAT_HH#define RCS_STAT_HH#include "nml.hh"#include "nmlmsg.hh"class RCS_STAT_MSG:public NMLmsg {  public:    RCS_STAT_MSG(NMLTYPE t, size_t sz);    NMLTYPE command_type;    int echo_serial_number;    int status;    int state;    int line;    int source_line;    char source_file[64];};extern int RCS_STAT_MSG_format(NMLTYPE, void *, CMS *);class RCS_STAT_CHANNEL:public NML {  public:    RCS_STAT_CHANNEL(NML_FORMAT_PTR, char *, char *, char *,	int set_to_server = 0);     ~RCS_STAT_CHANNEL();    RCS_STAT_MSG *get_address() {	return ((RCS_STAT_MSG *) NML::get_address());    };};#define RCS_GENERIC_STATUS_TYPE         ((NMLTYPE) 2000000)class RCS_GENERIC_STATUS:public RCS_STAT_MSG {  public:    RCS_GENERIC_STATUS();    void update(CMS *);};enum RCS_STATE{  UNINITIALIZED_STATE = -1,  NEW_COMMAND = -2,  NOP_STATE = -3,  SE0 = -10,  SE1 = -11,  SE2 = -12,  SE3 = -13,  SE4 = -14,  SE5 = -15,  SE6 = -16,  SE7 = -17,  SE8 = -18,  SE9 = -19,  S0 = 0,  S1 = 1,  S2 = 2,  S3 = 3,  S4 = 4,  S5 = 5,  S6 = 6,  S7 = 7,  S8 = 8,  S9 = 9,  S10 = 10,  S11 = 11,  S12 = 12,  S13 = 13,  S14 = 14,  S15 = 15,  S16 = 16,  S17 = 17,  S18 = 18,  S19 = 19,  S20 = 20,  S21 = 21,  S22 = 22,  S23 = 23,  S24 = 24,  S25 = 25,  S26 = 26,  S27 = 27,  S28 = 28,  S29 = 29,  S30 = 30,  S31 = 31,  S32 = 32,  S33 = 33,  S34 = 34,  S35 = 35,  S36 = 36,  S37 = 37,  S38 = 38,  S39 = 39};#endif

⌨️ 快捷键说明

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