Source code of Windows XP (NT5)
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
505 B

  1. /* Copyright (C) Microsoft Corporation, 1998. All rights reserved. */
  2. #include <stdio.h>
  3. #include <string.h>
  4. #include <stdlib.h>
  5. #include <stdarg.h>
  6. #include <stddef.h>
  7. #include <ctype.h>
  8. #include <memory.h>
  9. #define ASN1CPP
  10. #include <windows.h>
  11. #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof(arr[0]))
  12. #ifdef _DEBUG
  13. __inline void MyDebugBreak(void) { DebugBreak(); }
  14. #undef ASSERT
  15. #define ASSERT(x) if (!(x)) MyDebugBreak();
  16. #else
  17. #undef ASSERT
  18. #define ASSERT(x)
  19. #endif // _DEBUG