Glide Plugin GLES2 port from mupen64plus-ae, but with special FrameSkip code
[mupen64plus-pandora.git] / source / gles2glide64 / src / GlideHQ / tc-1.1+ / types.h
1 /*
2  * Texture compression
3  * Version:  1.0
4  *
5  * Copyright (C) 2004  Daniel Borca   All Rights Reserved.
6  *
7  * this is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2, or (at your option)
10  * any later version.
11  *
12  * this 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.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with GNU Make; see the file COPYING.  If not, write to
19  * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.        
20  */
21
22 #ifndef TYPES_H_included
23 #define TYPES_H_included
24
25 /*****************************************************************************\
26  * 32bit types
27 \*****************************************************************************/
28 typedef unsigned char byte;     /*  8-bit */
29 typedef unsigned short word;    /* 16-bit */
30 typedef unsigned int dword;     /* 32-bit */
31
32 #endif