Page 1 of 1

FW709 TESTXBRW-sample

PostPosted: Fri Sep 14, 2007 8:06 am
by Marc Vanzegbroeck
Hi,

If I try to compile testwbrw-sample in FW709 I get the folowing error.

Code: Select all  Expand view
Compiling...
xHarbour Compiler build 0.99.71 (SimpLex)
Copyright 1999-2007, http://www.xharbour.org http://www.harbour-project.org/
Compiling 'testxbrw.prg' and generating preprocessed output to 'testxbrw.ppo'...
Lines 713, Functions/Procedures 22
Generating C source output to 'testxbrw.c'...
Done.
Borland C++ 5.5.1 for Win32 Copyright (c) 1993, 2000 Borland
testxbrw.c:
Borland Resource Compiler  Version 5.40
Copyright (c) 1990, 1999 Inprise Corporation.  All rights reserved.
Turbo Incremental Link 5.00 Copyright (c) 1997, 2000 Borland
Error: Unresolved external '_HB_FUN_ADSSETSERVERTYPE' referenced from C:\FWH\FWH709\SAMPLES\TESTXBRW
.OBJ
Error: Unresolved external '_HB_FUN_ADSSETFILETYPE' referenced from C:\FWH\FWH709\SAMPLES\TESTXBRW.O
BJ
Error: Unresolved external '_HB_FUN_ADSKEYCOUNT' referenced from C:\FWH\FWH709\SAMPLES\TESTXBRW.OBJ
Error: Unresolved external '_HB_FUN_ADSGETRELKEYPOS' referenced from C:\FWH\FWH709\SAMPLES\TESTXBRW.
OBJ
Error: Unresolved external '_HB_FUN_ADSSETRELKEYPOS' referenced from C:\FWH\FWH709\SAMPLES\TESTXBRW.
OBJ
Error: Unresolved external '_HB_FUN_ADS' referenced from C:\FWH\FWH709\SAMPLES\TESTXBRW.OBJ
* There are errors


Regards,
Marc

PostPosted: Fri Sep 14, 2007 8:41 am
by demont frank
Maybe __ADS__ was defined ?

See :

#ifdef __ADS__
.....

PostPosted: Fri Sep 14, 2007 8:51 am
by Antonio Linares
Marc,

Here it is building and working fine

PostPosted: Fri Sep 14, 2007 9:55 am
by Marc Vanzegbroeck
The problem is that testxbrw use REQUEST ADS.
If I uncomment de 2 lines needed for ADS, I get the error ACE32.LIB not found. Where can I find this lib?


Thanks,
Marc

PostPosted: Fri Sep 14, 2007 9:58 am
by Antonio Linares
Marc,

implib.exe ACE32.LIB ACE32.DLL

PostPosted: Fri Sep 14, 2007 10:08 am
by Marc Vanzegbroeck
Thanks Antonio,

It's working fine now.

Marc