* Load Microsoft RIFF palette files

* Make byte, word, dword, qword typedefs instead of defines.


git-svn-id: svn://pulkomandy.tk/GrafX2/trunk@1954 416bcca6-2ee7-4201-b75f-2eb2f807beb1
This commit is contained in:
Adrien Destugues
2012-05-12 14:05:40 +00:00
parent 235f7d4d1c
commit 2aa9ea7f8e
2 changed files with 51 additions and 15 deletions

View File

@@ -44,13 +44,13 @@
// Definition of the base data types
/// 8bit unsigned integer
#define byte uint8_t
typedef uint8_t byte;
/// 16bit unsigned integer
#define word uint16_t
typedef uint16_t word;
/// 32bit unsigned integer
#define dword uint32_t
typedef uint32_t dword;
/// 64bit unsigned integer
#define qword uint64_t
typedef uint64_t qword;
// Named function prototypes
// GrafX2 use a lot of function pointer to do the drawing depending in the "fake hardware zoom" and the magnifier status.