mirror of
https://github.com/revng/revng
synced 2026-06-21 14:07:57 +00:00
22 lines
485 B
C
22 lines
485 B
C
#pragma once
|
|
|
|
/*
|
|
* This file is distributed under the MIT License. See LICENSE.md for details.
|
|
*/
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef struct {
|
|
uint32_t Epoch;
|
|
uint16_t AddressSpace;
|
|
uint16_t Type;
|
|
uint64_t Address;
|
|
} PlainMetaAddress;
|
|
|
|
// NOLINTNEXTLINE
|
|
void set_PlainMetaAddress(PlainMetaAddress *This,
|
|
uint32_t Epoch,
|
|
uint16_t AddressSpace,
|
|
uint16_t Type,
|
|
uint64_t Address);
|