vocinfo.h

来自「基于dialogic语音卡的IVR系统源代码」· C头文件 代码 · 共 35 行

H
35
字号
#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 + =
减小字号Ctrl + -
显示快捷键?