Sometimes libraries add features that depends on another libraries.
if harbour and hbmk2, you can try, as example:
hbmk2 -find hpdf_save
hbhpdf.hbc (installed):
HPDF_SaveToFile()
HPDF_SaveToStream()
I do not use original HMG Extended files, I rename libraries, I create HBX files, and now copy to harbour\addons only to search your functions:
hbmk2 -find switchtothis
addons\hmge_main.hbc (not installed):
SWITCHTOTHISWINDOW()
the only function not available is:
hbmk2 -find privateextra
No matches
Using harbour 3.2 and mingw 15.2
I do not know why libraries do not use hbx or harbour addons folder, it would be helpful
Where exists a function about setfocus
hbmk2 -find setfocus
addons\hmg3_main.hbc (not installed):
SETFOCUS()
_SETFOCUS()
_SETFOCUSEDSPLITCHILD()
addons\hmge_main.hbc (not installed):
SETFOCUS()
_SETFOCUS()
_SETFOCUSEDSPLITCHILD()
CLBUTTONSETFOCUS()
SPBUTTONSETFOCUS()
addons\oohg_main.hbc (not installed):
SETFOCUS()
gtwvg.hbc (installed):
wvg_SetFocus()
gtwvw.hbc (not installed):
win_SetFocus()
wvw_cbSetFocus()
wvw_cxSetFocus()
wvw_ebSetFocus()
wvw_pbSetFocus()
hbwin.hbc (installed):
wapi_SetFocus()
Harbour core (installed):
ordSetFocus()
addons\hwgui.hbc (not installed):
HWG_SETFOCUS()
José M. C. Quintas