Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
170 B

  1. #pragma once
  2. #ifdef ASSERT
  3. #undef ASSERT
  4. #endif
  5. #ifdef DBG
  6. #define ASSERT(q) ( (q) ? TRUE : (DbgBreakPoint(), FALSE) )
  7. #else
  8. #define ASSERT(q) (TRUE)
  9. #endif