mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-06 06:55:09 +00:00
12 lines
160 B
C++
12 lines
160 B
C++
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "orbis-config.hpp"
|
||
|
|
|
||
|
|
namespace orbis {
|
||
|
|
struct ModuleSegment {
|
||
|
|
ptr<void> addr;
|
||
|
|
uint32_t size;
|
||
|
|
uint32_t prot;
|
||
|
|
};
|
||
|
|
} // namespace orbis
|