Colegas,
Hay la misma función o similar en xHarbour que hb_DynCall () de Harbour ?
Gracias
Ari
función o similar hb_Dyn_Call()
- Enrico Maria Giordano
- Posts: 7355
- Joined: Thu Oct 06, 2005 8:17 pm
- Location: Roma - Italia
- Contact:
Re: función o similar hb_Dyn_Call()
I can't find the string "dyncall" in the xHarbour SVN. What is it for?
EMG
EMG
Re: función o similar hb_Dyn_Call()
Enrico,
The hb_DynCall () function is for calling functions in Harbour DLLs, I think in xharbour I should use DllCall () or CallDll ().
I received an answer in the topic Retorno da Chamada DLL and there use this function hb_DynCall () as below one of the functions:
Ari
The hb_DynCall () function is for calling functions in Harbour DLLs, I think in xharbour I should use DllCall () or CallDll ().
I received an answer in the topic Retorno da Chamada DLL and there use this function hb_DynCall () as below one of the functions:
Code: Select all
function mysql_close( hMySql )
if !empty( pLib )
hb_DynCall( { "mysql_close", pLib, HB_DYN_CALLCONV_CDECL, ;
HB_DYN_CTYPE_LONG_UNSIGNED }, hMySql )
endif
return nil
Ari
- Enrico Maria Giordano
- Posts: 7355
- Joined: Thu Oct 06, 2005 8:17 pm
- Location: Roma - Italia
- Contact:
Re: función o similar hb_Dyn_Call()
Both DllCall() and CallDll() are in the xHarbour SVN. I never used them, sorry.
EMG
EMG