- Build cdfs, ntfs, vfatfs with PCH
[reactos.git] / reactos / include / fslib / vfatlib.h
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS VFAT filesystem library
4 * FILE: include/fslib/vfatlib.h
5 * PURPOSE: Public definitions for vfat filesystem library
6 */
7 #ifndef __VFATLIB_H
8 #define __VFATLIB_H
9
10 #include <fmifs/fmifs.h>
11
12 NTSTATUS
13 VfatInitialize (VOID);
14
15 NTSTATUS
16 VfatCleanup (VOID);
17
18 NTSTATUS
19 VfatFormat (PUNICODE_STRING DriveRoot,
20 ULONG MediaFlag,
21 PUNICODE_STRING Label,
22 BOOLEAN QuickFormat,
23 ULONG ClusterSize,
24 PFMIFSCALLBACK Callback);
25
26 #endif /*__VFATLIB_H */