Ricompilazione Demo : [ ] Commento : Riportata la versione 3.1 patch 855 git-svn-id: svn://10.65.10.50/trunk@15071 c028cbd2-c16b-5b4b-a496-9718f37d4682
23 lines
633 B
C
Executable File
23 lines
633 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);
|
|
|
|
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);
|
|
|
|
#endif
|