From 2151a81beda46ff47e81f9747faffd3cc28848f5 Mon Sep 17 00:00:00 2001 From: Patrick Mast Date: Sat, 29 Dec 2001 17:59:25 +0000 Subject: [PATCH] 2001-12-28 18:54 UTC+0100 Patrick Mast * contrib/apollo + added readme.txt * contrib/apollo/test + bld.bat + bld_b32.bat * updated apollo.prg --- harbour/ChangeLog | 8 ++++++++ harbour/contrib/apollo/apollo.c | 2 +- harbour/contrib/apollo/readme.txt | 31 +++++++++++++++++++++++++++++++ 3 files changed, 40 insertions(+), 1 deletion(-) create mode 100644 harbour/contrib/apollo/readme.txt diff --git a/harbour/ChangeLog b/harbour/ChangeLog index fac41d4657..ccc659caee 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -7,6 +7,14 @@ For example: 2002-12-01 23:12 UTC+0100 Foo Bar */ + + Added function sx_Close() + * contrib/apollo/test + * Added functions in a test application. + +2001-12-29 20:35 UTC+0100 Viktor Szakats + + * include/extend.api + ! Same fix applied to extend.api. 2001-12-29 19:44 UTC+0100 Viktor Szakats diff --git a/harbour/contrib/apollo/apollo.c b/harbour/contrib/apollo/apollo.c index 40c1543c6f..cc0befffd2 100644 --- a/harbour/contrib/apollo/apollo.c +++ b/harbour/contrib/apollo/apollo.c @@ -61,7 +61,7 @@ HB_FUNC( SX_VERSION ) { char *szVersion=(char*)sx_Version(); hb_retc(szVersion); - hb_xfree(szVersion); + /*hb_xfree(szVersion);*/ } diff --git a/harbour/contrib/apollo/readme.txt b/harbour/contrib/apollo/readme.txt new file mode 100644 index 0000000000..f32c22c58e --- /dev/null +++ b/harbour/contrib/apollo/readme.txt @@ -0,0 +1,31 @@ +# +# $Id$ +# + + RDD for VistaSoftware's Apollo Database Engine + (Server and/or Local) + Patrick Mast + + To build apollo.lib you need these files: + - sde60.dll ( you need this to build sde60.lib ) + - sde60.lib ( build it using implib sde60.lib sde60.dll ) + - sde60.h ( SDE C/C++ header file for sde60.dll ) + + Use make_b32.bat or make_vc.bat to build the Apollo.lib + + Don't forget to include Apollo.lib and sde60.lib to your + the make file or link script to build executables. See the + bld.bat in the contrib/apollo/test directory. + + To use a application that uses apollo.lib you need this file: + - sde60.dll ( The Apollo Engine ) + The SDE is VistaSoftware's 32-bit database engine which contains + the database technology that all Apollo products rely on to + perform the low-level data management and manipulation. + + + Be aware that this is a work in progress. Any comments are welcome. + More to come! ;-) + + Patrick Mast + December 2001 \ No newline at end of file