gonzui


Format: Advanced Search

tkernel_2/monitor/cmdsvc/src/help.hbare sourcepermlink (0.03 seconds)

Search this content:

    1: /*
    2:  *----------------------------------------------------------------------
    3:  *    T-Kernel 2.0 Software Package
    4:  *
    5:  *    Copyright 2011 by Ken Sakamura.
    6:  *    This software is distributed under the latest version of T-License 2.x.
    7:  *----------------------------------------------------------------------
    8:  *
    9:  *    Released by T-Engine Forum(http://www.t-engine.org/) at 2011/05/17.
   10:  *    Modified by TRON Forum(http://www.tron.org/) at 2015/06/01.
   11:  *
   12:  *----------------------------------------------------------------------
   13:  */
   14: 
   15: /*
   16:  *      help.h
   17:  *
   18:  *       help message definitions
   19:  */
   20: 
   21: /*
   22:  * help message definitions
   23:  */
   24: typedef struct help     HELP;
   25: struct help {
   26:         void (*prfn)( const HELP* );   /* display function */
   27:         const UB       *msg;         /* message */
   28: };
   29: 
   30: /*
   31:  * display help message
   32:  */
   33: IMPORT void printHelp( const HELP *help );
   34: 
   35: /*
   36:  * help message data
   37:  */
   38: IMPORT  const HELP       helpALL;
   39: IMPORT  const HELP       helpD, helpDB, helpDH, helpDW;
   40: IMPORT  const HELP       helpM, helpMB, helpMH, helpMW;
   41: IMPORT  const HELP       helpF, helpFB, helpFH, helpFW;
   42: IMPORT  const HELP       helpSC, helpSCB, helpSCH, helpSCW;
   43: IMPORT  const HELP       helpCMP, helpMOV;
   44: IMPORT  const HELP       helpIB, helpIH, helpIW;
   45: IMPORT  const HELP       helpOB, helpOH, helpOW;
   46: IMPORT  const HELP       helpDA, helpR, helpB, helpBC;
   47: IMPORT  const HELP       helpG, helpS, helpN, helpBTR, helpLO;
   48: IMPORT  const HELP       helpRD, helpWD, helpID, helpBD;
   49: IMPORT  const HELP       helpKILL, helpWROM, helpFLLO;
   50: IMPORT  const HELP       helpH, helpEX;