mirror of
https://github.com/xemu-project/xemu.git
synced 2024-12-11 13:37:05 +00:00
8fc1a3f58f
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Reviewed-by: Max Reitz <mreitz@redhat.com>
21 lines
476 B
C
21 lines
476 B
C
#ifndef SDL2_H
|
|
#define SDL2_H
|
|
|
|
struct sdl2_console {
|
|
DisplayChangeListener dcl;
|
|
DisplaySurface *surface;
|
|
SDL_Texture *texture;
|
|
SDL_Window *real_window;
|
|
SDL_Renderer *real_renderer;
|
|
int idx;
|
|
int last_vm_running; /* per console for caption reasons */
|
|
int x, y;
|
|
int hidden;
|
|
};
|
|
|
|
void sdl2_reset_keys(struct sdl2_console *scon);
|
|
void sdl2_process_key(struct sdl2_console *scon,
|
|
SDL_KeyboardEvent *ev);
|
|
|
|
#endif /* SDL2_H */
|