// wdbgexts.h
BOOL GetExpressionEx(
PCSTR Expression,
ULONG64 *Value,
PCSTR *Remainder
);
View the official Windows Driver Kit DDI referenceNo description available.
The GetExpressionEx function evaluates an expression. The expression is evaluated using the MASM evaluator, and can contain aliases.
ExpressionSpecifies the expression to evaluate. The expression uses the MASM syntax. For details of this syntax, see MASM Numbers and Operators.
ValueReceives the value of the expression.
RemainderReceives a pointer to the first character in the expression Expression that was not used in the evaluation of the expression.
GetExpressionEx returns one of the following values:
| Return code | Description |
|---|---|
| TRUE | The expression was evaluated successfully. |
| FALSE | An error occurred while attempting to evaluate the expression. |