STRING64 - NtDoc

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

/**
 * The STRING64 structure is a 64-bit thunked representation of the `STRING` structure.
 *
 * \remarks Used for marshaling between 64-bit and 32-bit contexts.
 */
typedef struct _STRING64
{
    USHORT Length;
    USHORT MaximumLength;
    ULONGLONG Buffer;
} STRING64, *PSTRING64;

#endif
#endif

View code on GitHub

NtDoc

No description available.