Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-04-01 08:52:28

0001 typedef enum {                  /*                                         */ __
0002   KmFLAG_FORGET = 0x01,         /* last value is not kept for Motif panels */ __
0003   KmFLAG_MINUS  = 0x02,         /* -VALUE is not an abbrev for CHOPT=VALUE */ __
0004   KmFLAG_QUOTE  = 0x04,         /* do not remove quotes                    */ __
0005   KmFLAG_VARARG = 0x08,         /* append additional args to this param.   */ __
0006   KmFLAG_CONST  = 0x10,         /* do not allow to assign a value          */ __
0007   KmFLAG_HIDDEN = 0x20,         /* do not show in menus                    */ __
0008   KmFLAG_SEPARATE = 0x40        /* treat arguments as separate tokens      */ __
0009 } KmParFlag;                    /*                                         */ __
0010                                 /*                                         */ __
0011 typedef enum {                  /*                                         */ __
0012   KmTYPE_CHAR   = 'C',          /* character string                        */ __
0013   KmTYPE_FILE   = 'F',          /* file name                               */ __
0014   KmTYPE_INT    = 'I',          /* integer                                 */ __
0015   KmTYPE_OPTION = 'O',          /* option                                  */ __
0016   KmTYPE_REAL   = 'R'           /* real                                    */ __
0017 } KmParType;                    /*                                         */ __
0018                                 /*                                         */ __