rpcsx/orbis-kernel/include/orbis/module/ModuleSegment.hpp

12 lines
160 B
C++
Raw Normal View History

2023-07-03 13:10:16 +02:00
#pragma once
#include "orbis-config.hpp"
namespace orbis {
struct ModuleSegment {
ptr<void> addr;
uint32_t size;
uint32_t prot;
};
} // namespace orbis