OpenTTD
fileio_type.h
Go to the documentation of this file.
1 /* $Id: fileio_type.h 25975 2013-11-13 19:32:37Z rubidium $ */
2 
3 /*
4  * This file is part of OpenTTD.
5  * OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
6  * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
7  * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
8  */
9 
12 #ifndef FILEIO_TYPE_H
13 #define FILEIO_TYPE_H
14 
15 #include "core/enum_type.hpp"
16 
38 };
39 
43 enum Searchpath {
44  SP_FIRST_DIR,
45  SP_WORKING_DIR = SP_FIRST_DIR,
46 #if defined(WITH_XDG_BASEDIR) && defined(WITH_PERSONAL_DIR)
47  SP_PERSONAL_DIR_XDG,
48 #endif
55  NUM_SEARCHPATHS
56 };
57 
59 
60 #endif /* FILEIO_TYPE_H */