reactos/drivers/network/dd/dummynic/debug.h
Cameron Gutman 2f05ba10c9 - Created a dummy nic driver for testing purposes
- Still a work in progress

svn path=/branches/aicom-network-fixes/; revision=36500
2008-09-25 01:02:08 +00:00

22 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 */