WFSI: Implement noop ioctl 0x8f.

This commit is contained in:
Léo Lam 2017-08-18 01:46:21 +02:00
parent 70cb0cb126
commit 344228ec10
2 changed files with 5 additions and 0 deletions

View File

@ -429,6 +429,9 @@ IPCCommandResult WFSI::IOCtl(const IOCtlRequest& request)
break;
}
case IOCTL_WFSI_NOOP:
break;
case IOCTL_WFSI_LOAD_DOL:
{
std::string path =

View File

@ -116,6 +116,8 @@ private:
IOCTL_WFSI_SET_FST_BUFFER = 0x8e,
IOCTL_WFSI_NOOP = 0x8f,
IOCTL_WFSI_LOAD_DOL = 0x90,
IOCTL_WFSI_FINALIZE_PATCH_INSTALL = 0x91,