Subversion Repositories ipe_artfile_utils

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 daniel-mar 1
/**
2
 * Bitmap Export for Imagination Pilots Entertainment 32-bit games (IPE32)
3
 * - Where's Waldo? Exploring Geography
4
 * - Eraser Turnabout by Imagination Pilots
5
 * - Virtual K'Nex by Imagination Pilots
6
 * ART file packer and unpacker by Daniel Marschall, ViaThinkSoft (C) 2014-2018
7
 * Revision: 2018-02-15
8
 **/
9
 
10
#ifndef __inc__ipe32_bmpexport
11
#define __inc__ipe32_bmpexport
12
 
13
#include <stdio.h>
14
#include <stdint.h>
15
#include <stdlib.h>
16
 
17
void ipe32_write_bmp(FILE* output, unsigned char* imagedata, size_t imagedata_len);
18
 
19
#endif // #ifndef __inc__ipe32_bmpexport
20