Subversion Repositories ipe_artfile_utils

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 daniel-mar 1
/**
2
 * ART file unpacker by Daniel Marschall, ViaThinkSoft (C) 2014-2018
3
 * Supports:
4
 * - Blown Away - The Interactive Game by Imagination Pilots
5
 * - Panic in the Park - The Interactive Game by Imagination Pilots
6
 * - Where's Waldo? At the Circus (Waldo1)
7
 * Revision: 2018-02-15
8
 **/
9
 
10
#ifndef __inc__ipe_artfile_packer_ipe16
11
#define __inc__ipe_artfile_packer_ipe16
12
 
13
#include <stdio.h>
14
#include <stdbool.h>
15
 
16
bool ipe16_extract_art_to_folder(FILE* fibArt, const char* szDestFolder, const int verbosity);
17
 
18
#endif // #ifndef __inc__ipe_artfile_packer_ipe16