mirror of
https://github.com/reactos/reactos.git
synced 2025-08-13 05:35:31 +00:00
23 lines
372 B
C
23 lines
372 B
C
![]() |
/*
|
||
|
* COPYRIGHT: See COPYING in the top level directory
|
||
|
* PROJECT: Dummy NIC Driver
|
||
|
* FILE: debug.h
|
||
|
* PURPOSE: Debugging support macros
|
||
|
*/
|
||
|
#ifndef __DEBUG_H
|
||
|
#define __DEBUG_H
|
||
|
|
||
|
#ifdef DBG
|
||
|
|
||
|
#define ASSERT_IRQL_EQUAL(x) ASSERT(KeGetCurrentIrql() == (x))
|
||
|
|
||
|
#else /* DBG */
|
||
|
|
||
|
#define ASSERT_IRQL_EQUAL(x)
|
||
|
|
||
|
#endif /* DBG */
|
||
|
|
||
|
#endif /* __DEBUG_H */
|
||
|
|
||
|
/* EOF */
|