Files correlati : xvagaa.dll Ricompilazione Demo : [ ] Commento : Modifiche per Linux git-svn-id: svn://10.65.10.50/trunk@11172 c028cbd2-c16b-5b4b-a496-9718f37d4682
19 lines
403 B
C
Executable File
19 lines
403 B
C
Executable File
#ifndef __AGASYS_H__
|
|
#define __AGASYS_H__
|
|
|
|
#ifdef WIN32
|
|
#if XVAGADLL == 1
|
|
#define XVTDLL __declspec(dllexport)
|
|
#else
|
|
#define XVTDLL __declspec(dllimport)
|
|
#endif
|
|
#else
|
|
#define XVTDLL
|
|
#endif
|
|
|
|
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);
|
|
|
|
#endif
|