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 16-bit games (IPE16)
3
 * - Blown Away - The Interactive Game by Imagination Pilots (BA)
4
 * - Panic in the Park - The Interactive Game by Imagination Pilots (PiP)
5
 * - Where's Waldo? At the Circus (Waldo1)
6
 * ART file packer and unpacker by Daniel Marschall, ViaThinkSoft (C) 2014-2018
7
 * Revision: 2018-02-15
8
 **/
9
 
10
#ifndef __inc__ipe16_bmpexport
11
#define __inc__ipe16_bmpexport
12
 
13
#include <stdio.h>
14
#include <stdint.h>
15
#include <stdlib.h>
16
 
17
#include "bitmap.h"
18
#include "ipe16_artfile.h"
19
 
20
void ipe16_write_bmp(FILE* output, unsigned int width, unsigned int height, unsigned char* imagedata, size_t imagedata_len, Ipe16ColorTable ct);
21
 
22
#endif // #ifndef __inc__ipe16_bmpexport
23