diff options
author | Jaromir Wysoglad | 2019-07-24 11:46:25 +0200 |
---|---|---|
committer | Filippos Karapetis | 2019-08-24 18:12:45 +0300 |
commit | 0db194eed47bfd30a0ac830d7aa0375969caaae5 (patch) | |
tree | 5d891079a377b4973833ae05d0c29870cab8fa62 | |
parent | 807c55e800bb69f606eb444237edf97d8056a80a (diff) | |
download | scummvm-rg350-0db194eed47bfd30a0ac830d7aa0375969caaae5.tar.gz scummvm-rg350-0db194eed47bfd30a0ac830d7aa0375969caaae5.tar.bz2 scummvm-rg350-0db194eed47bfd30a0ac830d7aa0375969caaae5.zip |
WIN32: Add include guard to codepage.h
-rw-r--r-- | backends/platform/sdl/win32/codepage.h | 5 |
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 |