Muchas gracias Leandro!!
Estaré atento a ver que publicas.
Yo lo hice funcionar de la siguiente manera:
hb_threadStart( HB_THREAD_INHERIT_PUBLIC, @MyFuncForThreads(),parametro1,parametro2,...)
Y luego para compilar reemplacé:
hbvm.lib x hbvmmt.lib
y
cw32.lib x cw32mt.lib
Sakudos!
Search found 34 matches: hbvmmt
Searched query: hbvmmt
- Fri Jan 24, 2025 11:49 am
- Forum: FiveWin para Harbour/xHarbour
- Topic: Multihilo - Multithread
- Replies: 13
- Views: 2985
- Thu Oct 10, 2024 8:15 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Browse of my ADO Class
- Replies: 59
- Views: 12781
Re: Browse of my ADO Class
Ok, hbvmmt.lib, thank you.
- Thu Sep 19, 2024 2:35 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: GOT 64 Bit Version running
- Replies: 20
- Views: 3329
Re: GOT 64 Bit Version running
... Link 6.97 Copyright (c) 1997-2022 Embarcadero Technologies, Inc.
Error: Unresolved external '__streams' referenced from C:\HARBOUR\LIB\WIN\BCC\HBVMMT.LIB|fm
Error: Unresolved external '_HB_FUN_VAR2CHAR' referenced from R:\TEMP\HBMK_5XHQ19.DIR\DATAROW.OBJ
Error: Unresolved external '_HB_FUN_CTRLS ...
Error: Unresolved external '__streams' referenced from C:\HARBOUR\LIB\WIN\BCC\HBVMMT.LIB|fm
Error: Unresolved external '_HB_FUN_VAR2CHAR' referenced from R:\TEMP\HBMK_5XHQ19.DIR\DATAROW.OBJ
Error: Unresolved external '_HB_FUN_CTRLS ...
- Sun Jan 28, 2024 9:49 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: SAPI : change Voice
- Replies: 69
- Views: 25203
Re: SAPI : change Voice
Please try with HBVM.LIB instead of HBVMMT.LIB.
- Sun Jan 28, 2024 8:58 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: SAPI : change Voice
- Replies: 69
- Views: 25203
Re: SAPI : change Voice
... 6.70 Copyright (c) 1997-2014 Embarcadero Technologies, Inc.
Error: Unresolved external '___get_std_stream' referenced from C:\HARBOUR\LIB\WIN\BCC\HBVMMT.LIB|fm
Error: Unable to perform link
---
i do have copy hbwin.lib into c:\Harbour\lib\win\bcc afterwards but get same Error
what i´m doing wrong ...
Error: Unresolved external '___get_std_stream' referenced from C:\HARBOUR\LIB\WIN\BCC\HBVMMT.LIB|fm
Error: Unable to perform link
---
i do have copy hbwin.lib into c:\Harbour\lib\win\bcc afterwards but get same Error
what i´m doing wrong ...
- Wed Sep 07, 2022 4:05 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Compilar makefile con soporte multihilo
- Replies: 2
- Views: 290
Re: Compilar makefile con soporte multihilo
Joaquim,
Para Borland solo tienes que enlazar hbvmmt.lib en vez de hbvm.lib y como indicas lib\psdk\cw32mt.lib
Para Borland solo tienes que enlazar hbvmmt.lib en vez de hbvm.lib y como indicas lib\psdk\cw32mt.lib
- Wed Aug 31, 2022 3:38 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: FWH WebApp (HTML) testing
- Replies: 32
- Views: 3963
Re: FWH WebApp (HTML) testing
Dario,
copy buildh32.bat buildh32mt.bat
Y modifica solamente esta línea:
echo %hdirl%\hbvmmt.lib >> msvc.tmp
en vez de usar hbvm.lib, usamos hbvmmt.lib
con eso ya puedes construir los ejemplos en MultiThreading![Smile :-)](./images/smilies/icon_smile.gif)
copy buildh32.bat buildh32mt.bat
Y modifica solamente esta línea:
echo %hdirl%\hbvmmt.lib >> msvc.tmp
en vez de usar hbvm.lib, usamos hbvmmt.lib
con eso ya puedes construir los ejemplos en MultiThreading
![Smile :-)](./images/smilies/icon_smile.gif)
- Sat Sep 18, 2021 2:07 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: HBSSL CON FUNCIONES DE DIEGO FAZIO INCLUIDAS
- Replies: 9
- Views: 9415
Re: HBSSL CON FUNCIONES DE DIEGO FAZIO INCLUIDAS
... LIB_DIR)\hbrtl.lib
!if $(MULTI_HILO) != YES
VM_LIB = $(HARBOUR_LIB_DIR)\hbvm.lib
!endif
!if $(MULTI_HILO) == YES
VM_LIB = $(HARBOUR_LIB_DIR)\hbvmmt.lib
!endif
GTGUI_LIB = $(HARBOUR_LIB_DIR)\gtgui.lib
LANG_LIB = $(HARBOUR_LIB_DIR)\hblang.lib
MACRO_LIB = $(HARBOUR_LIB_DIR)\hbmacro.lib
RDD_LIB ...
!if $(MULTI_HILO) != YES
VM_LIB = $(HARBOUR_LIB_DIR)\hbvm.lib
!endif
!if $(MULTI_HILO) == YES
VM_LIB = $(HARBOUR_LIB_DIR)\hbvmmt.lib
!endif
GTGUI_LIB = $(HARBOUR_LIB_DIR)\gtgui.lib
LANG_LIB = $(HARBOUR_LIB_DIR)\hblang.lib
MACRO_LIB = $(HARBOUR_LIB_DIR)\hbmacro.lib
RDD_LIB ...
- Thu Mar 11, 2021 8:25 am
- Forum: FiveWin para Harbour/xHarbour
- Topic: Memory Leak - Richedit
- Replies: 29
- Views: 6728
Re: Memory Leak - Richedit
hbvm.lib y hbvmmt.lib realmente son la misma.
La primera es para programación estándar y la segunda para usar multi hilos.
Las dos contienen las mismas funciones de VM -> Virtual Memory.
O lo que es lo mismo la gestión de memoria de Harbour.
Eso implica que solo se debería usar una a la vez ya que la ...
La primera es para programación estándar y la segunda para usar multi hilos.
Las dos contienen las mismas funciones de VM -> Virtual Memory.
O lo que es lo mismo la gestión de memoria de Harbour.
Eso implica que solo se debería usar una a la vez ya que la ...
- Wed Mar 10, 2021 2:11 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Memory Leak - Richedit
- Replies: 29
- Views: 6728
Re: Memory Leak - Richedit
... libera.
Para esto último Harbour está preparado solo hay que crear las librerías de Harbour con estadísticas, realmente solo afecta a hbvm.lib y a hbvmmt.lib.
Cuando quiero saber si hay fugas de memoria enlazo un de esas dos y al finalizar la ejecución del programa este genera un LOG con las perdidas ...
Para esto último Harbour está preparado solo hay que crear las librerías de Harbour con estadísticas, realmente solo afecta a hbvm.lib y a hbvmmt.lib.
Cuando quiero saber si hay fugas de memoria enlazo un de esas dos y al finalizar la ejecución del programa este genera un LOG con las perdidas ...
- Wed Mar 10, 2021 12:04 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Memory Leak - Richedit
- Replies: 29
- Views: 6728
Re: Memory Leak - Richedit
... libera.
Para esto último Harbour está preparado solo hay que crear las librerías de Harbour con estadísticas, realmente solo afecta a hbvm.lib y a hbvmmt.lib.
Cuando quiero saber si hay fugas de memoria enlazo un de esas dos y al finalizar la ejecución del programa este genera un LOG con las perdidas ...
Para esto último Harbour está preparado solo hay que crear las librerías de Harbour con estadísticas, realmente solo afecta a hbvm.lib y a hbvmmt.lib.
Cuando quiero saber si hay fugas de memoria enlazo un de esas dos y al finalizar la ejecución del programa este genera un LOG con las perdidas ...
- Thu Oct 17, 2019 10:55 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: harbour v1.x -> v.3x Error
- Replies: 2
- Views: 600
harbour v1.x -> v.3x Error
... obj .hbmk\win\bcc\HBXBASE.obj .hbmk\win\bcc\_hbmkaut_HBXBASE.obj, HBXBASE.exe, nul, gtwvg.lib hbxpp.lib hbwin.lib png.lib hbextern.lib hbdebug.lib hbvmmt.lib hbrtl.lib hblang.lib hbcpage.lib gtcgi.lib gtpca.lib gtstd.lib gtwin.lib gtwvt.lib gtgui.lib hbrdd.lib hbuddall.lib hbusrrdd.lib rddntx.lib ...
- Thu Oct 17, 2019 7:27 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Pritpal, HBIDE developer, assists us to use it with FWH
- Replies: 293
- Views: 117995
Re: Pritpal, HBIDE developer, assists us to use it with FWH
... obj .hbmk\win\bcc\HBXBASE.obj .hbmk\win\bcc\_hbmkaut_HBXBASE.obj, HBXBASE.exe, nul, gtwvg.lib hbxpp.lib hbwin.lib png.lib hbextern.lib hbdebug.lib hbvmmt.lib hbrtl.lib hblang.lib hbcpage.lib gtcgi.lib gtpca.lib gtstd.lib gtwin.lib gtwvt.lib gtgui.lib hbrdd.lib hbuddall.lib hbusrrdd.lib rddntx.lib ...
- Mon Oct 08, 2018 7:45 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: StartThread NO es estable usando FiveWin
- Replies: 24
- Views: 4899
Re: StartThread NO es estable usando FiveWin
cristobal,
si estoy usando hbvmmt.lib de harbour y cw32mt.lib de borland, si puedes te doy acceso
a mi equipo para que veamos el error que da
si estoy usando hbvmmt.lib de harbour y cw32mt.lib de borland, si puedes te doy acceso
a mi equipo para que veamos el error que da
- Wed Oct 03, 2018 2:00 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: StartThread NO es estable usando FiveWin
- Replies: 24
- Views: 4899
StartThread NO es estable usando FiveWin
... trabajarlo con TIMER.
La aplicacion al cabo de un tiempo se bloquea y un genera un GPF, estoy usando Harbour y Borland 7.0,
las librerias MT hbvmmt.lib de harbour y cw32mt.lib de Borland, este es el codigo :
nSeconds := 30bThread := {|oMsgItem, nSeconds| DownloadReportes( oMsgItem ...
La aplicacion al cabo de un tiempo se bloquea y un genera un GPF, estoy usando Harbour y Borland 7.0,
las librerias MT hbvmmt.lib de harbour y cw32mt.lib de Borland, este es el codigo :
nSeconds := 30bThread := {|oMsgItem, nSeconds| DownloadReportes( oMsgItem ...