亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? dialogic.java

?? 著名的dialogic電話語音卡的java驅(qū)動(dòng)程序,已經(jīng)驗(yàn)證可用。
?? JAVA
?? 第 1 頁 / 共 5 頁
字號:
//
// Dialogic.java: Dialogic access
// $Id: Dialogic.java,v 1.38 2003/11/05 12:33:23 tron Exp tron $

/* 
 * Copyright (c) 1999 Carlos G Mendioroz.
 *
 *  This file is part of D4J.
 *
 *  D4J is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Lesser General Public
 *  License as published by the Free Software Foundation; either
 *  version 2 of the License, or (at your option) any later version.
 *  
 *  D4J is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *  Lesser General Public License for more details.
 *  
 *  You should have received a copy of the GNU Lesser General Public
 *  License along with this library; if not, write to the
 *  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 *  Boston, MA  02111-1307, USA.
 *
 * Report problems and direct all questions to:
 *
 *	tron@acm.org
 */
package local.dialogic;
public class Dialogic
{
    // Variables

    // Native methods
    
    // Utility
    protected static native int openFile(String filename, int mode);
    protected static native void closeFile(int fd);
    
    // SR
    private static native int sr_libinit();
    public static native int sr_getboardcnt(String type);
    protected static native void sr_waitevt(EVT evt); 

    // DX
    private static native int dx_libinit();
    protected static native int dx_open(String name, int flags);
    protected static native void dx_close(Voice dev);
    protected static native int dx_setevtmsk(int dev, int mask);
    protected static native int dx_setdigtyp(int dev, int mask);
    protected static native int dx_setparm(int dev, int par, int val);
    protected static native int dx_sethook(int dev, int hook, int mode);
    protected static native int dx_play(Voice dev, IOTT iott, TPT tpt, int mode);
    protected static native int dx_rec(Voice dev, IOTT iott, TPT tpt, int mode);
    protected static native int dx_getdig(Voice dev, TPT tpt, int mode);
    protected static native int dx_getdig(Voice dev, byte buf[]);
    protected static native int dx_clrdigbuf(int dev);
    protected static native int dx_deltones(int dev);
    protected static native int dx_bldst(int id, int t1, int d1, int mode);
    protected static native int dx_blddt(int id, int t1, int d1, int t2, int d2, int mode);
    protected static native int dx_addtone(int dev, int digit, int type);
    protected static native int dx_enbtone(int dev, int id, int mask);
    protected static native int dx_distone(int dev, int id, int mask);
    protected static native int dx_playtone(Voice dev, TNGEN tngen, TPT tpt, int mode);
    protected static native int ATDX_STATE(int dev);
    protected static native int ATDX_LINEST(int dev);
    protected static native int ATDX_CPTERM(int dev);
    protected static native int dx_stopch(int dev, int mode);
    protected static native int dx_dial(int dev, String number, DXCAP cap, int mode);
    protected static native int dx_getxmitslot(int dev);
    protected static native void dx_listen(int dev, int ts);
    protected static native void dx_unlisten(int dev);
    protected static native int ag_getxmitslot(int dev);
    protected static native void ag_listen(int dev, int ts);
    protected static native void ag_unlisten(int dev);
    protected static native int dx_playiottdata(Voice dev, IOTT iott, TPT tpt, XPB xbp, int mode);
    protected static native int dx_reciottdata(Voice dev, IOTT iott, TPT tpt, XPB xbp, int mode);
    protected static native int dx_mreciottdata(Voice dev, IOTT iott, TPT tpt, XPB xbp, int mode, int ts1, int ts2);
    protected static native int dx_setchxfercnt(int dev, int bufnum);
    protected static native int dx_gtcallid(int dev, byte buf[]);
    protected static native int dx_gtextcallid(int dev, int type, byte buf[]);
    protected static native int dx_initcallp(int dev);
    protected static native int dx_getparm(int dev, int par);
    protected static native int ATDX_BUFDIGS(int dev);
    protected static native int ATDX_TRCOUNT(int dev);
        
    // DT
    private static native int dt_libinit();
    protected static native int dt_open(String name, int flags);
    protected static native void dt_close(int dev);
    protected static native int dt_getparm(int dev, int par);
    protected static native void dt_setparm(int dev, int par, int value);
    protected static native int dt_getxmitslot(int dev);
    protected static native void dt_listen(int dev, int ts);
    protected static native void dt_unlisten(int dev);
    protected static native int dt_getevtmsk(int dev, int event);
    protected static native void dt_setevtmsk(int dev, int event, int mask, int mode);
    protected static native int dt_settssig(int dev, int sig, int mode);
    protected static native int ATDT_TSSGBIT(int dev);
    
    // DCB
    private static native int dcb_libinit();
    protected static native void dcb_addtoconf(int dev, int conf, CDT part);
    protected static native void dcb_close(int dev);
    protected static native void dcb_delconf(int dev, int conf);
    protected static native int dcb_estconf(int dev, CDT part[], int cattr);
    protected static native int dcb_getbrdparm(int dev, int parm);
    protected static native void dcb_getcde(int dev, int conf, CDT part);
    protected static native void dcb_gettalkers(int dev, int conf, CDT[] part);
    protected static native int dcb_open(String name, int flags);
    protected static native void dcb_remfromconf(int dev, int conf, CDT part);
    protected static native void dcb_setbrdparm(int dev, int par, int val);
    protected static native void dcb_setcde(int dev, int conf, CDT part);
    protected static native void dcb_setdigitmsk(int dev, int conf, int mask);


    // MSI
    private static native int ms_libinit();
    protected static native void ms_addtoconf(int dev, int conf, CDT part);
    protected static native void ms_delconf(int dev, int conf);
    protected static native int ms_estconf(int dev, CDT part[], int cattr);
    protected static native void ms_getcde(int dev, int conf, CDT part);
    protected static native void ms_remfromconf(int dev, int conf, CDT part);
    protected static native void ms_setcde(int dev, int conf, CDT part);
    protected static native int ms_open(String name, int flags);
    protected static native void ms_close(int dev);
    protected static native int ms_getbrdparm(int dev, int parm);
    protected static native void ms_setbrdparm(int dev, int par, int val);
    protected static native int ms_getevtmsk(int dev, int event);
    protected static native void ms_setevtmsk(int dev, int event, int mask, int action);
    protected static native int ms_getxmitslot(int dev);
    protected static native void ms_listen(int dev, int ts);
    protected static native void ms_unlisten(int dev);
    protected static native void ms_genring(int dev, int len, int mode);
    protected static native void ms_genziptone(int dev);
    protected static native void ms_setvol(int dev, int type, int steps);
    protected static native int ATMS_TSSGBIT(int dev);
    protected static native void ms_stopfn(int dev, int fn);
    
    
    // ISDN
    protected static native void cc_AnswerCall(long crn, int rings, int mode);
    protected static native void cc_DropCall(long crn, int cause, int mode);
    protected static native long cc_MakeCall(int linedev, String phone_num,
    				  Object makecall_blk, int timeout, int mode); // Returns crn
//    protected static native void cc_ReleaseCall(long crn);
    protected static native void cc_ReleaseCallEx(long crn, int mode);
    protected static native long cc_WaitCall(int linedev, Object Waitcall_blk,
		                  int timeout, int mode); // Would return crn if synchronous
    // Optional Cal Handling Functions
    protected static native void cc_AcceptCall(long crn, int rings, int mode);
//    protected static native void cc_CallAck(long crn, int new_linedev, int msg_id);
//    protected static native void cc_CallProgress(long crn, int indicator);
//    protected static native void cc_Congestion(long crn, int cause);
//    protected static native void cc_FacilityAck(long crn, byte facility[]);
//    protected static native void cc_FacilityRej(long crn, byte facility[], int cause);
//    protected static native void cc_FacilityReq(long crn, byte facility[], int mode);
    protected static native void cc_GetANI(long crn, byte anibuf[]);
//    protected static native void cc_GetBilling(long crn, byte billing[]);
//    protected static native void cc_GetCallInfo(long crn, int info_id, byte value[]);
    protected static native void cc_GetDNIS(long crn, byte dnis[]);
//    protected static native void cc_GetMoreDigits(long crn, int num_digits, long timeout, int mode);
//    protected static native void cc_GetNonCallMsg(int linedev, byte noncallmsg[]);
//    protected static native void cc_HoldAck(long crn);
//    protected static native void cc_HoldCall(long crn, int mode);
//    protected static native void cc_HoldRej(long crn, int cause);
    protected static native void cc_RejectCall(long crn, int cause, int mode);
//    protected static native void cc_ReqANI(long crn, byte anibuf[], int req_type, int mode);
//    protected static native void cc_RetrieveAck(long crn);
//    protected static native void cc_RetrieveCall(long crn, int mode);
//    protected static native void cc_RetrieveRej(long crn, int cause);
    // DTE Call Transfer Framework changes
//    protected static native void cc_TransferCall(long crn1, long crn2, int mode);
//    protected static native void cc_TransferAck(long crn);
//    protected static native void cc_TransferRej(long crn, int cause);
    // End DTE changes

//    protected static native void cc_SetBilling(long crn, int rate_type, int rate, int mode);
//    protected static native void cc_SetCallingNum(int linedev, String callingnum);
//    protected static native void cc_SetMinDigits(int linedev, int mindigs);
//    protected static native void cc_SndNonCallMsg(int linedev, int crn_type, int msg_type, byte noncallmsg[]);
//    protected static native void cc_SndMsg(long crn, int msg_type, byte sndmsg[]);
//    protected static native void cc_TerminateCall(long crn, int cause);
//    protected static native void cc_TerminateRelease(long crn);

    // System Control Functions
    protected static native void cc_Close(int linedev);
    protected static native int cc_Open(String dev_name, int rfu);// Returns linedev
    protected static native void cc_Restart(int linedev, int mode);

    // System Tools Functions
//    protected static native int cc_CallState(long crn); // Returns state
    protected static native int cc_CauseValue(int linedev); // Returns cause
//    protected static native int cc_CRN2LineDev(long crn); // Returns linedev
//    protected static native int cc_GetBChanState(int linedev); // Returns B chan state
//    protected static native int cc_GetCRN(EVT evt); // Returns crn
//    protected static native int cc_GetDChanState(int linedev); // Returns D chan state
//    protected static native void cc_GetCES(byte ces[], EVT evt);
//    protected static native int cc_GetDLinkState(int linedev, Object dlink); // Returns DLINK state
//    protected static native int cc_GetNetCRV(long crn); // Returns Net CRV
//    protected static native void cc_GetSigInfo(byte value[], int infoID, EVT evt);
    protected static native int cc_GetEvtMsk(int linedev); // Returns mask
//    protected static native void cc_GetFrame(int linedev, byte rcvframe[]);
//    protected static native void cc_GetInfoElem(int linedev, byte ie[]);
//    protected static native int cc_GetLineDev(EVT evt); // Returns linedev
//    protected static native int cc_GetNetH(int linedev); // Returns net handle
    protected static native int cc_GetParm(int linedev, int parm_id); // Returns value
//    protected static native void cc_GetSAPI(byte sapi[], EVT evt);
//    protected static native int cc_GetUsrAttr(int linedev); // Returns user data
//    protected static native int cc_GetVer(int linedev); // Returns major << 16 | minor
//    protected static native int cc_GetVoiceH(int linedev); // Returns voice handle
//    protected static native int cc_LineDev2CRN(int linedev); // Returns CRN
//    protected static native void cc_PutEvt(int linedev, long event_type);
    protected static native void cc_ResultMsg(int linedev, int ResultCode, byte msg[]);
//    protected static native int cc_ResultValue(EVT evt); // Returns result
//    protected static native void cc_SetChanState(int linedev, int chan_state, int mode);
//    protected static native void cc_SetDChanCfg(int linedev, Object dchan_cfg);
    protected static native void cc_SetEvtMsk(int devhdl, int mask, int action);
//    protected static native void cc_SetInfoElem(int linedev, byte ie[]);
    protected static native void cc_SetParm(int linedev, int parm_id, int value);
//    protected static native void cc_TermRegisterResponse(int linedev, Object term_blk);
//    protected static native void cc_SetUsrAttr(int linedev, long usr_attr);
//    protected static native void cc_SndFrame(int linedev, byte sndframe[]);
//    protected static native void cc_StartTrace(int linedev, String tracefilename);
//    protected static native void cc_StopTrace(int linedev);

    // Global Call Interface Functions
//    protected static native void cc_BlockTs(int linedev);
//    protected static native int cc_geterror();
//    protected static native void cc_seterror(int error);
//    protected static native void cc_UnBlockTs(int linedev);

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美精品一区二区久久婷婷| 不卡欧美aaaaa| 欧美福利视频一区| 石原莉奈在线亚洲二区| 欧洲在线/亚洲| 五月婷婷欧美视频| 欧美一区二区三区免费大片| 久久国产综合精品| 久久久久久麻豆| 99天天综合性| 91麻豆国产福利在线观看| 亚洲人精品午夜| 欧美日韩在线播放三区| 男女男精品视频网| 国产欧美精品一区aⅴ影院| 97久久精品人人做人人爽50路| 亚洲码国产岛国毛片在线| 欧美日产在线观看| 国产剧情一区二区三区| 亚洲视频一区二区在线| 欧美欧美午夜aⅴ在线观看| 美国av一区二区| √…a在线天堂一区| 欧美日韩另类一区| 国产99精品在线观看| 日韩毛片视频在线看| 欧美肥妇free| 成人av在线网站| 日韩精品一级二级| 国产精品美女久久久久aⅴ国产馆| 91黄视频在线| 国产伦精品一区二区三区免费 | 欧美性xxxxx极品少妇| 日欧美一区二区| 国产精品情趣视频| 日韩一级完整毛片| eeuss鲁片一区二区三区 | 亚洲天堂2016| 日韩欧美一区二区视频| 色偷偷88欧美精品久久久| 久久66热re国产| 亚洲午夜免费电影| 国产精品视频你懂的| 欧美一级黄色录像| 色av一区二区| 成人久久18免费网站麻豆| 日韩电影在线一区| 又紧又大又爽精品一区二区| 久久久久久9999| 3d动漫精品啪啪1区2区免费| 色狠狠一区二区三区香蕉| 国产一区二区三区高清播放| 亚洲国产精品久久人人爱| 欧美国产日韩精品免费观看| 欧美成人艳星乳罩| 欧美久久久久久久久| 在线观看亚洲a| av日韩在线网站| 成人免费看的视频| 国产乱子伦视频一区二区三区| 香蕉成人伊视频在线观看| 中文字幕一区二区在线观看| 欧美va在线播放| 欧美色综合天天久久综合精品| 日韩欧美一卡二卡| 国产精品视频你懂的| 久久se这里有精品| 久久综合狠狠综合久久综合88 | 欧美性xxxxxxxx| 亚洲网友自拍偷拍| 日韩一区二区三区四区五区六区 | 国产精品网友自拍| 日韩色视频在线观看| 欧美三级三级三级爽爽爽| 91丝袜美女网| 91色九色蝌蚪| 91麻豆国产福利在线观看| 北岛玲一区二区三区四区| 成人白浆超碰人人人人| 成人性视频网站| 成人黄色在线网站| jlzzjlzz亚洲日本少妇| 91视频.com| 欧美揉bbbbb揉bbbbb| 欧美日韩精品欧美日韩精品一| 在线观看欧美日本| 欧美另类videos死尸| 欧美羞羞免费网站| 欧美日韩国产高清一区二区三区| 欧美日韩国产天堂| 欧美一区二区久久| 精品第一国产综合精品aⅴ| 精品成人一区二区三区四区| 久久久久久久久久久久电影| 中国色在线观看另类| 成人欧美一区二区三区| 一区二区三区成人| 污片在线观看一区二区| 免费看日韩a级影片| 国产精品一区在线观看你懂的| 风流少妇一区二区| a4yy欧美一区二区三区| 欧美亚洲高清一区二区三区不卡| 91精品麻豆日日躁夜夜躁| 精品粉嫩aⅴ一区二区三区四区| 久久精品视频一区二区三区| 欧美国产一区二区在线观看| 亚洲综合久久久| 蜜芽一区二区三区| 成人小视频免费观看| 91国内精品野花午夜精品| 宅男在线国产精品| 国产亚洲一二三区| 亚洲国产精品一区二区www在线| 老司机精品视频导航| 成人免费观看视频| 欧美剧情片在线观看| 久久视频一区二区| 亚洲综合久久久| 亚洲美女视频在线观看| 国内成+人亚洲+欧美+综合在线| 国产精品一区专区| 精品奇米国产一区二区三区| 精品人在线二区三区| 国产精品久久久久久久久免费丝袜 | 成人精品一区二区三区四区| 亚洲欧美激情在线| 日韩电影免费一区| eeuss鲁片一区二区三区在线看| 欧美精选在线播放| 中文字幕一区二区在线观看| 蜜芽一区二区三区| 91理论电影在线观看| 精品日韩成人av| 亚洲成人av在线电影| 成人av一区二区三区| 91精品国产入口| 一区二区三区在线播放| 韩国在线一区二区| 91精品国产综合久久福利软件 | 欧美日韩极品在线观看一区| 久久久久久毛片| 日本不卡不码高清免费观看| 在线精品视频小说1| 中文字幕国产一区| 久久国产精品99久久人人澡| 欧美色老头old∨ideo| 亚洲欧洲日韩一区二区三区| 久久99精品久久只有精品| 欧美日高清视频| 亚洲一区二区三区四区在线观看| 成年人午夜久久久| 国产亚洲欧美日韩日本| 日韩成人精品在线观看| 精品视频全国免费看| 亚洲裸体在线观看| 成人免费视频app| 亚洲国产精品精华液2区45| 久久99精品国产91久久来源| 777奇米成人网| 天天综合网 天天综合色| 日本韩国一区二区| 亚洲美女免费视频| 在线看不卡av| 亚洲国产精品尤物yw在线观看| 色94色欧美sute亚洲线路一ni| 中文字幕一区二区三区蜜月| 国产伦理精品不卡| 国产欧美日韩三区| 大胆欧美人体老妇| 中文字幕日韩精品一区 | 色就色 综合激情| 亚洲黄色免费网站| 欧美在线三级电影| 亚洲亚洲精品在线观看| 在线看日本不卡| 亚洲成av人片在线观看无码| 亚洲精品国产高清久久伦理二区| 欧美日本一道本| 欧美日韩的一区二区| 91精品在线一区二区| 国产乱人伦偷精品视频不卡| 亚洲黄色性网站| 国产视频一区不卡| 久久人人97超碰com| 欧美精品三级日韩久久| av中文字幕在线不卡| 国产乱人伦偷精品视频不卡 | 中文字幕综合网| 激情都市一区二区| 亚洲精品一区二区三区福利| 狠狠色狠狠色综合日日91app| 国产日产亚洲精品系列| 成人性视频免费网站| 亚洲一区二区三区三| 日韩欧美www| 97se亚洲国产综合自在线不卡| 一区二区在线观看免费视频播放| 欧美高清视频不卡网| 国产91精品精华液一区二区三区 |