• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  *   Copyright 2011-2012 Paulo Alcantara <pcacjr@zytor.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, btrfs, xfs and ufs1/2 */
16 enum filesystem {
17     NONE,
18     EXT2,
19     BTRFS,
20     VFAT,
21     NTFS,
22     XFS,
23     UFS1,
24     UFS2,
25 };
26 
27 extern int fs_type;
28 
29 #endif /* _SYSLXFS_H_ */
30