mirror of
https://github.com/citra-emu/citra.git
synced 2024-11-23 14:10:10 +00:00
Fixed issues with crashing
This commit is contained in:
parent
1bca92a0f4
commit
e833e47e04
@ -52,31 +52,45 @@ void Enable(Service::Interface* self) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void Finalize(Service::Interface* self) {
|
void Finalize(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void GetAppletManInfo(Service::Interface* self) {
|
void GetAppletManInfo(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void GetAppletInfo(Service::Interface* self) {
|
void GetAppletInfo(Service::Interface* self) {
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void GetLastSignaledAppletId(Service::Interface* self) {
|
void GetLastSignaledAppletId(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void CountRegisteredApplet(Service::Interface* self) {
|
void CountRegisteredApplet(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void IsRegistered(Service::Interface* self) {
|
void IsRegistered(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void GetAttribute(Service::Interface* self) {
|
void GetAttribute(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void InquireNotification(Service::Interface* self) {
|
void InquireNotification(Service::Interface* self) {
|
||||||
@ -88,7 +102,9 @@ void InquireNotification(Service::Interface* self) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void SendParameter(Service::Interface* self) {
|
void SendParameter(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void ReceiveParameter(Service::Interface* self) {
|
void ReceiveParameter(Service::Interface* self) {
|
||||||
@ -106,263 +122,393 @@ void ReceiveParameter(Service::Interface* self) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void GlanceParameter(Service::Interface* self) {
|
void GlanceParameter(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void CancelParameter(Service::Interface* self) {
|
void CancelParameter(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void DebugFunc(Service::Interface* self) {
|
void DebugFunc(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void MapProgramIdForDebug(Service::Interface* self) {
|
void MapProgramIdForDebug(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void SetHomeMenuAppletIdForDebug(Service::Interface* self) {
|
void SetHomeMenuAppletIdForDebug(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void GetPreparationState(Service::Interface* self) {
|
void GetPreparationState(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void SetPreparationState(Service::Interface* self) {
|
void SetPreparationState(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void PrepareToStartApplication(Service::Interface* self) {
|
void PrepareToStartApplication(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void PreloadLibraryApplet(Service::Interface* self) {
|
void PreloadLibraryApplet(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void FinishPreloadingLibraryApplet(Service::Interface* self) {
|
void FinishPreloadingLibraryApplet(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void PrepareToStartLibraryApplet(Service::Interface* self) {
|
void PrepareToStartLibraryApplet(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void PrepareToStartSystemApplet(Service::Interface* self) {
|
void PrepareToStartSystemApplet(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void PrepareToStartNewestHomeMenu(Service::Interface* self) {
|
void PrepareToStartNewestHomeMenu(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void StartApplication(Service::Interface* self) {
|
void StartApplication(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void WakeupApplication(Service::Interface* self) {
|
void WakeupApplication(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void CancelApplication(Service::Interface* self) {
|
void CancelApplication(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void StartLibraryApplet(Service::Interface* self) {
|
void StartLibraryApplet(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void StartSystemApplet(Service::Interface* self) {
|
void StartSystemApplet(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void StartNewestHomeMenu(Service::Interface* self) {
|
void StartNewestHomeMenu(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void OrderToCloseApplication(Service::Interface* self) {
|
void OrderToCloseApplication(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void PrepareToCloseApplication(Service::Interface* self) {
|
void PrepareToCloseApplication(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void PrepareToJumpToApplication(Service::Interface* self) {
|
void PrepareToJumpToApplication(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void JumpToApplication(Service::Interface* self) {
|
void JumpToApplication(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void PrepareToCloseLibraryApplet(Service::Interface* self) {
|
void PrepareToCloseLibraryApplet(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void PrepareToCloseSystemApplet(Service::Interface* self) {
|
void PrepareToCloseSystemApplet(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void CloseApplication(Service::Interface* self) {
|
void CloseApplication(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void CloseLibraryApplet(Service::Interface* self) {
|
void CloseLibraryApplet(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void CloseSystemApplet(Service::Interface* self) {
|
void CloseSystemApplet(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void OrderToCloseSystemApplet(Service::Interface* self) {
|
void OrderToCloseSystemApplet(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void PrepareToJumpToHomeMenu(Service::Interface* self) {
|
void PrepareToJumpToHomeMenu(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void JumpToHomeMenu(Service::Interface* self) {
|
void JumpToHomeMenu(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void PrepareToLeaveHomeMenu(Service::Interface* self) {
|
void PrepareToLeaveHomeMenu(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void LeaveHomeMenu(Service::Interface* self) {
|
void LeaveHomeMenu(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void PrepareToLeaveResidentApplet(Service::Interface* self) {
|
void PrepareToLeaveResidentApplet(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void LeaveResidentApplet(Service::Interface* self) {
|
void LeaveResidentApplet(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void PrepareToDoApplicationJump(Service::Interface* self) {
|
void PrepareToDoApplicationJump(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void DoApplicationJump(Service::Interface* self) {
|
void DoApplicationJump(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void GetProgramIdOnApplicationJump(Service::Interface* self) {
|
void GetProgramIdOnApplicationJump(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void SendDeliverArg(Service::Interface* self) {
|
void SendDeliverArg(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void ReceiveDeliverArg(Service::Interface* self) {
|
void ReceiveDeliverArg(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void LoadSysMenuArg(Service::Interface* self) {
|
void LoadSysMenuArg(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void StoreSysMenuArg(Service::Interface* self) {
|
void StoreSysMenuArg(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void PreloadResidentApplet(Service::Interface* self) {
|
void PreloadResidentApplet(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void PrepareToStartResidentApplet(Service::Interface* self) {
|
void PrepareToStartResidentApplet(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void StartResidentApplet(Service::Interface* self) {
|
void StartResidentApplet(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void CancelLibraryApplet(Service::Interface* self) {
|
void CancelLibraryApplet(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void SendDspSleep(Service::Interface* self) {
|
void SendDspSleep(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void SendDspWakeUp(Service::Interface* self) {
|
void SendDspWakeUp(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void ReplySleepQuery(Service::Interface* self) {
|
void ReplySleepQuery(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void ReplySleepNotificationComplete(Service::Interface* self) {
|
void ReplySleepNotificationComplete(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void SendCaptureBufferInfo(Service::Interface* self) {
|
void SendCaptureBufferInfo(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void ReceiveCaptureBufferInfo(Service::Interface* self) {
|
void ReceiveCaptureBufferInfo(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void SleepSystem(Service::Interface* self) {
|
void SleepSystem(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void NotifyToWait(Service::Interface* self) {
|
void NotifyToWait(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void GetSharedFont(Service::Interface* self) {
|
void GetSharedFont(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void GetWirelessRebootInfo(Service::Interface* self) {
|
void GetWirelessRebootInfo(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void Wrap(Service::Interface* self) {
|
void Wrap(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void Unwrap(Service::Interface* self) {
|
void Unwrap(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void GetProgramInfo(Service::Interface* self) {
|
void GetProgramInfo(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void Reboot(Service::Interface* self) {
|
void Reboot(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void GetCaptureInfo(Service::Interface* self) {
|
void GetCaptureInfo(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void AppletUtility(Service::Interface* self) {
|
void AppletUtility(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void SetFatalErrDispMode(Service::Interface* self) {
|
void SetFatalErrDispMode(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void GetAppletProgramInfo(Service::Interface* self) {
|
void GetAppletProgramInfo(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
void HardwareResetAsync(Service::Interface* self) {
|
void HardwareResetAsync(Service::Interface* self) {
|
||||||
|
u32* cmd_buff = Service::GetCommandBuffer();
|
||||||
ERROR_LOG(KERNEL, "Unimplemented function");
|
ERROR_LOG(KERNEL, "Unimplemented function");
|
||||||
|
cmd_buff[1] = 0; // No error
|
||||||
}
|
}
|
||||||
|
|
||||||
const Interface::FunctionInfo FunctionTable[] = {
|
const Interface::FunctionInfo FunctionTable[] = {
|
||||||
|
Loading…
Reference in New Issue
Block a user