X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=mware%2Fparser.h;h=22cff8b852b38e387675359eb71c428570120781;hb=4bf15025c3fe95a226686b793e39a44f5f08d7da;hp=9ad6567d74db8d9c6bed625886714ad1b8714402;hpb=304ab6d368e046801f9c6bab326bbb27f78cb875;p=bertos.git diff --git a/mware/parser.h b/mware/parser.h index 9ad6567d..22cff8b8 100755 --- a/mware/parser.h +++ b/mware/parser.h @@ -14,6 +14,9 @@ /*#* *#* $Log$ + *#* Revision 1.3 2006/07/19 12:56:28 bernie + *#* Convert to new Doxygen style. + *#* *#* Revision 1.2 2006/06/12 21:37:02 marco *#* implemented some commands (ver and sleep) *#* @@ -35,10 +38,10 @@ */ typedef enum { - RC_ERROR = -1, //!< Reply with error. - RC_OK = 0, //!< No reply (ignore reply arguments). - RC_REPLY = 1, //!< Reply command arguments. - RC_SKIP = 2 //!< Skip following commands + RC_ERROR = -1, ///< Reply with error. + RC_OK = 0, ///< No reply (ignore reply arguments). + RC_REPLY = 1, ///< Reply command arguments. + RC_SKIP = 2 ///< Skip following commands } ResultCode; /** union that contains parameters passed to and from commands */ @@ -108,7 +111,7 @@ const char* parser_rl_match(void* dummy, const char* word, int word_len); bool parser_process_line(const char* line); -/*! +/** * Execute a command with its arguments, and fetch its results. * * \param templ Template of the command to be executed