aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/iphone/iphone_common.h
diff options
context:
space:
mode:
authorJohannes Schickel2012-02-19 21:44:37 +0100
committerJohannes Schickel2012-02-19 21:44:37 +0100
commit13358c541df46b03d3c25a9fa7e4615c64424517 (patch)
tree847d33aab03a76b66cadd416ce8bff0b5fe60bec /backends/platform/iphone/iphone_common.h
parent3d0316ccd215cbb1530f665ff195554e46559efe (diff)
downloadscummvm-rg350-13358c541df46b03d3c25a9fa7e4615c64424517.tar.gz
scummvm-rg350-13358c541df46b03d3c25a9fa7e4615c64424517.tar.bz2
scummvm-rg350-13358c541df46b03d3c25a9fa7e4615c64424517.zip
IPHONE: Add include guards.
Diffstat (limited to 'backends/platform/iphone/iphone_common.h')
-rw-r--r--backends/platform/iphone/iphone_common.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/backends/platform/iphone/iphone_common.h b/backends/platform/iphone/iphone_common.h
index 9bf559860e..d6d3a3dc6f 100644
--- a/backends/platform/iphone/iphone_common.h
+++ b/backends/platform/iphone/iphone_common.h
@@ -20,6 +20,9 @@
*
*/
+#ifndef BACKENDS_PLATFORM_IPHONE_IPHONE_COMMON_H
+#define BACKENDS_PLATFORM_IPHONE_IPHONE_COMMON_H
+
enum InputEvent {
kInputMouseDown,
kInputMouseUp,
@@ -79,3 +82,5 @@ uint getSizeNextPOT(uint size);
#ifdef __cplusplus
}
#endif
+
+#endif