mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
15 lines
246 B
C
15 lines
246 B
C
#pragma once
|
|
|
|
using SceSulphaCallback = void(vm::ptr<void> arg);
|
|
|
|
struct SceSulphaConfig
|
|
{
|
|
vm::lptr<SceSulphaCallback> notifyCallback;
|
|
le_t<u32> port;
|
|
le_t<u32> bookmarkCount;
|
|
};
|
|
|
|
struct SceSulphaAgentsRegister;
|
|
|
|
using SceSulphaHandle = void;
|