Add Format prototype.

svn path=/trunk/; revision=63696
This commit is contained in:
Eric Kohl 2014-07-06 16:13:49 +00:00
parent 03119a10c1
commit d3be6e62e8
3 changed files with 19 additions and 4 deletions

View file

@ -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)

View file

@ -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)
{
}

View file

@ -133,6 +133,16 @@ EnableVolumeCompression(
/* 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,