Hola, tengo el siguiente error al compilar la libreria hbole.lib:
Error: Unresolved external '_hb_vmMessage' referenced from C:\FACTU32\LIB\HBOLE.LIB|ole2
Gracias por vuestra ayuda
harbour 0.44 fwh 25
error al compilar hbole
Re: error al compilar hbole
antonio por favor podrías indicarme en que .h está el hb_vmmessage o que debo hacer para que no salga este error.MANOLO wrote:Hola, tengo el siguiente error al compilar la libreria hbole.lib:
Error: Unresolved external '_hb_vmMessage' referenced from C:\FACTU32\LIB\HBOLE.LIB|ole2
Gracias por vuestra ayuda
harbour 0.44 fwh 25
saludos.
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Armando,
Puedes incluir esta función en un PRG tuyo:
Code:
Puedes incluir esta función en un PRG tuyo:
Code:
Code: Select all
#pragma BEGINDUMP
void hb_vmFunction( unsigned short uiParams );
void hb_vmMessage( unsigned short uiParams )
{
hb_vmFunction( uiParams );
}
#pragma ENDDUMP