RTL_ADDRESS_OF - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _PHNT_WINDOWS_H
#ifdef __cplusplus

#define RTL_ADDRESS_OF(v) (&const_cast<char&>(reinterpret_cast<const volatile char&>(v))) // _ADDRESSOF() macro

#endif
#endif

View code on GitHub
#ifndef _PHNT_WINDOWS_H
#ifdef __cplusplus
// ...
#else

#define RTL_ADDRESS_OF(v) (&(v))

#endif
#endif

View code on GitHub

No description available.