configure.ac: make it possible to turn X11 off
[rofl0r-gnuboy.git] / pcm.h
blob3719933520e1c5090c5e191b4dbe4124c69b8531
2 #ifndef __PCM_H__
3 #define __PCM_H__
6 #include "defs.h"
8 struct pcm
10 int hz, len;
11 int stereo;
12 byte *buf;
13 int pos;
16 extern struct pcm pcm;
19 #endif