summaryrefslogtreecommitdiffstats
path: root/trunk/source/debug.h
diff options
context:
space:
mode:
authornlanza <nlanza@c06c8d41-db1a-0410-9941-cceddc491573>2006-08-13 02:19:00 +0000
committernlanza <nlanza@c06c8d41-db1a-0410-9941-cceddc491573>2006-08-13 02:19:00 +0000
commitaa88fdd8c6ad2da5eb5bd933e2d53d56cd8c176f (patch)
treed0551b96eaebb5b55694579fb8dae4abc7a38407 /trunk/source/debug.h
parent2b32f164e6ca1c4b3d587789f6cf46f46fe02fe8 (diff)
downloadcrawl-ref-aa88fdd8c6ad2da5eb5bd933e2d53d56cd8c176f.tar.gz
crawl-ref-aa88fdd8c6ad2da5eb5bd933e2d53d56cd8c176f.zip
Clean up a mistake in the SVN import.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@10 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'trunk/source/debug.h')
-rw-r--r--trunk/source/debug.h147
1 files changed, 0 insertions, 147 deletions
diff --git a/trunk/source/debug.h b/trunk/source/debug.h
deleted file mode 100644
index cbc8161d3b..0000000000
--- a/trunk/source/debug.h
+++ /dev/null
@@ -1,147 +0,0 @@
-/*
- * File: debug.h
- * Summary: Debug and wizard related functions.
- * Written by: Linley Henzell and Jesse Jones
- *
- * Change History (most recent first):
- *
- * <4> 5/30/99 JDJ Added synch checks.
- * <3> 5/06/99 JDJ Added TRACE.
- * <2> -/--/-- JDJ Added a bunch of debugging macros. Old code is now #if WIZARD.
- * <1> -/--/-- LRH Created
- */
-#ifndef DEBUG_H
-#define DEBUG_H
-
-// Synch with ANSI definitions.
-#if DEBUG && defined(NDEBUG)
-#error DEBUG and NDEBUG are out of sync!
-#endif
-
-#if !DEBUG && !defined(NDEBUG)
-#error DEBUG and NDEBUG are out of sync!
-#endif
-
-// Synch with MSL definitions.
-#if __MSL__ && DEBUG != defined(MSIPL_DEBUG_MODE)
-#error DEBUG and MSIPL_DEBUG_MODE are out of sync!
-#endif
-
-// Synch with MSVC.
-#if _MSC_VER >= 1100 && DEBUG != defined(_DEBUG)
-#error DEBUG and _DEBUG are out of sync!
-#endif
-
-
-#ifndef _lint
-#define COMPILE_CHECK(p) {struct _CC {char a[(p) ? 1 : -1];};} 0
-#else
-#define COMPILE_CHECK(p)
-#endif
-
-#if DEBUG
-
-void AssertFailed(const char *expr, const char *file, int line);
-
-#define ASSERT(p) do {if (!(p)) AssertFailed(#p, __FILE__, __LINE__);} while (false)
-#define VERIFY(p) ASSERT(p)
-
-void DEBUGSTR(const char *format,...);
-void TRACE(const char *format,...);
-
-#else
-
-#define ASSERT(p) ((void) 0)
-#define VERIFY(p) do {if (p) ;} while (false)
-
-inline void __DUMMY_TRACE__(...)
-{
-}
-
-#define DEBUGSTR 1 ? ((void) 0) : __DUMMY_TRACE__
-#define TRACE 1 ? ((void) 0) : __DUMMY_TRACE__
-
-#endif
-
-
-// last updated 12may2000 {dlb}
-/* ***********************************************************************
- * called from: acr
- * *********************************************************************** */
-void cast_spec_spell(void);
-
-
-// last updated 12may2000 {dlb}
-/* ***********************************************************************
- * called from: acr
- * *********************************************************************** */
-void cast_spec_spell_name(void);
-
-
-// last updated 12may2000 {dlb}
-/* ***********************************************************************
- * called from: acr
- * *********************************************************************** */
-void create_spec_monster(void);
-
-
-// last updated 12may2000 {dlb}
-/* ***********************************************************************
- * called from: acr
- * *********************************************************************** */
-void create_spec_monster_name(void);
-
-
-// last updated 12may2000 {dlb}
-/* ***********************************************************************
- * called from: ( this does not seem to be used at all ... {dlb} )
- * *********************************************************************** */
-void create_spec_object(void);
-void tweak_object(void);
-
-// last updated 12say2001 {dlb}
-/* ***********************************************************************
- * called from: acr
- * *********************************************************************** */
-void debug_add_skills(void);
-void debug_set_skills(void);
-void debug_set_all_skills(void);
-
-// last updated 12may2000 {dlb}
-/* ***********************************************************************
- * called from: acr
- * *********************************************************************** */
-void debug_add_skills(void);
-
-// last updated 17sep2001 {dlb}
-/* ***********************************************************************
- * called from: acr
- * *********************************************************************** */
-bool debug_add_mutation(void);
-
-
-// last updated 12may2000 {dlb}
-/* ***********************************************************************
- * called from: direct - food - items
- * *********************************************************************** */
-void error_message_to_player(void);
-
-
-// last updated 12may2000 {dlb}
-/* ***********************************************************************
- * called from: acr
- * *********************************************************************** */
-void level_travel( int delta );
-
-
-// last updated 12may2000 {dlb}
-/* ***********************************************************************
- * called from: acr - direct
- * *********************************************************************** */
-void stethoscope(int mwh);
-
-void debug_item_scan( void );
-void debug_get_religion( void );
-void debug_change_species( void );
-
-#endif