2002-02-28 14:26:23 +00:00
|
|
|
#ifndef __AGASYS_H__
|
|
|
|
#define __AGASYS_H__
|
|
|
|
|
2003-04-30 15:43:51 +00:00
|
|
|
#ifdef WIN32
|
|
|
|
#if XVAGADLL == 1
|
|
|
|
#define XVTDLL __declspec(dllexport)
|
|
|
|
#else
|
|
|
|
#define XVTDLL __declspec(dllimport)
|
|
|
|
#endif
|
|
|
|
#else
|
2003-05-22 15:25:25 +00:00
|
|
|
#define XVTDLL
|
2003-04-30 15:43:51 +00:00
|
|
|
#endif
|
2002-02-28 14:26:23 +00:00
|
|
|
|
2003-04-30 15:43:51 +00:00
|
|
|
XVTDLL bool aga_unzip(const char* zipfile, const char* destdir);
|
|
|
|
XVTDLL bool aga_zip(const char* zipmask, const char* zipfile);
|
|
|
|
XVTDLL bool aga_zip_filelist(const char* filelist, const char* zipfile);
|
2002-05-27 13:01:14 +00:00
|
|
|
|
2002-02-28 14:26:23 +00:00
|
|
|
#endif
|