gnuboy-for-dfi/pcm.h

22 lines
158 B
C

#ifndef __PCM_H__
#define __PCM_H__
#include "defs.h"
struct pcm
{
int hz, len;
int stereo;
byte *buf;
int pos;
};
extern struct pcm pcm;
#endif