Changeset 105755 in vbox
- Timestamp:
- Aug 21, 2024 11:04:24 AM (5 weeks ago)
- Location:
- trunk/include/iprt
- Files:
-
- 2 edited
-
script.h (modified) (8 diffs)
-
scriptbase.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/script.h
r105752 r105755 71 71 typedef enum RTSCRIPTLEXTOKTYPE 72 72 { 73 /** Invalid type. .*/73 /** Invalid type. */ 74 74 RTSCRIPTLEXTOKTYPE_INVALID = 0, 75 /** Identifier */75 /** Identifier. */ 76 76 RTSCRIPTLEXTOKTYPE_IDENTIFIER, 77 77 /** Numerical constant. */ … … 184 184 struct 185 185 { 186 /** Pointer to the operator descriptor. .*/186 /** Pointer to the operator descriptor. */ 187 187 PCRTSCRIPTLEXTOKMATCH pOp; 188 188 } Operator; … … 328 328 * Lexer destructor callback. 329 329 * 330 * @returns nothing.331 330 * @param hScriptLex The lexer handle. 332 331 * @param pvUser Opaque user data passed when creating the lexer. … … 405 404 * Destroys the given lexer handle. 406 405 * 407 * @returns nothing.408 406 * @param hScriptLex The lexer handle to destroy. 409 407 */ … … 519 517 * Skips everything declared as whitespace, including comments and newlines. 520 518 * 521 * @returns nothing.522 519 * @param hScriptLex The lexer handle. 523 520 */ … … 548 545 * @param hScriptLex The lexer handle. 549 546 * @param ch The first character of the identifier. 550 * @param pTok enThe token to fill in.547 * @param pTok The token to fill in. 551 548 * @param pvUser Opaque user data, must point to the allowed set of characters for identifiers as a 552 549 * zero terminated string. NULL will revert to a default set of characters including … … 566 563 * @param hScriptLex The lexer handle. 567 564 * @param ch The character starting the rule, unused. 568 * @param pTok enThe token to fill in.565 * @param pTok The token to fill in. 569 566 * @param pvUser Opaque user data, unused. 570 567 * … … 583 580 * @param hScriptLex The lexer handle. 584 581 * @param ch The character starting the rule, unused. 585 * @param pTok enThe token to fill in.582 * @param pTok The token to fill in. 586 583 * @param pvUser Opaque user data, unused. 587 584 * -
trunk/include/iprt/scriptbase.h
r105746 r105755 114 114 #endif 115 115 116 /** @} */117 116 118 117 RT_C_DECLS_END
Note:
See TracChangeset
for help on using the changeset viewer.

