mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-05 16:20:22 +01:00
stub camera and devact ioctls stub sys_cpuset reduce log spam thanks ga2mer for investigation
42 lines
640 B
C++
42 lines
640 B
C++
#pragma once
|
|
|
|
#include "orbis-config.hpp"
|
|
#include <array>
|
|
|
|
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);
|
|
|
|
struct AppInfo2 {
|
|
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;
|
|
slong unk9;
|
|
slong unk10;
|
|
};
|
|
|
|
static_assert(sizeof(AppInfo2) == 88);
|
|
} // namespace orbis
|