Rev 1702 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 1702 | Rev 1780 | ||
---|---|---|---|
Line 52... | Line 52... | ||
52 | /** Structure representing one argument of kconsole command line. */ |
52 | /** Structure representing one argument of kconsole command line. */ |
53 | struct cmd_arg { |
53 | struct cmd_arg { |
54 | cmd_arg_type_t type; /**< Type descriptor. */ |
54 | cmd_arg_type_t type; /**< Type descriptor. */ |
55 | void *buffer; /**< Buffer where to store data. */ |
55 | void *buffer; /**< Buffer where to store data. */ |
56 | size_t len; /**< Size of the buffer. */ |
56 | size_t len; /**< Size of the buffer. */ |
57 | __native intval; /**< Integer value */ |
57 | unative_t intval; /**< Integer value */ |
58 | cmd_arg_type_t vartype; /**< Resulting type of variable arg */ |
58 | cmd_arg_type_t vartype; /**< Resulting type of variable arg */ |
59 | }; |
59 | }; |
60 | 60 | ||
61 | /** Structure representing one kconsole command. */ |
61 | /** Structure representing one kconsole command. */ |
62 | struct cmd_info { |
62 | struct cmd_info { |