i am trying to compile a simple program in hbide with fivewin libraries for window
and the hbmk2 give me an output console error:
multiple definition of 'HB_FUN_ERRORSYS'
multiple definition of 'HB_FUN_HB_GTSYS'
It seems that FiveWin has its own ErrorSys and Get System implementation
which is clashing with Harbour's implementation.
i have added 2 lib of fivewin 1507
-ld:\winclip\fwh1507\lib\FiveHGC.lib
-ld:\winclip\fwh1507\lib\FiveHG.lib
#include "FiveWin.ch"
PROCEDURE Main()
LOCAL oWnd
DEFINE WINDOW oWnd FROM 0, 0 TO 30, 80 TITLE "prova"
ACTIVATE WINDOW oWnd
oWnd:End()
Return(NIL)
what can i do to avoid the error?
thanks, marzio
↧