summaryrefslogtreecommitdiff
path: root/src/heretic/doomdef.h
diff options
context:
space:
mode:
authorSimon Howard2008-09-11 22:12:09 +0000
committerSimon Howard2008-09-11 22:12:09 +0000
commit5abfa837d98dc7122df3628f66f0f2403b4b32d9 (patch)
tree21d353b5204b9abd00614057dce19c28795929a2 /src/heretic/doomdef.h
parente3f638419404fe03e5af0cf9607d550b55fe6c0c (diff)
downloadchocolate-doom-5abfa837d98dc7122df3628f66f0f2403b4b32d9.tar.gz
chocolate-doom-5abfa837d98dc7122df3628f66f0f2403b4b32d9.tar.bz2
chocolate-doom-5abfa837d98dc7122df3628f66f0f2403b4b32d9.zip
Remove duplicate w_wad.c from heretic/.
Subversion-branch: /branches/raven-branch Subversion-revision: 1224
Diffstat (limited to 'src/heretic/doomdef.h')
-rw-r--r--src/heretic/doomdef.h29
1 files changed, 3 insertions, 26 deletions
diff --git a/src/heretic/doomdef.h b/src/heretic/doomdef.h
index 21adbc2a..3cfafad4 100644
--- a/src/heretic/doomdef.h
+++ b/src/heretic/doomdef.h
@@ -49,6 +49,9 @@
// header generated by multigen utility
#include "info.h"
+// WAD file access
+#include "w_wad.h"
+
extern byte *destview, *destscreen; // PC direct to screen pointers
//
@@ -780,32 +783,6 @@ long LongSwap(long);
#include "z_zone.h"
-//-------
-//WADFILE
-//-------
-typedef struct
-{
- char name[8];
- int handle, position, size;
-} lumpinfo_t;
-
-extern lumpinfo_t *lumpinfo;
-extern int numlumps;
-
-void W_InitMultipleFiles(char **filenames);
-
-int W_CheckNumForName(char *name);
-int W_GetNumForName(char *name);
-
-int W_LumpLength(int lump);
-void W_ReadLump(int lump, void *dest);
-
-void *W_CacheLumpNum(int lump, int tag);
-void *W_CacheLumpName(char *name, int tag);
-
-
-
-
//----------
//BASE LEVEL
//----------