Author: ekohl
Date: Sun Jul  6 16:13:49 2014
New Revision: 63696

URL: http://svn.reactos.org/svn/reactos?rev=63696&view=rev
Log:
[FMIFS]
Add Format prototype.

Modified:
    trunk/reactos/dll/win32/fmifs/fmifs.spec
    trunk/reactos/dll/win32/fmifs/format.c
    trunk/reactos/include/reactos/libs/fmifs/fmifs.h

Modified: trunk/reactos/dll/win32/fmifs/fmifs.spec
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/fmifs/fmifs.spec?rev=63696&r1=63695&r2=63696&view=diff
==============================================================================
--- trunk/reactos/dll/win32/fmifs/fmifs.spec    [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/fmifs/fmifs.spec    [iso-8859-1] Sun Jul  6 
16:13:49 2014
@@ -4,7 +4,7 @@
 @ stdcall DiskCopy()
 @ stdcall EnableVolumeCompression(wstr long)
 @ stdcall Extend()
-@ stdcall Format()
+@ stdcall Format(wstr ptr wstr wstr long ptr)
 @ stdcall FormatEx(wstr ptr wstr wstr long long ptr)
 @ stub FormatEx2
 @ stdcall InitializeFmIfs(ptr long ptr)

Modified: trunk/reactos/dll/win32/fmifs/format.c
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/fmifs/format.c?rev=63696&r1=63695&r2=63696&view=diff
==============================================================================
--- trunk/reactos/dll/win32/fmifs/format.c      [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/fmifs/format.c      [iso-8859-1] Sun Jul  6 
16:13:49 2014
@@ -14,9 +14,14 @@
 #include <debug.h>
 
 /* FMIFS.6 */
-VOID
-NTAPI
-Format(VOID)
+VOID NTAPI
+Format(
+    IN PWCHAR DriveRoot,
+    IN FMIFS_MEDIA_FLAG MediaFlag,
+    IN PWCHAR Format,
+    IN PWCHAR Label,
+    IN BOOLEAN QuickFormat,
+    IN PFMIFSCALLBACK Callback)
 {
 }
 

Modified: trunk/reactos/include/reactos/libs/fmifs/fmifs.h
URL: 
http://svn.reactos.org/svn/reactos/trunk/reactos/include/reactos/libs/fmifs/fmifs.h?rev=63696&r1=63695&r2=63696&view=diff
==============================================================================
--- trunk/reactos/include/reactos/libs/fmifs/fmifs.h    [iso-8859-1] (original)
+++ trunk/reactos/include/reactos/libs/fmifs/fmifs.h    [iso-8859-1] Sun Jul  6 
16:13:49 2014
@@ -133,6 +133,16 @@
 
 /* Format command in FMIFS */
 VOID NTAPI
+Format(
+       IN PWCHAR DriveRoot,
+       IN FMIFS_MEDIA_FLAG MediaFlag,
+       IN PWCHAR Format,
+       IN PWCHAR Label,
+       IN BOOLEAN QuickFormat,
+       IN PFMIFSCALLBACK Callback);
+
+/* FormatEx command in FMIFS */
+VOID NTAPI
 FormatEx(
        IN PWCHAR DriveRoot,
        IN FMIFS_MEDIA_FLAG MediaFlag,


Reply via email to