Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
BitchX
GitHub Repository: BitchX/BitchX1.3
Path: blob/master/dll/amp/amp.h
1072 views
1
/* this file is a part of amp software, (C) tomislav uzelac 1996,1997
2
*/
3
4
/* these should not be touched
5
*/
6
#define SYNCWORD 0xfff
7
8
#ifndef TRUE
9
#define TRUE 1
10
#endif
11
#ifndef FALSE
12
#define FALSE 0
13
#endif
14
15
/*
16
* version
17
*/
18
#define MAJOR 0
19
#define MINOR 7
20
#define PATCH 6
21
22
23
#include "defs.h"
24
#include "proto.h"
25
26
#ifndef MAX
27
#define MAX(a,b) ((a) > (b) ? (a) : (b))
28
#endif
29
#define MAX3(a,b,c) ((a) > (b) ? MAX(a, c) : MAX(b, c))
30
#ifndef MIN
31
#define MIN(a,b) ((a) < (b) ? (a) : (b))
32
#endif
33
34
35
extern int AUDIO_BUFFER_SIZE;
36
37