NT_ASSERTMSGW_ASSUME - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _PHNT_NTDEF_H
#ifndef _NTDEF_
#ifdef _DEBUG
#ifdef NT_ASSERTMSGW_ASSUME

#define NT_ASSERTMSGW_ASSUME(_msg, _exp) \
    (NT_ANALYSIS_ASSUME(_exp), NT_ASSERTMSGW_ACTION(_msg, _exp))

#endif
#endif
#endif
#endif

View code on GitHub
#ifndef _PHNT_NTDEF_H
#ifndef _NTDEF_
#ifdef _DEBUG
// ...
#else // _DEBUG
#ifndef NT_ASSERTMSGW_ASSUME

#define NT_ASSERTMSGW_ASSUME(_msg, _exp) (NT_ANALYSIS_ASSUME(_exp), 0)

#endif
#endif
#endif
#endif

View code on GitHub

NtDoc

No description available.