flycast/core/sdl/sdl.h

14 lines
335 B
C
Raw Normal View History

2015-08-29 18:23:16 +00:00
#pragma once
#include <SDL2/SDL.h>
#include "types.h"
2015-08-29 18:23:16 +00:00
extern void input_sdl_init();
extern void input_sdl_handle(u32 port);
extern void sdl_window_create();
extern void sdl_window_set_text(const char* text);
2019-10-05 09:50:14 +00:00
extern void sdl_window_destroy();
extern void sdl_recreate_window(u32 flags);
2019-12-22 22:49:52 +00:00
#ifdef WIN32
HWND sdl_get_native_hwnd();
#endif