Bernd Buschinski : ntdll: Stub implementation of FSCTL_LOCK_VOLUME/ FSCTL_UNLOCK_VOLUME.

Alexandre Julliard julliard at wine.codeweavers.com
Wed May 10 12:57:07 CDT 2006


Module: wine
Branch: refs/heads/master
Commit: da6031fbabf37c2e58c274e7503f86f75e4b6615
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=da6031fbabf37c2e58c274e7503f86f75e4b6615

Author: Bernd Buschinski <b.buschinski at web.de>
Date:   Tue May  9 22:55:38 2006 +0200

ntdll: Stub implementation of FSCTL_LOCK_VOLUME/FSCTL_UNLOCK_VOLUME.

---

 dlls/ntdll/file.c |    7 +++++++
 1 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/dlls/ntdll/file.c b/dlls/ntdll/file.c
index bbeb27f..a1ab4e8 100644
--- a/dlls/ntdll/file.c
+++ b/dlls/ntdll/file.c
@@ -1029,6 +1029,13 @@ NTSTATUS WINAPI NtFsControlFile(HANDLE h
         SERVER_END_REQ;
         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:
         FIXME("Unsupported fsctl %lx (device=%lx access=%lx func=%lx method=%lx)\n",
               code, code >> 16, (code >> 14) & 3, (code >> 2) & 0xfff, code & 3);




More information about the wine-cvs mailing list