win: Add -mno-ms-bitfields
[profile/ivi/syslinux.git] / libinstaller / syslxfs.h
1 /*
2  *   Copyright 2011 Paulo Alcantara <pcacjr@gmail.com>
3  *
4  *   This program is free software; you can redistribute it and/or modify
5  *   it under the terms of the GNU General Public License as published by
6  *   the Free Software Foundation, Inc., 53 Temple Place Ste 330,
7  *   Boston MA 02111-1307, USA; either version 2 of the License, or
8  *   (at your option) any later version; incorporated herein by reference.
9  *
10  * ----------------------------------------------------------------------- */
11
12 #ifndef _SYSLXFS_H_
13 #define _SYSLXFS_H_
14
15 /* Global fs_type for handling fat, ntfs, ext2/3/4 and btrfs */
16 enum filesystem {
17     NONE,
18     EXT2,
19     BTRFS,
20     VFAT,
21     NTFS,
22 };
23
24 extern int fs_type;
25
26 #endif /* _SYSLXFS_H_ */