mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
13 lines
227 B
C
13 lines
227 B
C
#pragma once
|
|
|
|
struct ScePhotoExportParam
|
|
{
|
|
le_t<u32> version;
|
|
vm::lcptr<char> photoTitle;
|
|
vm::lcptr<char> gameTitle;
|
|
vm::lcptr<char> gameComment;
|
|
char reserved[32];
|
|
};
|
|
|
|
using ScePhotoExportCancelFunc = s32(vm::ptr<void>);
|