SIZE_T_MAX - NtDoc

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

#define SIZE_T_MAX 0xffffffffffffffffui64

#endif
#endif
#endif

View code on GitHub
#ifndef _PHNT_WINDOWS_H
#ifndef SIZE_T_MAX
#ifdef _WIN64
// ...
#else

#define SIZE_T_MAX 0xffffffffUL

#endif
#endif
#endif

View code on GitHub

No description available.