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
|
|
|
|
2007-03-16 13:33:09 +00:00
|
|
|
XVTDLL unsigned long aga_dde_connect(const char* host, const char* service, const char* topic);
|
|
|
|
XVTDLL bool aga_dde_execute(unsigned long connection, const char* command);
|
|
|
|
XVTDLL bool aga_dde_terminate(unsigned long connection);
|
|
|
|
|
2002-02-28 14:26:23 +00:00
|
|
|
#endif
|