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