Changeset 7633 for trunk/src/win32k/kKrnlLib/include/kAssert.h
- Timestamp:
- Dec 14, 2001, 10:36:31 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/win32k/kKrnlLib/include/kAssert.h
r6701 r7633 1 /* $Id: kAssert.h,v 1. 1 2001-09-14 01:50:17bird Exp $1 /* $Id: kAssert.h,v 1.2 2001-12-14 21:36:31 bird Exp $ 2 2 * 3 3 * kAssert - assert macro(s). 4 * This file is DEAD now - use kTypes.h instead. 4 5 * 5 6 * Copyright (c) 1999-2001 knut st. osmundsen (knut.stange.osmundsen@mynd.no) … … 13 14 #endif 14 15 15 KBOOL KLIBCALL kAssertMsg(const char *pszExpr, const char *pszFilename, unsigned uLine, const char *pszFunction);16 17 #define kASSERT(expr) \18 ((expr) ? (void)0 : (kAssertMsg(#expr, __FILE__, __LINE__, __FUNCTION__) ? INT3() : (void)0))19 20 16 #endif /* _kAssert_h_ */ 21 17
Note:
See TracChangeset
for help on using the changeset viewer.