diff options
author | tron <tron@openttd.org> | 2005-08-13 21:34:05 +0000 |
---|---|---|
committer | tron <tron@openttd.org> | 2005-08-13 21:34:05 +0000 |
commit | 38f344b3516e43b007e3cd821c46beadaba78df5 (patch) | |
tree | 313b302c076359ecd715627a1f81d14ac09902f3 /saveload.h | |
parent | 302055fc150a182e4bc8b8c215205980f8589272 (diff) | |
download | openttd-38f344b3516e43b007e3cd821c46beadaba78df5.tar.xz |
(svn r2863) Move some type declarations into saveload.c, should've been part of r2819
Diffstat (limited to 'saveload.h')
-rw-r--r-- | saveload.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/saveload.h b/saveload.h index 5dd6888a9..78a2b170f 100644 --- a/saveload.h +++ b/saveload.h @@ -41,9 +41,6 @@ typedef struct { byte null; } NullStruct; -typedef void WriterProc(uint len); -typedef uint ReaderProc(void); - typedef enum SLRefType { REF_ORDER = 0, REF_VEHICLE = 1, @@ -53,9 +50,6 @@ typedef enum SLRefType { REF_ROADSTOPS = 5 } SLRefType; -typedef uint ReferenceToIntProc(const void *obj, SLRefType rt); -typedef void *IntToReferenceProc(uint index, SLRefType rt); - extern byte _sl_version; /// the major savegame version identifier extern uint16 _sl_full_version; /// the full version of the savegame |