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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
#ifndef SND_H
#define SND_H
#include "mus-config.h"
#include <ctype.h>
#include <stddef.h>
#include <math.h>
#include <stdio.h>
#include <fcntl.h>
#include <signal.h>
#include <limits.h>
#include <errno.h>
#include <stdlib.h>
#ifndef _MSC_VER
#include <unistd.h>
#include <locale.h>
#endif
#include <string.h>
#include <stdarg.h>
#include <time.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <stdint.h>
#include <inttypes.h>
#include "_sndlib.h"
#include "xen.h"
#include "clm.h"
#include "sndlib2xen.h"
#include "vct.h"
#include "snd-0.h"
#ifdef USE_MOTIF
#include "snd-x0.h"
#else
#include "snd-nogui0.h"
#endif
#include "snd-1.h"
#ifdef USE_MOTIF
#include "snd-x1.h"
#else
#include "snd-nogui1.h"
#endif
#include "snd-strings.h"
#define SND_DATE "19-Nov-25"
#ifndef SND_VERSION
#define SND_VERSION "25.9"
#endif
#define SND_MAJOR_VERSION "25"
#define SND_MINOR_VERSION "9"
#endif
|