Search found 47 matches: babudll

Return to advanced search

Re: Creating a LIB or DLL

Antonio, I have this in my def LIBRARY BABUDLL.DLL EXPORTS DllEntryPoint @1 ; DllEntryPoint HBDLLENTRY @2 ; HBDLLENTRY HBDLLENTRY1 @3 ; HBDLLENTRY1 HBDLLENTRY2 @4 ; HBDLLENTRY2 __DbgWndProc @6 ; __DbgWndProc __WndProc @5 ; __WndProc ___CPPdebugHook ...
by Dave Zowasky
Sat Mar 21, 2009 12:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating a LIB or DLL
Replies: 138
Views: 35188

Re: Creating a LIB or DLL

Antonio,

Got this in mydll.def

LIBRARY BABUDLL.DLL

EXPORTS
__DbgWndProc @1 ; __DbgWndProc
__WndProc @2 ; __WndProc
___CPPdebugHook @3 ; ___CPPdebugHook

Not sure what to do next.

Thanks
by Dave Zowasky
Fri Mar 20, 2009 4:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating a LIB or DLL
Replies: 138
Views: 35188

Re: Creating a LIB or DLL

Antonio,

Added the line to the batch file and it creates the dll, however when I compile babu.prg and run
it I am getting :

An exception error(C0000005) occurred during DllEntryPoint or DllMain in module:
c:\fwh\samples\babudll.dll


Thanks
by Dave Zowasky
Thu Mar 19, 2009 11:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating a LIB or DLL
Replies: 138
Views: 35188

Re: Creating a LIB or DLL

Antonio, Still have problem with : _HB_FUN_LOADLIBRARY _HB_FUN_FREELIBRARY _HB_FUN_ANSITOWIDE Here is my current babudll.prg: Program: // To build BabuDLL.dll do: buildhd.bat babuDLL// To run this DLL, do buidh.bat Babu.prgextern LoadLibrary, FreeLibrary, AnsiToWidefunction Test( ...
by Dave Zowasky
Thu Mar 19, 2009 3:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating a LIB or DLL
Replies: 138
Views: 35188

Re: Creating a LIB or DLL

Dave, Please add this code at the beginning of babudll.prg: extern LoadLibrary, FreeLibrary, AnsiToWide Please modify buildhd.bat to use gtgui.lib instead of gtwin.lib and add this library too: echo %bcdir%\lib\psdk\msimg32.lib + >> b32.bc ...
by Antonio Linares
Wed Mar 18, 2009 11:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating a LIB or DLL
Replies: 138
Views: 35188

Re: Creating a LIB or DLL

... It seems that a Harbour Self contained DLL would be the best answer. I presume I should use the buildhd.bat to compile my code. I tried to compile babudll.prg and have run into some issues. I modified the bat file to run on my system, and I get these link errors: HB_FUN_LOADLIBRARY HB_FUN_FREELIBRARY ...
by Dave Zowasky
Wed Mar 18, 2009 1:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating a LIB or DLL
Replies: 138
Views: 35188

Crear DLL para conectar con Visual .Net y FWxH

... hacer una DLL para conectar una simple función hecha con FWxH y una Aplicación .NET, estuve tratando de usar el modelo que esta en samples llamado BABUDLL pero no he tenido éxito recurro a alguien que tenga experiencia en esto para algún tipo de guia, la función en el DLL es la siguiente: Function ...
by GUSPRE
Sun Sep 07, 2008 7:19 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Crear DLL para conectar con Visual .Net y FWxH
Replies: 12
Views: 1815

... ) HbDLLEntry2( "Test", hItem1, hItem2 ) ItemRelease( hItem1 ) ItemRelease( hItem2 ) return nil No babudll.prg eu pego a variavel, mas nao vem o conteudo de cada elemento ou nao estou sabendo acessar .. usando o ValType( cMsg1 ) // To build BabuDLL.dll ...
by Ari
Thu May 10, 2007 1:13 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como se pone una funcion en un dll y como se invoca
Replies: 5
Views: 1243

Vladimir,

Revisa los siguientes ejemplos de FWH:

babu.prg
babudll.prg
testdll.prg
testdllp.prg
pcodedll.prg
by Antonio Linares
Tue Nov 07, 2006 4:08 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como se pone una funcion en un dll y como se invoca
Replies: 5
Views: 1243

Ramesh,

Use this Harbour build:
http://hyperupload.com/download/02817d0 ... r.zip.html

And both samples\babu.prg and babudll.prg work fine.
by Antonio Linares
Wed Oct 04, 2006 6:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: buildhd.bat babudll is generating errors in FWH 2.8 Sept.
Replies: 5
Views: 1189

Ramesh, samples\babu.prg and babudll.prg were properly working with previous Harbour builds. It looks as something has changed into Harbour and now the DLL is no longer working. This is an issue that has to be checked with the Harbour developers ...
by Antonio Linares
Wed Oct 04, 2006 6:18 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: buildhd.bat babudll is generating errors in FWH 2.8 Sept.
Replies: 5
Views: 1189

Hello Mr.Antonio Now after installing harbour form the download, I could build the BABUDLL.DLL without errors. Now when I try to check it with BABU.EXE the code from the DLL is not working and only "ok from EXE" which is from the exe itself is displayed using xHarbour. ...
by RAMESHBABU
Wed Oct 04, 2006 2:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: buildhd.bat babudll is generating errors in FWH 2.8 Sept.
Replies: 5
Views: 1189

buildhd.bat babudll is generating errors in FWH 2.8 Sept.

Hello Mr.Antonio

When I tried to build BABUDLL.DLL with BUILDHD BABUDLL,
I am getting the following error:

Error: Unresolved external '_hb_vmProcessSymbolxEx'Referenced from C:\FWH\LIB\FIVEHX.LIB|ALERT


Please guide me what to do.

Regards,

- Ramesh Babu P
by RAMESHBABU
Tue Oct 03, 2006 8:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: buildhd.bat babudll is generating errors in FWH 2.8 Sept.
Replies: 5
Views: 1189

... FWH samples\buildhd.bat y samples\buildhdp.bat, para construir DLLs propias de Harbour y DLLs de pcode Harbour. Revise samples\babu.prg y samples\BabuDll.prg, y samples\TestDllP.prg. * Mejora: En FWPPC, la clausula VALID está disponible para DIALOGos. Revise samples\tutor04.prg. * Mejora: La clase ...
by Antonio Linares
Mon Jan 09, 2006 9:48 pm
 
Forum: WhatsNew / Novedades
Topic: FTDN new January 2006 build / nuevo build de Enero 2006
Replies: 1
Views: 3635

FTDN new January 2006 build / nuevo build de Enero 2006

... have been included in the FWH setup, to build Harbour self contained DLLs and Harbour pcode DLLs. Please review samples\babu.prg and samples\BabuDll.prg, and samples\TestDllP.prg * Enhancement: FWPPC, VALID clause is already available for DIALOGs. Please review samples\tutor04.prg * Enhancement: ...
by Antonio Linares
Mon Jan 09, 2006 7:32 pm
 
Forum: WhatsNew / Novedades
Topic: FTDN new January 2006 build / nuevo build de Enero 2006
Replies: 1
Views: 3635
PreviousNext

Return to advanced search