Implemented stripped down SEH functionality
[reactos.git] / lib / fmifs / format.c
1 /* $Id$
2  *
3  * COPYING:     See the top level directory
4  * PROJECT:     ReactOS 
5  * FILE:        reactos/lib/fmifs/format.c
6  * DESCRIPTION: File management IFS utility functions
7  * PROGRAMMER:  Emanuele Aliberti
8  * UPDATED
9  *      1999-02-16 (Emanuele Aliberti)
10  *              Entry points added.
11  */
12 #define UNICODE
13 #define _UNICODE
14 #include <windows.h>
15 #include <fmifs.h>
16
17 /* FMIFS.6 */
18 VOID
19 __stdcall
20 Format(VOID)
21 {
22 }
23
24
25 /* FMIFS.7 */
26 VOID
27 __stdcall
28 FormatEx(
29         PWCHAR          DriveRoot,
30         DWORD           MediaFlag,
31         PWCHAR          Format,
32         PWCHAR          Label,
33         BOOL            QuickFormat,
34         DWORD           ClusterSize,
35         PFMIFSCALLBACK  Callback
36         )
37 {
38         BOOL    Argument = FALSE;
39
40         /* FAIL immediately */
41         Callback(
42                 DONE,           /* Command */
43                 0,              /* DWORD Modifier */
44                 & Argument      /* Argument */
45                 );
46 }
47
48
49 /* EOF */