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.

32 lines
591 B

  1. #include "basedef.h"
  2. #include "shdcom.h"
  3. #include "oslayer.h"
  4. #include "log.h"
  5. #include <stdlib.h>
  6. #include <ctype.h>
  7. #include <string.h>
  8. #include "assert.h"
  9. #include "ifs.h"
  10. #include "utils.h"
  11. #include "winerror.h"
  12. #include "vxdwraps.h"
  13. #include "cscsec.h"
  14. //got this from wdm.h....modified to use DEBUG
  15. #ifdef DEBUG
  16. #define KdPrint(_x_) DbgPrint _x_
  17. #define KdBreakPoint() DbgBreakPoint()
  18. #ifndef ASSERT
  19. #define ASSERT(__X) Assert(__X)
  20. #define ASSERTMSG(__X,__MSG) AssertMsg(__X,__MSG)
  21. #endif
  22. #else
  23. #define KdPrint(_x_)
  24. #define KdBreakPoint()
  25. #endif