summaryrefslogtreecommitdiff
path: root/src/utils/sdl2helper.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/sdl2helper.h')
-rw-r--r--src/utils/sdl2helper.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/utils/sdl2helper.h b/src/utils/sdl2helper.h
index 101c965b8..bf3c57f0c 100644
--- a/src/utils/sdl2helper.h
+++ b/src/utils/sdl2helper.h
@@ -26,9 +26,17 @@
#include "localconsts.h"
+struct SDL_Surface;
+struct SDL_Window;
+
namespace SDL
{
bool getAllVideoModes(StringVect &modeList);
+
+ void SetWindowTitle(SDL_Window *const window, const char *const title);
+
+ void SetWindowIcon(SDL_Window *const window, SDL_Surface *const icon);
+
} // namespace SDL
#endif // USE_SDL2