aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/include/script.h
diff options
context:
space:
mode:
authorJordi Vilalta Prat2009-02-21 10:47:56 +0000
committerJordi Vilalta Prat2009-02-21 10:47:56 +0000
commit3cc6cdf71942aba796f8d282020d1955f2fd84ef (patch)
treeaf85e63f9e3c5438aec367e3e3398609f2db9eff /engines/sci/include/script.h
parent5d67e3de0f941fc3008c0609f8f9e8bb08ff1713 (diff)
downloadscummvm-rg350-3cc6cdf71942aba796f8d282020d1955f2fd84ef.tar.gz
scummvm-rg350-3cc6cdf71942aba796f8d282020d1955f2fd84ef.tar.bz2
scummvm-rg350-3cc6cdf71942aba796f8d282020d1955f2fd84ef.zip
Replaced "typedef struct _state state_t" with "struct EngineState"
svn-id: r38678
Diffstat (limited to 'engines/sci/include/script.h')
-rw-r--r--engines/sci/include/script.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/engines/sci/include/script.h b/engines/sci/include/script.h
index ad1e976914..00effd22a9 100644
--- a/engines/sci/include/script.h
+++ b/engines/sci/include/script.h
@@ -208,15 +208,14 @@ extern opcode_format formats[128][4];
void script_adjust_opcode_formats(int res_version);
int
-script_find_selector(struct _state *s, const char *selector_name);
+script_find_selector(EngineState *s, 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
** Returns : (int) The appropriate selector ID, or -1 on error
*/
-struct _state;
-void script_free_breakpoints(struct _state *s);
+void script_free_breakpoints(EngineState *s);
} // End of namespace Sci