Some fixes

This commit is contained in:
Nekotekina 2015-07-01 20:09:26 +03:00
parent 3aefa2b4e1
commit 6f1e76198a
98 changed files with 2326 additions and 2348 deletions

View file

@ -6,87 +6,87 @@
s32 sceVoiceQoSInit()
{
throw __FUNCTION__;
throw EXCEPTION("");
}
s32 sceVoiceQoSEnd()
{
throw __FUNCTION__;
throw EXCEPTION("");
}
s32 sceVoiceQoSCreateLocalEndpoint(vm::ptr<s32> pLocalId)
{
throw __FUNCTION__;
throw EXCEPTION("");
}
s32 sceVoiceQoSDeleteLocalEndpoint(s32 localId)
{
throw __FUNCTION__;
throw EXCEPTION("");
}
s32 sceVoiceQoSCreateRemoteEndpoint(vm::ptr<s32> pRemoteId)
{
throw __FUNCTION__;
throw EXCEPTION("");
}
s32 sceVoiceQoSDeleteRemoteEndpoint(s32 remoteId)
{
throw __FUNCTION__;
throw EXCEPTION("");
}
s32 sceVoiceQoSConnect(vm::ptr<s32> pConnectionId, s32 localId, s32 remoteId)
{
throw __FUNCTION__;
throw EXCEPTION("");
}
s32 sceVoiceQoSDisconnect(s32 connectionId)
{
throw __FUNCTION__;
throw EXCEPTION("");
}
s32 sceVoiceQoSGetLocalEndpoint(s32 connectionId, vm::ptr<s32> pLocalId)
{
throw __FUNCTION__;
throw EXCEPTION("");
}
s32 sceVoiceQoSGetRemoteEndpoint(s32 connectionId, vm::ptr<s32> pRemoteId)
{
throw __FUNCTION__;
throw EXCEPTION("");
}
s32 sceVoiceQoSSetLocalEndpointAttribute(s32 localId, SceVoiceQoSAttributeId attributeId, vm::cptr<void> pAttributeValue, s32 attributeSize)
{
throw __FUNCTION__;
throw EXCEPTION("");
}
s32 sceVoiceQoSGetLocalEndpointAttribute(s32 localId, SceVoiceQoSAttributeId attributeId, vm::ptr<void> pAttributeValue, s32 attributeSize)
{
throw __FUNCTION__;
throw EXCEPTION("");
}
s32 sceVoiceQoSSetConnectionAttribute(s32 connectionId, SceVoiceQoSAttributeId attributeId, vm::cptr<void> pAttributeValue, s32 attributeSize)
{
throw __FUNCTION__;
throw EXCEPTION("");
}
s32 sceVoiceQoSGetConnectionAttribute(s32 connectionId, SceVoiceQoSAttributeId attributeId, vm::ptr<void> pAttributeValue, s32 attributeSize)
{
throw __FUNCTION__;
throw EXCEPTION("");
}
s32 sceVoiceQoSGetStatus(s32 connectionId, SceVoiceQoSStatusId statusId, vm::ptr<void> pStatusValue, s32 statusSize)
{
throw __FUNCTION__;
throw EXCEPTION("");
}
s32 sceVoiceQoSWritePacket(s32 connectionId, vm::cptr<void> pData, vm::ptr<u32> pSize)
{
throw __FUNCTION__;
throw EXCEPTION("");
}
s32 sceVoiceQoSReadPacket(s32 connectionId, vm::ptr<void> pData, vm::ptr<u32> pSize)
{
throw __FUNCTION__;
throw EXCEPTION("");
}