示例#1
0
HIDDEN int
deb_cursor(FBIO *ifp, int mode, int x, int y)
{
    fb_log( "fb_cursor( 0x%lx, %d,%4d,%4d )\n",
	    (unsigned long)ifp, mode, x, y );
    fb_sim_cursor( ifp, mode, x, y );
    return	0;
}
示例#2
0
文件: if_mem.c 项目: kanzure/brlcad
HIDDEN int
mem_cursor(FBIO *ifp, int mode, int x, int y)
{
    fb_sim_cursor(ifp, mode, x, y);
    if (MI(ifp)->write_thru) {
	return fb_cursor(MI(ifp)->fbp, mode, x, y);
    }
    return 0;
}