May someone tell me how to call SysRefresh() in c code ?
i tried to put following command before calling it(refer winexec.c ), but not successfull.
*------------------------------------
BOOL SysRefresh( void );
or
extern BOOL SysRefresh( void );
*----------------------------------------------
code example unresolved external symbol "int __cdecl SysRefresh(void) on compiling)
*------------------------------------------------------
func Main()
? BBB()
? CCC()
retu nil
#pragma BEGINDUMP
BOOL SysRefresh( void );
// extern BOOL SysRefresh( void ); // same result of "(unresolved external symbol "int __cdecl SysRefresh(void))"
HB_FUNC( BBB )
{
SysRefresh();
hb_retc( "BBB" );
}
HB_FUNC( CCC )
{
hb_retc( "CCC" );
SysRefresh();
}
#pragma ENDDUMP