aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/Sys/SysClassRegistry.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/wintermute/Sys/SysClassRegistry.h')
-rw-r--r--engines/wintermute/Sys/SysClassRegistry.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/wintermute/Sys/SysClassRegistry.h b/engines/wintermute/Sys/SysClassRegistry.h
index 679c92030e..a4a410527d 100644
--- a/engines/wintermute/Sys/SysClassRegistry.h
+++ b/engines/wintermute/Sys/SysClassRegistry.h
@@ -66,11 +66,11 @@ public:
CSysClassRegistry();
virtual ~CSysClassRegistry();
- ERRORCODE enumInstances(SYS_INSTANCE_CALLBACK lpCallback, const char *className, void *lpData);
- ERRORCODE loadTable(CBGame *Game, CBPersistMgr *PersistMgr);
- ERRORCODE saveTable(CBGame *Game, CBPersistMgr *PersistMgr, bool quickSave);
- ERRORCODE loadInstances(CBGame *Game, CBPersistMgr *PersistMgr);
- ERRORCODE saveInstances(CBGame *Game, CBPersistMgr *PersistMgr, bool quickSave);
+ bool enumInstances(SYS_INSTANCE_CALLBACK lpCallback, const char *className, void *lpData);
+ bool loadTable(CBGame *Game, CBPersistMgr *PersistMgr);
+ bool saveTable(CBGame *Game, CBPersistMgr *PersistMgr, bool quickSave);
+ bool loadInstances(CBGame *Game, CBPersistMgr *PersistMgr);
+ bool saveInstances(CBGame *Game, CBPersistMgr *PersistMgr, bool quickSave);
void *idToPointer(int classID, int instanceID);
bool getPointerID(void *pointer, int *classID, int *instanceID);
bool registerClass(CSysClass *classObj);