remove +x from source
[Tsunagari.git] / src / os-windows.h
blobda7fd263799040ffa34020a07c2909c0c6247537
1 /*********************************
2 ** Tsunagari Tile Engine **
3 ** os-windows.h **
4 ** Copyright 2011-2012 OmegaSDG **
5 *********************************/
7 #ifndef OS_WINDOWS_H
8 #define OS_WINDOWS_H
10 #include <string>
11 #include <Windows.h>
13 //! Allow console output on Windows when Tsunagari is run from the console.
14 void wFixConsole();
16 //! Create a halting (modal) message box.
17 void wMessageBox(std::string title, std::string text);
19 #endif