OpenTTD Source  20240917-master-g9ab0a47812
endian_type.hpp
Go to the documentation of this file.
1 /*
2  * This file is part of OpenTTD.
3  * 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.
4  * 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.
5  * 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/>.
6  */
7 
10 #ifndef ENDIAN_TYPE_HPP
11 #define ENDIAN_TYPE_HPP
12 
14 #define TTD_LITTLE_ENDIAN 0
15 
16 #define TTD_BIG_ENDIAN 1
17 
18 #if !defined(TTD_ENDIAN)
19 # error "TTD_ENDIAN is not defined; please set it to either TTD_LITTLE_ENDIAN or TTD_BIG_ENDIAN"
20 #endif /* !TTD_ENDIAN */
21 
22 #endif /* ENDIAN_TYPE_HPP */