Page 1 of 1

How to create hbx files using hbmk2

Posted: Sat Jun 13, 2020 7:19 am
by Antonio Linares
Call hbmk2 with this -hbx parameter:
hbmk2 yourproject.hbp -hbx=yourproject.hbx

Use this flag in the hbp file:
-hblib

It will create yourproject.hbx

Re: How to create hbx files using hbmk2

Posted: Sat Jun 13, 2020 10:42 am
by Antonio Linares

Code: Select all

function Main()

   for n = __DynsCount() to 1 step -1
     if __DynsIsFun( n )
        ? "extern " + __DynsGetName( n )
     endif
   next     

return nil