HB_FUNC() SYNTAX
Posted: Fri Aug 02, 2019 1:59 am
Hello, where can I find documentation about the hb_func () function, the types of variables and parameters accepted among other information. where does this function come from? harbour?
Exclusive forum for HMG, a Free / Open Source xBase WIN32/64 Bits / GUI Development System
http://hmgforum.com/
Code: Select all
#pragma BEGINDUMP
#include < extend.h >
#include < math.h >
HB_FUNC( SIN )
{
double x = hb_parnd(1);
hb_retnd( sin( x ) );
}
#pragma ENDDUMP