MEMORY_ALLOCATION_ALIGNMENT - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _PHNT_NTDEF_H
#ifndef _NTDEF_
#if defined(_WIN64) || defined(_M_ALPHA)

#define MEMORY_ALLOCATION_ALIGNMENT 16

#endif
#endif
#endif

View code on GitHub
#ifndef _PHNT_NTDEF_H
#ifndef _NTDEF_
#if defined(_WIN64) || defined(_M_ALPHA)
// ...
#else

#define MEMORY_ALLOCATION_ALIGNMENT 8

#endif
#endif
#endif

View code on GitHub

No description available.