Example #1
0
/***
Mark the soft label key area for refresh.
@function slk_touch
@treturn bool `true`, if successful
@see slk_touch(3x)
*/
static int
Pslk_touch(lua_State *L)
{
#if LCURSES_POSIX_COMPLIANT
	return pushokresult(slk_touch());
#else
	return binding_notimplemented(L, "slk_touch", "curses");
#endif
}
Example #2
0
int chkr_slk_touch(void)
{
   return(slk_touch());
}
Example #3
0
SCM
gucu_slk_touch ()
{
  int ret = slk_touch ();
  RETURNTF (ret);
}