Add support for marshalling GameState + packed values
[tennix.git] / util.h
blob048708c5dfb51826fef7ad0a9eb9425d78e91886
2 /**
4 * Tennix! SDL Port
5 * Copyright (C) 2003, 2007, 2008, 2009 Thomas Perl <thp@thpinfo.com>
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
20 * MA 02110-1301, USA.
22 **/
24 #ifndef __UTIL_H
25 #define __UTIL_H
27 void day_night(unsigned int width, unsigned int* start, unsigned int* end);
29 /**
30 * On Maemo, we somehow don't get these defined in any of the header files,
31 * so we define the prototypes here - if we don't do that, bad things will
32 * happen.
33 **/
34 #ifdef MAEMO
35 float fminf(float, float);
36 float fmaxf(float, float);
37 float fabsf(float);
38 float sinf(float);
39 float cosf(float);
40 #endif
43 #endif