aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/engine/script.h
diff options
context:
space:
mode:
authorFilippos Karapetis2009-05-31 02:37:24 +0000
committerFilippos Karapetis2009-05-31 02:37:24 +0000
commita4d13cef8c48eecb1f73f2d509437261a663ab05 (patch)
treeb4cbf2d09a3a7fb78f982168a513e63e790b8f78 /engines/sci/engine/script.h
parent896df6daf337bf83f27193918eb386321c4b0166 (diff)
downloadscummvm-rg350-a4d13cef8c48eecb1f73f2d509437261a663ab05.tar.gz
scummvm-rg350-a4d13cef8c48eecb1f73f2d509437261a663ab05.tar.bz2
scummvm-rg350-a4d13cef8c48eecb1f73f2d509437261a663ab05.zip
More objectification of the Vocabulary functions
svn-id: r41057
Diffstat (limited to 'engines/sci/engine/script.h')
-rw-r--r--engines/sci/engine/script.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sci/engine/script.h b/engines/sci/engine/script.h
index 037ba3a806..ab7ba7af80 100644
--- a/engines/sci/engine/script.h
+++ b/engines/sci/engine/script.h
@@ -51,7 +51,7 @@ enum ScriptObjectTypes {
SCI_OBJ_LOCALVARS
};
-void script_dissect(ResourceManager *resmgr, int res_no, WordMap &parserWords, const Common::StringList &selectorNames);
+void script_dissect(ResourceManager *resmgr, int res_no, Vocabulary *vocab);
/* Opcode formats as used by script.c */
enum opcode_format {
@@ -203,7 +203,7 @@ extern opcode_format g_opcode_formats[128][4];
void script_adjust_opcode_formats(int res_version);
-int script_find_selector(EngineState *s, const char *selector_name);
+int script_find_selector(Common::StringList *selectorNames, const char *selector_name);
/* Determines the selector ID of a selector by its name
** Parameters: (state_t *) s: VM state
** (char *) selector_name: Name of the selector to look up