Hi,
I have "C" function that needs to pass a pointer paramter of number ( dobule ) data type.
How I can pass pointer to C function ? I tried but its not working.
Procedure Call_C_Func
atmp := { 123123.12, 123123.1223, 12312312312.12312 }
c_wrap_func( atmp[1] )
HB_FUNC( c_wrap_func )
{
c_function( (double *) hb_parptr(1) ) ;
}
Please guide me. Thanks in advance.
Shridhar