ntdll: Stub implementation of FSCTL_LOCK_VOLUME/FSCTL_UNLOCK_VOLUME.

This commit is contained in:
Bernd Buschinski 2006-05-09 22:55:38 +02:00 committed by Alexandre Julliard
parent 86a32784e2
commit da6031fbab
1 changed files with 7 additions and 0 deletions

View File

@ -1029,6 +1029,13 @@ NTSTATUS WINAPI NtFsControlFile(HANDLE handle, HANDLE event, PIO_APC_ROUTINE apc
SERVER_END_REQ; SERVER_END_REQ;
break; break;
case FSCTL_LOCK_VOLUME:
case FSCTL_UNLOCK_VOLUME:
FIXME("stub! return success - Unsupported fsctl %lx (device=%lx access=%lx func=%lx method=%lx)\n",
code, code >> 16, (code >> 14) & 3, (code >> 2) & 0xfff, code & 3);
io->u.Status = STATUS_SUCCESS;
break;
default: default:
FIXME("Unsupported fsctl %lx (device=%lx access=%lx func=%lx method=%lx)\n", FIXME("Unsupported fsctl %lx (device=%lx access=%lx func=%lx method=%lx)\n",
code, code >> 16, (code >> 14) & 3, (code >> 2) & 0xfff, code & 3); code, code >> 16, (code >> 14) & 3, (code >> 2) & 0xfff, code & 3);