⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 vocinfo.h

📁 基于dialogic语音卡的IVR系统源代码
💻 H
字号:
#ifndef VOCINFO_DEF
#define VOCINFO_DEF

typedef struct{
	char  Id;				/* Word Id in dbo.wordidx               */
	int   Offset;			/* Offset in combination  voicefile     */
	int   Length;			/* Voice Length                         */
	char  Note[21];			/* Comment of the Id                    */
}IDXINFO;

typedef struct 
{
	char	Kind;			/* 0-play file, 1-play combination voice */
	char    Content[1000];	/* Voice filename or word combination    */
	char    Condition;      /* Terminate condition                   */
}VOCINFO;

typedef struct
{
	int		service;
	int		reqid;
	BOOL	bIsIvr;
	BOOL	bIsClear;
	int		ac_count;
	VOCINFO *pVocinfo;
}VOCNODE;

extern int      CombCount[];
extern IDXINFO  * pCombIdx[];
extern char     * pCombBuf[];
extern char     * pSilenceBuf;

#endif // of VOCINFO_DEF

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -