mirror of
https://github.com/volatilityfoundation/volatility
synced 2026-06-08 18:04:46 +00:00
14 lines
238 B
C
14 lines
238 B
C
#ifndef _GETKCORE_H
|
|
#define _GETKCORE_H
|
|
|
|
typedef struct {
|
|
unsigned int magic;
|
|
unsigned int version;
|
|
unsigned long long s_addr;
|
|
unsigned long long e_addr;
|
|
unsigned char reserved[8];
|
|
} __attribute__ ((__packed__)) lime_range;
|
|
|
|
|
|
#endif
|