File: pcm.h

package info (click to toggle)
gnuboy 1.0.3-3
  • links: PTS
  • area: contrib
  • in suites: etch, etch-m68k, lenny
  • size: 1,064 kB
  • ctags: 2,349
  • sloc: ansic: 12,467; asm: 2,641; cpp: 190; makefile: 175; sh: 152
file content (21 lines) | stat: -rw-r--r-- 158 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

#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