mirror of https://github.com/lianthony/NT4.0
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
484 B
32 lines
484 B
//
|
|
// Copyright (c) 1996 Microsoft Corporation
|
|
//
|
|
// COMMON.H -- Common header
|
|
//
|
|
// History:
|
|
// 05/22/96 JosephJ Created
|
|
//
|
|
//
|
|
|
|
#ifndef _COMMON_H_
|
|
#define _COMMON_H_
|
|
|
|
#include <windows.h>
|
|
#include <stdio.h>
|
|
|
|
#define ASSERT(_c) \
|
|
((_c) ? 0: printf( \
|
|
"\n***Assertion failed in %s:%d\n***\n",\
|
|
__FILE__,\
|
|
__LINE__\
|
|
))
|
|
|
|
#include "consts.h"
|
|
#include "chksum.h"
|
|
#include "ilist.h"
|
|
#include "sync.h"
|
|
#include "sym.h"
|
|
#include "globals.h"
|
|
|
|
|
|
#endif // _COMMON_H_
|