mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-08 07:55:35 +00:00
Some functions added
This commit is contained in:
parent
62c8f2ac34
commit
6c40dc0631
6 changed files with 474 additions and 43 deletions
|
|
@ -4,6 +4,47 @@
|
|||
|
||||
extern psv_log_base sceAudio;
|
||||
|
||||
s32 sceAudioOutOpenPort(s32 portType, s32 len, s32 freq, s32 param)
|
||||
{
|
||||
throw __FUNCTION__;
|
||||
}
|
||||
|
||||
s32 sceAudioOutReleasePort(s32 port)
|
||||
{
|
||||
throw __FUNCTION__;
|
||||
}
|
||||
|
||||
s32 sceAudioOutOutput(s32 port, vm::psv::ptr<void> ptr)
|
||||
{
|
||||
throw __FUNCTION__;
|
||||
}
|
||||
|
||||
s32 sceAudioOutSetVolume(s32 port, s32 flag, vm::psv::ptr<s32> vol)
|
||||
{
|
||||
throw __FUNCTION__;
|
||||
}
|
||||
|
||||
s32 sceAudioOutSetConfig(s32 port, s32 len, s32 freq, s32 param)
|
||||
{
|
||||
throw __FUNCTION__;
|
||||
}
|
||||
|
||||
s32 sceAudioOutGetConfig(s32 port, s32 configType)
|
||||
{
|
||||
throw __FUNCTION__;
|
||||
}
|
||||
|
||||
s32 sceAudioOutGetRestSample(s32 port)
|
||||
{
|
||||
throw __FUNCTION__;
|
||||
}
|
||||
|
||||
s32 sceAudioOutGetAdopt(s32 portType)
|
||||
{
|
||||
throw __FUNCTION__;
|
||||
}
|
||||
|
||||
|
||||
#define REG_FUNC(nid, name) reg_psv_func(nid, &sceAudio, #name, name)
|
||||
|
||||
psv_log_base sceAudio("SceAudio", []()
|
||||
|
|
@ -12,13 +53,13 @@ psv_log_base sceAudio("SceAudio", []()
|
|||
sceAudio.on_unload = nullptr;
|
||||
sceAudio.on_stop = nullptr;
|
||||
|
||||
//REG_FUNC(0x5BC341E4, sceAudioOutOpenPort);
|
||||
//REG_FUNC(0x69E2E6B5, sceAudioOutReleasePort);
|
||||
//REG_FUNC(0x02DB3F5F, sceAudioOutOutput);
|
||||
//REG_FUNC(0x64167F11, sceAudioOutSetVolume);
|
||||
//REG_FUNC(0xB8BA0D07, sceAudioOutSetConfig);
|
||||
//REG_FUNC(0x9C8EDAEA, sceAudioOutGetConfig);
|
||||
//REG_FUNC(0x9A5370C4, sceAudioOutGetRestSample);
|
||||
//REG_FUNC(0x12FB1767, sceAudioOutGetAdopt);
|
||||
REG_FUNC(0x5BC341E4, sceAudioOutOpenPort);
|
||||
REG_FUNC(0x69E2E6B5, sceAudioOutReleasePort);
|
||||
REG_FUNC(0x02DB3F5F, sceAudioOutOutput);
|
||||
REG_FUNC(0x64167F11, sceAudioOutSetVolume);
|
||||
REG_FUNC(0xB8BA0D07, sceAudioOutSetConfig);
|
||||
REG_FUNC(0x9C8EDAEA, sceAudioOutGetConfig);
|
||||
REG_FUNC(0x9A5370C4, sceAudioOutGetRestSample);
|
||||
REG_FUNC(0x12FB1767, sceAudioOutGetAdopt);
|
||||
//REG_FUNC(0xC6D8D775, sceAudioInRaw);
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue