aboutsummaryrefslogtreecommitdiff
path: root/saga/interface.h
diff options
context:
space:
mode:
authorEugene Sandulenko2004-08-22 18:28:42 +0000
committerEugene Sandulenko2004-08-22 18:28:42 +0000
commitbfd0b427000b651e2964ffbe04eb9bce4f06dae4 (patch)
treeb020bc96226a40cd52f287812376ecffc2bf506c /saga/interface.h
parent4f51ae998842324c268a08a6b88ca9e6f8b84c4e (diff)
downloadscummvm-rg350-bfd0b427000b651e2964ffbe04eb9bce4f06dae4.tar.gz
scummvm-rg350-bfd0b427000b651e2964ffbe04eb9bce4f06dae4.tar.bz2
scummvm-rg350-bfd0b427000b651e2964ffbe04eb9bce4f06dae4.zip
o Eliminate all structure _tags.
o Fix RSCFile on MSVC8. o Started fixing script opcodes. svn-id: r14686
Diffstat (limited to 'saga/interface.h')
-rw-r--r--saga/interface.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/saga/interface.h b/saga/interface.h
index 3876396b04..7ce3163735 100644
--- a/saga/interface.h
+++ b/saga/interface.h
@@ -31,10 +31,10 @@
namespace Saga {
-typedef enum INTERFACE_UPDATE_FLAGS_tag {
+enum INTERFACE_UPDATE_FLAGS {
UPDATE_MOUSEMOVE = 1,
UPDATE_MOUSECLICK
-} INTERFACE_UPDATE_FLAGS;
+};
#define R_VERB_STRLIMIT 32
@@ -72,18 +72,18 @@ typedef enum INTERFACE_UPDATE_FLAGS_tag {
#define IHNM_LPORTRAIT_X 5
#define IHNM_LPORTRAIT_Y 4
-typedef enum R_PANEL_MODES_tag {
+enum R_PANEL_MODES {
PANEL_COMMAND,
PANEL_DIALOGUE
-} R_PANEL_MODES;
+};
-typedef enum R_BUTTON_FLAGS_tag {
+enum R_BUTTON_FLAGS {
BUTTON_NONE = 0x0,
BUTTON_LABEL = 0x01,
BUTTON_BITMAP = 0x02,
BUTTON_SET = 0x04
-} R_BUTTON_FLAGS;
+};
#define BUTTON_VERB ( BUTTON_LABEL | BUTTON_BITMAP | BUTTON_SET )