コード例 #1
0
ファイル: window.cpp プロジェクト: pcwalton/NetSurf
void gui_window_scroll_visible(struct gui_window *g, int x0, int y0,
		int x1, int y1)
{
	gui_window_set_scroll(g, x0, y0);
}
コード例 #2
0
ファイル: gui.c プロジェクト: galexcode/NetSurf68k
void gui_window_scroll_visible(struct gui_window *w, int x0, int y0, int x1, int y1)
{
    LOG(("%s:(%p, %d, %d, %d, %d)", __func__, w, x0, y0, x1, y1));
    gui_window_set_scroll(w,x0,y0);
}