NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

PTR Operator

Use type casts or the BY, WO, and DW operators with the address-of operator (&) to replace the assembly-language PTR operator.

MASM expression Debugger expression
BYTE PTR Var BY &Var
*(unsigned char*) &Var
WORD PTR Var WO &Var
DWORD PTR Var DW &Var
*(unsigned long*) &Var

See Also

Assembly-Language Expressions