forked from borsboom/vocoder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.h
33 lines (26 loc) · 877 Bytes
/
config.h
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
/******************************************************************************
* $Id: config.h,v 1.4 2002/09/20 02:30:51 emanuel Exp $
* Copyright (C) 1998 Emanuel Borsboom <[email protected]>
* Permission is granted to make any use of this code subject to the condition
* that all copies contain this notice and an indication of what has been
* changed.
*****************************************************************************/
#ifndef CONFIG_H_INCLUDED
#define CONFIG_H_INCLUDED
typedef int VBOOL;
#define FALSE 0
#define TRUE 1
typedef unsigned long U32;
typedef signed long S32;
typedef unsigned short U16;
typedef signed short S16;
typedef unsigned char U8;
typedef signed char S8;
typedef S32 VINT;
typedef S16 VSHORT;
typedef S8 VBYTE;
typedef U32 VUINT;
typedef U16 VUSHORT;
typedef U8 VUBYTE;
typedef double VREAL;
#endif /* CONFIG_H_INCLUDED */