X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=blobdiff_plain;f=installer%2Farchive.h;h=357f67226f315b1bda80943447e0c71589e7c80f;hp=e69de29bb2d1d6434b8b29ae775ad8c2e48c5391;hb=c63b2bf21dc1df9a736f0b4c08f6cba828cdab92;hpb=fe1bb135fc2ad5be9269d6676d48d00bd6282f70 diff --git a/installer/archive.h b/installer/archive.h index e69de29..357f672 100644 --- a/installer/archive.h +++ b/installer/archive.h @@ -0,0 +1,36 @@ +/* archive.h + + Part of the rfx installer. + + Copyright (c) 2004-2008 Matthias Kramm + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ + +#ifndef __archive_h__ +#define __archive_h__ + +typedef struct _status +{ + void (*message)(char*text); + void (*status)(int pos, int len); + void (*error)(char*text); + void (*new_file)(char*filename); + void (*new_directory)(char*filename); +} status_t; + +int unpack_archive(void*data, int len, char*destdir, status_t* f); + +#endif //__archive_h__ +