/* this file is a part of amp software, (C) tomislav uzelac 1996,19971*/23/* these should not be touched4*/5#define SYNCWORD 0xfff67#ifndef TRUE8#define TRUE 19#endif10#ifndef FALSE11#define FALSE 012#endif1314/*15* version16*/17#define MAJOR 018#define MINOR 719#define PATCH 6202122#include "defs.h"23#include "proto.h"2425#ifndef MAX26#define MAX(a,b) ((a) > (b) ? (a) : (b))27#endif28#define MAX3(a,b,c) ((a) > (b) ? MAX(a, c) : MAX(b, c))29#ifndef MIN30#define MIN(a,b) ((a) < (b) ? (a) : (b))31#endif323334extern int AUDIO_BUFFER_SIZE;353637