2004-08-16 Casper S. Hornstrup <[email protected]>

* lib/user32/include/debug.h (ASSERT): Don't call KeBugCheck.
	* lib/user32/misc/dllmain.c (KeBugCheck): Remove declaration.

svn path=/trunk/; revision=10571
This commit is contained in:
Casper Hornstrup
2004-08-16 17:28:46 +00:00
parent 3a5f687b18
commit 5b9f8a442b
3 changed files with 6 additions and 4 deletions
+5
View File
@@ -1,3 +1,8 @@
2004-08-16 Casper S. Hornstrup <[email protected]>
* lib/user32/include/debug.h (ASSERT): Don't call KeBugCheck.
* lib/user32/misc/dllmain.c (KeBugCheck): Remove declaration.
2004-08-16 Casper S. Hornstrup <[email protected]>
* drivers/net/tcpip/include/.cvsignore: New file.
+1 -1
View File
@@ -38,7 +38,7 @@ extern DWORD DebugTraceLevel;
#ifdef NASSERT
#define ASSERT(x)
#else /* NASSERT */
#define ASSERT(x) if (!(x)) { D(MIN_TRACE, ("Assertion "#x" failed at %s:%d\n", __FILE__, __LINE__)); KeBugCheck(0); }
#define ASSERT(x) if (!(x)) { D(MIN_TRACE, ("Assertion "#x" failed at %s:%d\n", __FILE__, __LINE__)); }
#endif /* NASSERT */
#define ASSERT_IRQL(x) ASSERT(KeGetCurrentIrql() <= (x))
-3
View File
@@ -23,9 +23,6 @@ extern CRITICAL_SECTION gcsMPH;
static ULONG User32TlsIndex;
HINSTANCE User32Instance;
/* To make the linker happy */
VOID STDCALL KeBugCheck (ULONG BugCheckCode) {}
HWINSTA ProcessWindowStation;
PUSER32_THREAD_DATA