diff options
author | Eugene Sandulenko | 2009-06-17 05:18:48 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2009-06-17 05:18:48 +0000 |
commit | 569fe8804157c203e95cc90fed48d65e263b5bd8 (patch) | |
tree | 80f8baea5d4bb0da4e00fc8d920cd4410cdd12b0 /engines/draci | |
parent | 997b37eff15485c095181b2b1c3ade24722bdb8f (diff) | |
download | scummvm-rg350-569fe8804157c203e95cc90fed48d65e263b5bd8.tar.gz scummvm-rg350-569fe8804157c203e95cc90fed48d65e263b5bd8.tar.bz2 scummvm-rg350-569fe8804157c203e95cc90fed48d65e263b5bd8.zip |
Added prefices to safeguard defines in order to minimize risk of name clash.
svn-id: r41605
Diffstat (limited to 'engines/draci')
-rw-r--r-- | engines/draci/barchive.h | 6 | ||||
-rw-r--r-- | engines/draci/font.h | 6 | ||||
-rw-r--r-- | engines/draci/gpldisasm.h | 6 | ||||
-rw-r--r-- | engines/draci/screen.h | 6 | ||||
-rw-r--r-- | engines/draci/sprite.h | 6 |
5 files changed, 15 insertions, 15 deletions
diff --git a/engines/draci/barchive.h b/engines/draci/barchive.h index a53fb79ee1..e52e41e737 100644 --- a/engines/draci/barchive.h +++ b/engines/draci/barchive.h @@ -23,8 +23,8 @@ * */ -#ifndef BARCHIVE_H -#define BARCHIVE_H +#ifndef DRACI_BARCHIVE_H +#define DRACI_BARCHIVE_H #include "common/str.h" @@ -94,4 +94,4 @@ private: } // End of namespace Draci -#endif // BARCHIVE_H +#endif // DRACI_BARCHIVE_H diff --git a/engines/draci/font.h b/engines/draci/font.h index 3e8b120397..12cc8bf9a9 100644 --- a/engines/draci/font.h +++ b/engines/draci/font.h @@ -23,8 +23,8 @@ * */ -#ifndef FONT_H -#define FONT_H +#ifndef DRACI_FONT_H +#define DRACI_FONT_H #include "graphics/font.h" @@ -83,4 +83,4 @@ private: } // End of namespace Draci -#endif // FONT_H +#endif // DRACI_FONT_H diff --git a/engines/draci/gpldisasm.h b/engines/draci/gpldisasm.h index 9f33bafc94..f93fd1f4a5 100644 --- a/engines/draci/gpldisasm.h +++ b/engines/draci/gpldisasm.h @@ -25,8 +25,8 @@ #include "common/str.h" -#ifndef GPLDISASM_H -#define GPLDISASM_H +#ifndef DRACI_GPLDISASM_H +#define DRACI_GPLDISASM_H namespace Draci { @@ -53,4 +53,4 @@ int gpldisasm(byte *gplcode, uint16 len); } -#endif // GPLDIASM_H +#endif // DRACI_GPLDIASM_H diff --git a/engines/draci/screen.h b/engines/draci/screen.h index 0180cc7f6f..5983e73c81 100644 --- a/engines/draci/screen.h +++ b/engines/draci/screen.h @@ -23,8 +23,8 @@ * */ -#ifndef SCREEN_H -#define SCREEN_H +#ifndef DRACI_SCREEN_H +#define DRACI_SCREEN_H #include "graphics/surface.h" @@ -57,4 +57,4 @@ private: } // End of namespace Draci -#endif // SCREEN_H +#endif // DRACI_SCREEN_H diff --git a/engines/draci/sprite.h b/engines/draci/sprite.h index 1b4f718896..fab59958f2 100644 --- a/engines/draci/sprite.h +++ b/engines/draci/sprite.h @@ -23,8 +23,8 @@ * */ -#ifndef SPRITE_H -#define SPRITE_H +#ifndef DRACI_SPRITE_H +#define DRACI_SPRITE_H namespace Draci { @@ -61,4 +61,4 @@ public: } // End of namespace Draci -#endif // SPRITE_H +#endif // DRACI_SPRITE_H |