1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-12 17:19:09 +00:00

(svn r2863) Move some type declarations into saveload.c, should've been part of r2819

This commit is contained in:
tron
2005-08-13 21:34:05 +00:00
parent 302055fc15
commit 38f344b351
2 changed files with 6 additions and 6 deletions

View File

@@ -38,6 +38,12 @@ enum {
byte _sl_version; /// the major savegame version identifier
uint16 _sl_full_version; /// the full version of the savegame
typedef void WriterProc(uint len);
typedef uint ReaderProc(void);
typedef uint ReferenceToIntProc(const void *obj, SLRefType rt);
typedef void *IntToReferenceProc(uint index, SLRefType rt);
/** The saveload struct, containing reader-writer functions, bufffer, version, etc. */
static struct {
bool save; /// are we doing a save or a load atm. True when saving