summaryrefslogtreecommitdiffstats
path: root/private/unimodem/new/mic/common.h
blob: 6dfe74c45ee67c3ed467f539b90b3058ac6ec9a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//
//		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_