R-PAGE
Resistance's Portable-Adventure-Game-Engine
bitmap.c
Go to the documentation of this file.
1 /* Resistance's Portable-Adventure-Game-Engine (R-PAGE), Copyright (C) 2019 Fran�ois Gutherz, Resistance.no
2  Released under MIT License, see license.txt for details.
3 */
4 
5 #ifdef WIN32
6 /*
7  Misc bitmap routines
8 */
9 
10 // #include "external/tinfl.h"
11 #include "rpage/frwk.h"
12 
13 BOOL load_pak_img_to_bitmap(struct BitMap **bitmap, UWORD **palette, BYTE *packed_block, UBYTE *name)
14 {
15  return TRUE;
16 }
17 
18 #endif
int BOOL
Definition: utils.h:32
unsigned char UBYTE
Definition: utils.h:20
unsigned short UWORD
Definition: utils.h:28
unsigned char BYTE
Definition: utils.h:16
#define TRUE
Definition: utils.h:37