示例#1
0
static int PlotPaintTo(lua_State *L)
{
  Ihandle *ih = iuplua_checkihandle(L,1);
  IupPlotPaintTo(ih, cdlua_checkcanvas(L,2));
  return 0;
}
示例#2
0
static void PlotPaintTo(void)
{
  Ihandle *ih = iuplua_checkihandle(1);
  IupPlotPaintTo(ih, cdlua_checkcanvas(2));
}
示例#3
0
文件: cdlua5ctx.c 项目: Vulcanior/IUP
/***************************************************************************\
* CD_DBUFFERRGB.                                                                 *
\***************************************************************************/
static void *cddbufrgb_checkdata(lua_State * L, int param)
{
  return cdlua_checkcanvas(L, param);
}