mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
16 lines
251 B
C++
16 lines
251 B
C++
#pragma once
|
|
|
|
#include "ModuleSegment.hpp"
|
|
|
|
#include "orbis-config.hpp"
|
|
|
|
namespace orbis {
|
|
struct ModuleInfo {
|
|
uint64_t size;
|
|
char name[256];
|
|
ModuleSegment segments[4];
|
|
uint32_t segmentCount;
|
|
uint8_t fingerprint[20];
|
|
};
|
|
} // namespace orbis
|