예제 #1
0
파일: simple-touch.c 프로젝트: RAOF/weston
static void
handle_ping(void *data, struct wl_shell_surface *shell_surface,
	    uint32_t serial)
{
	wl_shell_surface_pong(shell_surface, serial);
}
예제 #2
0
void shell_ping(void* data, struct wl_shell_surface* surface, uint32_t serial)
{
	wl_shell_surface_pong(surface, serial);
}
예제 #3
0
static void fghShSurfacePing( void* data,
                           struct wl_shell_surface* shsurface,
                           uint32_t serial )
{
    wl_shell_surface_pong( shsurface, serial );
}
예제 #4
0
파일: shm.c 프로젝트: techhhuang/bookmark
static void handle_ping(void *data, struct wl_shell_surface *shell_surface,
                        uint32_t serial) {
    wl_shell_surface_pong(shell_surface, serial);
    fprintf(stderr, "Pinged and ponged\n");
}