rpcsx/orbis-kernel/include/orbis/AppInfo.hpp

30 lines
456 B
C++
Raw Normal View History

2023-10-31 23:58:03 +01:00
#pragma once
#include "orbis-config.hpp"
#include <array>
2023-10-31 23:58:03 +01:00
namespace orbis {
struct AppInfo {
uint32_t appId;
uint32_t unk0;
uint32_t unk1;
uint32_t appType;
char titleId[10];
uint16_t unk2;
uint32_t unk3;
slong unk4;
slong unk5;
slong unk6;
slong unk7;
slong unk8;
};
static_assert(sizeof(AppInfo) == 72);
2024-11-27 12:10:53 +01:00
struct AppInfoEx : AppInfo {
slong unk9;
slong unk10;
};
2024-11-27 12:10:53 +01:00
static_assert(sizeof(AppInfoEx) == 88);
2023-10-31 23:58:03 +01:00
} // namespace orbis