wavexg.h
来自「TAPI编程应用」· C头文件 代码 · 共 24 行
H
24 行
// A Header file for wave functions for dialer/talker
// (c) Dialogic corp 1995, 1996
// This will vanish when integrated TAPI/WAVE driver is implemented; hence quik&dirty way
#define MAXWAVEDEVS 32 // arbitrarily limit the number of WAVE devs
// States
#define IDLE 0
#define PLAYING_MESSAGE 1
#define PLAYING_BEEP 2
#define RECORDING_MESSAGE 3
HWAVEOUT WavexPlay(HWND, UINT, LPSTR); // play the WAVE file
HWAVEIN WavexRecord(HWND, UINT); // record the Wave file
void WavexFinishPlay(WPARAM, LPARAM); // handle the driver notification
void WavexFinishRecord(WPARAM, LPARAM, LPSTR); // handle the driver notification
void WavexClose(); // Destructor
int WavexGetState(); // Extract state
void WavexSetState(int); // Set state
void WavexSaveData(LPWAVEHDR, LPSTR);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?