|
Revision b0ac906b283b428ba1c7f35fe1e71a84b3d3d9c6, 0.7 KB
(checked in by Paulo Alcantara <pcacjr@…>, 8 months ago)
|
|
Add NTFS filesystem support to Linux and Windows installers
Signed-off-by: Paulo Alcantara <pcacjr@…>
|
-
Property mode set to
100644
|
| Line | |
|---|
| 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_ */ |
|---|