Hi all,
is there an equivalent of syntax of:
HB_FUNC( AFUNCTION )
{
HB_FUNC_EXEC( ANOTHERFUNCTION );
}
for pure C functions like
void XGUI_ToOutDebug( const char * sTraceMsg, ... )
{
hb_ToOutDebug( const char * sTraceMsg, ... );
}
or the only way is to define an header file with
#define XGUI_ToOutDebug( const char * sTraceMsg, ... ) hb_ToOutDebug(
const char * sTraceMsg, ... )
I have tried also
void XGUI_ToOutDebug( const char * sTraceMsg, ... )
{
&hb_ToOutDebug();
}
but compiler tell me that there is a wrong number of parameters.
Best Regards
Francesco
_______________________________________________
Harbour mailing list
[email protected]
http://lists.harbour-project.org/mailman/listinfo/harbour