aboutsummaryrefslogtreecommitdiff
path: root/backends
diff options
context:
space:
mode:
authorJaromir Wysoglad2019-07-24 11:46:25 +0200
committerFilippos Karapetis2019-08-24 18:12:45 +0300
commit0db194eed47bfd30a0ac830d7aa0375969caaae5 (patch)
tree5d891079a377b4973833ae05d0c29870cab8fa62 /backends
parent807c55e800bb69f606eb444237edf97d8056a80a (diff)
downloadscummvm-rg350-0db194eed47bfd30a0ac830d7aa0375969caaae5.tar.gz
scummvm-rg350-0db194eed47bfd30a0ac830d7aa0375969caaae5.tar.bz2
scummvm-rg350-0db194eed47bfd30a0ac830d7aa0375969caaae5.zip
WIN32: Add include guard to codepage.h
Diffstat (limited to 'backends')
-rw-r--r--backends/platform/sdl/win32/codepage.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/backends/platform/sdl/win32/codepage.h b/backends/platform/sdl/win32/codepage.h
index 98ef3ce7fe..db1f7dd78b 100644
--- a/backends/platform/sdl/win32/codepage.h
+++ b/backends/platform/sdl/win32/codepage.h
@@ -20,6 +20,9 @@
*
*/
+#ifndef WIN32_CODEPAGE_H
+#define WIN32_CODEPAGE_H
+
#include "common/scummsys.h"
#include "common/str.h"
namespace Win32 {
@@ -191,3 +194,5 @@ const CodePageDescription g_cpDescriptions[] = {
int getCodePageId(Common::String name);
}
+
+#endif // WIN32_CODEPAGE_H