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

📄 usergg.h

📁 Dialogic D41/E语音卡 的一个应用源代码
💻 H
字号:
/**
 **   Microsoft header files
 **/
#include <windows.h>
#include <winnt.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <conio.h>
#include <fcntl.h>
#include <time.h>
#include <sql.h>
#include <sqlext.h>
/**
 **   Dialogic header files
 **/
#include "srllib.h"    
#include "dxxxlib.h"
#include "dtilib.h"
#include "sctools.h"
#include "msilib.h"

#define  MAX_CHAN   4     /* allocate memory for this many channels */
#define  MAX_STAT   8

/********************************************************************
 **   Data structure which defines the states for each msi channel
 ********************************************************************/
typedef struct {
   int state;			/* msi station state */
   int file_hl;			/* ????              */
   int in_dev_hl;		/* call from type    */ 
   int msidevhandle;	/* msi channel device*/
   int channel;			/* vox channel       */
   int msi;				/* msi channel       */
   int confid;			/* conference  id    */ 
   } MPORT_TYPE;

typedef struct {
   int state;           /* state of channel             */
   int msg_fh;          /* handle for message files     */
   int devhandle;       /* handle for channel device    */
   int loop;			/* st_no_msi loop times			*/
   char tele[20];		
   char lasttime[20];	
   char op_flag;
   char useno[7];
   char checkno[7];
   char bankno[5];
   char pass[5];
   DV_DIGIT buffer;
   } PORT_TYPE;

typedef struct {
   int partynum;        /*Current number of the conferce            */
   int party[8+1];      /*Extension station is connecting to con      */
} CONFID;

//int dt_brdnum;          /* DTI board handle */
//int msidevhndl;         /* MSI board handle */

⌨️ 快捷键说明

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