// wdbgexts.h
PWINDBG_GET_EXPRESSION PwindbgGetExpression;
ULONG_PTR PwindbgGetExpression(
[in] PCSTR lpExpression
)
{...}
View the official Windows Driver Kit DDI referenceNo description available.
The PWINDBG_GET_EXPRESSION (GetExpression) function returns the value of expression. The expression is evaluated using the current expression evaluator, and can contain aliases.
lpExpression [in]Specifies the expression to evaluate.
The value of the expression passed to GetExpression
The expression is evaluated by the current expression evaluator (either the MASM or C++ expression evaluator); see Numerical Expression Syntax for details. Aliases will be properly understood; see Using Aliases for details.
If KDEXT_64BIT is defined, this function returns a value of type ULONG64. Otherwise, it returns a value of type ULONG.