New Fwh 11.10 and TFolderEx error

New Fwh 11.10 and TFolderEx error

Postby Rimantas » Wed Nov 02, 2011 5:47 pm

Hi Antonio ,

Just downloaded new Fwh and tried to compile testfx1.prg with MinGw + Harbour . Error :

┌────────────────────────────────────────────────────────────────────────────┐
│ FiveWin for Harbour 11.08 and GCC - Aug. 2011 Harbour development power │▄
│ (c) FiveTech, 1993-2011 for Microsoft Windows 9X/NT/200X/ME/XP/Vista/7 │█
└────────────────────────────────────────────────────────────────────────────┘█
  ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
Compiling...
Harbour 3.1.0dev (Rev. 17025)
Copyright (c) 1999-2011, http://harbour-project.org/
Compiling 'testfx1.prg' and generating preprocessed output to 'testfx1.ppo'...
Lines 4248, Functions/Procedures 5
Generating C source output to 'testfx1.c'... Done.
.\..\lib/fivehgc.lib(KEYBRD.o):KEYBRD.C:(.text+0x287): undefined reference to `S
endInput'
collect2: ld returned 1 exit status
* Link errors *

With best regards !
Rimantas U.
User avatar
Rimantas
 
Posts: 437
Joined: Fri Oct 07, 2005 12:56 pm
Location: Utena , Lithuania

Re: New Fwh 11.10 and TFolderEx error

Postby Antonio Linares » Wed Nov 02, 2011 6:58 pm

Rimantas,

These lines are required in source/winapi/keybrd.c

Code: Select all  Expand view
#ifdef __GNUC__
   WINBASEAPI UINT WINAPI SendInput( UINT nInputs, LPINPUT pInputs, int cbSize );
#endif

HB_FUNC( SENDKEY )
...
 
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
 
Posts: 41411
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: New Fwh 11.10 and TFolderEx error

Postby Otto » Wed Nov 02, 2011 11:06 pm

Best regards,
Otto

┌────────────────────────────────────────────────────────────────────────────┐

│ FiveWin for xHarbour 11.10 - Oct. 2011 xHarbour development power │▄
│ (c) FiveTech, 1993-2011 for Microsoft Windows 9X/NT/200X/ME/XP/Vista/7 │█
└────────────────────────────────────────────────────────────────────────────┘█
  ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
Compiling...
xHarbour Compiler build 1.2.1 (SimpLex) (Rev. 6717)
Copyright 1999-2010, http://www.xharbour.org http://www.harbour-project.org/
Compiling 'metrptst.prg' and generating preprocessed output to 'metrptst.ppo'...

Lines 321, Functions/Procedures 5
Generating C source output to 'metrptst.c'...
Done.
Borland C++ 5.82 for Win32 Copyright (c) 1993, 2005 Borland
metrptst.c:
Turbo Incremental Link 5.69 Copyright (c) 1997-2005 Borland
Error: Unresolved external '_HB_FUN_TMETROPANEL' referenced from C:\FWH\SAMPLES\
METRPTST.OBJ
* Linking errors *

c:\FWH\samples>
********************************************************************
mod harbour - Vamos a la conquista de la Web
modharbour.org
https://www.facebook.com/groups/modharbour.club
********************************************************************
User avatar
Otto
 
Posts: 6073
Joined: Fri Oct 07, 2005 7:07 pm

Re: New Fwh 11.10 and TFolderEx error

Postby nageswaragunupudi » Thu Nov 03, 2011 2:11 am

Mr Otto

I have downloaded the new version just now and tested. The sample is built properly. You may please retry downloading again.
Regards

G. N. Rao.
Hyderabad, India
User avatar
nageswaragunupudi
 
Posts: 10313
Joined: Sun Nov 19, 2006 5:22 am
Location: India

Re: New Fwh 11.10 and TFolderEx error

Postby Rimantas » Thu Nov 03, 2011 5:47 am

Antonio Linares wrote:These lines are required in source/winapi/keybrd.c
Code: Select all  Expand view
#ifdef __GNUC__
   WINBASEAPI UINT WINAPI SendInput( UINT nInputs, LPINPUT pInputs, int cbSize );
#endif
HB_FUNC( SENDKEY )
...
 


Hello Antonio ,

I didn't understand - I must to do this changes ?

Regards !
Rimantas U.
User avatar
Rimantas
 
Posts: 437
Joined: Fri Oct 07, 2005 12:56 pm
Location: Utena , Lithuania

Re: New Fwh 11.10 and TFolderEx error

Postby nageswaragunupudi » Thu Nov 03, 2011 6:30 am

Mr Rimantas

For now you please do it.

Please insert those lines just above
HB_FUNC( SENDKEY )
in the module \fwh\source\winapi\keybrd.c

The fix will be included in the next release / revised build.
Regards

G. N. Rao.
Hyderabad, India
User avatar
nageswaragunupudi
 
Posts: 10313
Joined: Sun Nov 19, 2006 5:22 am
Location: India

Re: New Fwh 11.10 and TFolderEx error

Postby Rimantas » Thu Nov 03, 2011 8:37 am

nageswaragunupudi wrote:Mr Rimantas

For now you please do it.

Please insert those lines just above
HB_FUNC( SENDKEY )
in the module \fwh\source\winapi\keybrd.c

The fix will be included in the next release / revised build.


I want to make more accurate . From this - fivehgc.lib(KEYBRD.o):KEYBRD.C:(.text+0x287): undefined reference to `SendInput' - I understood that this is lib problem . OK . So I must to add this keybrd.c ( or obj ) building application ?

Regards !
Rimantas U.
User avatar
Rimantas
 
Posts: 437
Joined: Fri Oct 07, 2005 12:56 pm
Location: Utena , Lithuania

Re: New Fwh 11.10 and TFolderEx error

Postby nageswaragunupudi » Thu Nov 03, 2011 9:28 am

Mr Otto

I tested with Harbour and it was working.
But with xHarbour I confirm getting the unresolved external.

Request Mr Antonio to look into this and publish revised build.
Regards

G. N. Rao.
Hyderabad, India
User avatar
nageswaragunupudi
 
Posts: 10313
Joined: Sun Nov 19, 2006 5:22 am
Location: India

Re: New Fwh 11.10 and TFolderEx error

Postby Rimantas » Thu Nov 10, 2011 7:38 pm

Rimantas wrote:
nageswaragunupudi wrote:Mr Rimantas

For now you please do it.

Please insert those lines just above
HB_FUNC( SENDKEY )
in the module \fwh\source\winapi\keybrd.c

The fix will be included in the next release / revised build.


I want to make more accurate . From this - fivehgc.lib(KEYBRD.o):KEYBRD.C:(.text+0x287): undefined reference to `SendInput' - I understood that this is lib problem . OK . So I must to add this keybrd.c ( or obj ) building application ?

Regards !


What I must to do to avoid this error ? I changed ( added ) lines in keybr.c , but nothing changed . I must add this c file with mine project ? How to do that , please help ...

Regards ,
Rimantas U.
User avatar
Rimantas
 
Posts: 437
Joined: Fri Oct 07, 2005 12:56 pm
Location: Utena , Lithuania

Re: New Fwh 11.10 and TFolderEx error

Postby Antonio Linares » Thu Nov 10, 2011 8:06 pm

Rimantas,

Already sent to your email :-)
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Antonio Linares
Site Admin
 
Posts: 41411
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain

Re: New Fwh 11.10 and TFolderEx error

Postby Rimantas » Fri Nov 11, 2011 5:59 pm

Antonio Linares wrote:Rimantas,

Already sent to your email :-)



Antonio , thanks ! :-) Now it's OK ... And thanks for make exe !

With best regards !
Rimantas U.
User avatar
Rimantas
 
Posts: 437
Joined: Fri Oct 07, 2005 12:56 pm
Location: Utena , Lithuania

Re: New Fwh 11.10 and TFolderEx error

Postby Rimantas » Wed Nov 16, 2011 6:11 pm

Antonio,

testfx1.prg sample with MinGw is working different from Bcc . Incorrect working Brush and xBrowse . Also you can try foldgrad.prg . How to fix that ?

With best regards !
Rimantas U.
User avatar
Rimantas
 
Posts: 437
Joined: Fri Oct 07, 2005 12:56 pm
Location: Utena , Lithuania

Re: New Fwh 11.10 and TFolderEx error

Postby Rimantas » Thu Nov 17, 2011 6:05 pm

Rimantas wrote:Antonio,

testfx1.prg sample with MinGw is working different from Bcc . Incorrect working Brush and xBrowse . Also you can try foldgrad.prg . How to fix that ?


Antonio , your new website is very nice and good looking . But at this moment I have problem with folders . Also is not working gets in folder - password get isn't hiding and going through gets with Enter or Tab . Your product is buggy and please , correct it . Or I must to wait the next release ?

Fwh + harbour 3.1 + MinGW .

With best regards ! Rimantas
Rimantas U.
User avatar
Rimantas
 
Posts: 437
Joined: Fri Oct 07, 2005 12:56 pm
Location: Utena , Lithuania


Return to FiveWin for Harbour/xHarbour

Who is online

Users browsing this forum: Google [Bot] and 39 guests