diff options
author | Jonathan Gray | 2002-12-02 02:45:07 +0000 |
---|---|---|
committer | Jonathan Gray | 2002-12-02 02:45:07 +0000 |
commit | 2961f75365e216e413ed73030ce213eba50c80a5 (patch) | |
tree | 6e033a362811d45eb00e6205e4fc2ab00d8d04c2 /backends/gp32/h/defines.h | |
parent | f4e438b4ce3cb10df531d3b60345c1cb046efeef (diff) | |
download | scummvm-rg350-2961f75365e216e413ed73030ce213eba50c80a5.tar.gz scummvm-rg350-2961f75365e216e413ed73030ce213eba50c80a5.tar.bz2 scummvm-rg350-2961f75365e216e413ed73030ce213eba50c80a5.zip |
remove gp32 files until license issues are sorted out
svn-id: r5812
Diffstat (limited to 'backends/gp32/h/defines.h')
-rw-r--r-- | backends/gp32/h/defines.h | 71 |
1 files changed, 0 insertions, 71 deletions
diff --git a/backends/gp32/h/defines.h b/backends/gp32/h/defines.h deleted file mode 100644 index d842bd1908..0000000000 --- a/backends/gp32/h/defines.h +++ /dev/null @@ -1,71 +0,0 @@ -/* defines.h */ - -#ifndef __DEFINES_H__ -#define __DEFINES_H__ - -typedef unsigned char u8; -typedef signed char s8; -typedef unsigned short u16; -typedef short s16; -typedef unsigned int u32; -typedef int s32; - -//#define LITTLE_ENDIAN -/* -typedef union - { -#ifdef LITTLE_ENDIAN - struct - { - u8 low; - u8 high; - } byte; -#else - struct - { - u8 high; - u8 low; - } byte; -#endif - u16 word; - } word; - - -typedef union - { -#ifdef LITTLE_ENDIAN - struct - { - word low; - word high; - } word; -#else - struct - { - word high; - word low; - } word; -#endif - u32 dword; - } dword; - - - - - -#ifndef BOOL -#define BOOL int -#endif -#ifndef TRUE -#define TRUE 1 -#endif -#ifndef FALSE -#define FALSE 0 -#endif - -#ifndef NULL -#define NULL 0 -#endif -*/ -#endif - |