PWINDBG_GET_EXPRESSION - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// wdbgexts.h

PWINDBG_GET_EXPRESSION PwindbgGetExpression;

ULONG_PTR PwindbgGetExpression(
  [in] PCSTR lpExpression
)
{...}
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (nc-wdbgexts-pwindbg_get_expression)

PWINDBG_GET_EXPRESSION callback function

Description

The PWINDBG_GET_EXPRESSION (GetExpression) function returns the value of expression. The expression is evaluated using the current expression evaluator, and can contain aliases.

Parameters

lpExpression [in]

Specifies the expression to evaluate.

Return value

The value of the expression passed to GetExpression

Remarks

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.