summaryrefslogtreecommitdiff
path: root/src/deh_io.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/deh_io.h')
-rw-r--r--src/deh_io.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/deh_io.h b/src/deh_io.h
index 96de223d..2656f3e0 100644
--- a/src/deh_io.h
+++ b/src/deh_io.h
@@ -1,7 +1,7 @@
// Emacs style mode select -*- C++ -*-
//-----------------------------------------------------------------------------
//
-// $Id: deh_io.h 153 2005-10-02 23:49:01Z fraggle $
+// $Id: deh_io.h 175 2005-10-08 20:54:16Z fraggle $
//
// Copyright(C) 2005 Simon Howard
//
@@ -21,6 +21,9 @@
// 02111-1307, USA.
//
// $Log$
+// Revision 1.2 2005/10/08 20:54:16 fraggle
+// Proper dehacked error/warning framework. Catch a load more errors.
+//
// Revision 1.1 2005/10/02 23:49:01 fraggle
// The beginnings of dehacked support
//
@@ -40,6 +43,8 @@ deh_context_t *DEH_OpenFile(char *filename);
void DEH_CloseFile(deh_context_t *context);
int DEH_GetChar(deh_context_t *context);
char *DEH_ReadLine(deh_context_t *context);
+void DEH_Error(deh_context_t *context, char *msg, ...);
+void DEH_Warning(deh_context_t *context, char *msg, ...);
#endif /* #ifndef DEH_IO_H */