IMAGE_RELOCATION_RECORD - NtDoc

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

/**
 * The IMAGE_RELOCATION_RECORD structure represents a relocation record.
 */
typedef struct _IMAGE_RELOCATION_RECORD
{
    USHORT Offset : 12;
    USHORT Type : 4;
} IMAGE_RELOCATION_RECORD, *PIMAGE_RELOCATION_RECORD;

#endif

View code on GitHub

NtDoc

No description available.