From 3cc6cdf71942aba796f8d282020d1955f2fd84ef Mon Sep 17 00:00:00 2001 From: Jordi Vilalta Prat Date: Sat, 21 Feb 2009 10:47:56 +0000 Subject: Replaced "typedef struct _state state_t" with "struct EngineState" svn-id: r38678 --- engines/sci/engine/gc.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'engines/sci/engine/gc.h') diff --git a/engines/sci/engine/gc.h b/engines/sci/engine/gc.h index aa7b91264e..f255ea6c76 100644 --- a/engines/sci/engine/gc.h +++ b/engines/sci/engine/gc.h @@ -48,15 +48,15 @@ struct reg_t_Hash { // The reg_t_hash_map is actually really a hashset typedef Common::HashMap reg_t_hash_map; -reg_t_hash_map *find_all_used_references(state_t *s); +reg_t_hash_map *find_all_used_references(EngineState *s); /* Finds all used references and normalises them to their memory addresses -** Parameters: (state_t *) s: The state to gather all information from +** Parameters: (EngineState *) s: The state to gather all information from ** Returns : (reg_t_hash_map *) A hash map containing entries for all used references */ -void run_gc(state_t *s); +void run_gc(EngineState *s); /* Runs garbage collection on the current system state -** Parameters: (state_t *) s: The state in which we should gc +** Parameters: (EngineState *) s: The state in which we should gc */ } // End of namespace Sci -- cgit v1.2.3