sound.h
来自「日本的手持pda源码.wince下使用,完全开源」· C头文件 代码 · 共 43 行
H
43 行
#ifndef __SOUND_H__#define __SOUND_H__struct sndchan{ int on; unsigned int pos; int cnt, encnt, swcnt; int len, enlen, swlen; int swfreq; int freq; int envol, endir;
int mixl, mixr;
int hold;
int type; // S1, S2 only
int swdir, swshift; // S1 only};struct snd{ int rate; struct sndchan ch[4]; byte wave[16];
int master_voll, master_volr;};extern struct snd snd;#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?