call.idl

来自「c#设计模式WithCla」· IDL 代码 · 共 40 行

IDL
40
字号
   

      

                         











interface Call      
{
  

  readonly attribute string strOrigination;
  readonly attribute string strDestination;
  readonly attribute long timeStarted;
  readonly attribute long timeEnded;
  readonly attribute long nBillAmount;




	
   oneway void OffHookOrigination (in string strOrigination)  ;
     void AcceptNumber (in string strOrigination, in string strDestination)  ;
     void OffHookDestination (in string strDestination)  ;
     void OnHookOrigination (in string strOrigination)  ;
     void OnHookDestination (in string strDestination)  ; 

};


⌨️ 快捷键说明

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