You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Voyager/Voyager 1/TheGoldenRecord.h

17 lines
365 B

#pragma once
#include "Utils.h"
extern unsigned char GoldenRecord[3072];
#pragma pack(push, 1)
typedef struct _VOYAGER_DATA_T
{
VOID* VmExitHandler;
UINT64 HypervModuleBase;
UINT64 HypervModuleSize;
UINT64 ModuleBase;
UINT64 ModuleSize;
} _VOYAGER_DATA, * PVOYAGER_DATA_T;
#pragma pack(pop)
UINT32 GetGoldenRecordSize(VOID);
VOID* GetGoldenRecordEntry(VOID);