Subversion Repositories ipe_artfile_utils

Rev

Blame | Last modification | View Log | RSS feed

  1. /**
  2.  * ART file unpacker by Daniel Marschall, ViaThinkSoft (C) 2014-2018
  3.  * Supports:
  4.  * - Where's Waldo? Exploring Geography
  5.  * - Eraser Turnabout by Imagination Pilots
  6.  * - Virtual K'Nex by Imagination Pilots
  7.  * Revision: 2018-02-15
  8.  **/
  9.  
  10. #ifndef __inc__ipe_artfile_unpacker_ipe32
  11. #define __inc__ipe_artfile_unpacker_ipe32
  12.  
  13. #include <stdio.h>
  14. #include <stdbool.h>
  15.  
  16. bool ipe32_extract_art_to_folder(FILE* fibArt, const char* szDestFolder, const int verbosity);
  17.  
  18. #endif // #ifndef __inc__ipe_artfile_packer_ipe32
  19.