mirror of https://github.com/tongzx/nt5src
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
32 lines
505 B
/* Copyright (C) Microsoft Corporation, 1998. All rights reserved. */
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <stdarg.h>
|
|
#include <stddef.h>
|
|
#include <ctype.h>
|
|
#include <memory.h>
|
|
|
|
#define ASN1CPP
|
|
|
|
#include <windows.h>
|
|
|
|
#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof(arr[0]))
|
|
|
|
|
|
#ifdef _DEBUG
|
|
|
|
__inline void MyDebugBreak(void) { DebugBreak(); }
|
|
|
|
#undef ASSERT
|
|
#define ASSERT(x) if (!(x)) MyDebugBreak();
|
|
|
|
#else
|
|
|
|
#undef ASSERT
|
|
#define ASSERT(x)
|
|
|
|
#endif // _DEBUG
|
|
|
|
|