Changeset 93173 in vbox
- Timestamp:
- Jan 11, 2022 1:07:52 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/misc/expreval.cpp
r93170 r93173 35 35 #include <iprt/assert.h> 36 36 #include <iprt/ctype.h> 37 #include <iprt/err .h>37 #include <iprt/errcore.h> 38 38 #include <iprt/mem.h> 39 39 #include <iprt/path.h> … … 270 270 * @returns status code. 271 271 * @param pThis The evaluator instance. 272 * @param pi SrcWhere to store the numeric value on success.272 * @param piDst Where to store the numeric value on success. 273 273 * @param pszSrc The string to try convert. 274 274 * @param fQuiet Whether we should be quiet or grumpy on failure. … … 1139 1139 * @param pVar1 The first variable. 1140 1140 * @param pVar2 The second variable. 1141 * @param pszOp The operator requesting this (for errors). 1141 1142 */ 1142 1143 static EXPRRET expr_var_unify_types(PEXPR pThis, PEXPRVAR pVar1, PEXPRVAR pVar2, const char *pszOp) … … 2310 2311 * It's on the operand stack. 2311 2312 * 2312 * @param ThisThe evaluator instance.2313 * @param pThis The evaluator instance. 2313 2314 */ 2314 2315 static EXPRRET expr_get_unary_or_operand(PEXPR pThis) … … 2558 2559 *********************************************************************************************************************************/ 2559 2560 2560 /** @callback_method_impl{ FNRTEXPREVALQUERYVARIABLE, Stub} */2561 /** @callback_method_impl{PFNRTEXPREVALQUERYVARIABLE, Stub} */ 2561 2562 static DECLCALLBACK(int) rtExprEvalDummyQueryVariable(const char *pchName, size_t cchName, void *pvUser, char **ppszValue) 2562 2563 {
Note:
See TracChangeset
for help on using the changeset viewer.