CTI32 Class Library

cti.EstConf Method 

Establishes a conference on an MSI Board with up to 4 participants. A conference can be up to 8 participants, but you must use the CTIAddToConf() function to add the other 4.

[Visual Basic]
Public Shared Function EstConf( _
   ByVal msidev As Integer, _
   ByVal dev1 As Integer, _
   ByVal dev2 As Integer, _
   ByVal dev3 As Integer, _
   ByVal dev4 As Integer, _
   ByVal ConfAttrib As ConfAttrib _
) As Integer
[C#]
public static int EstConf(
   int msidev,
   int dev1,
   int dev2,
   int dev3,
   int dev4,
   ConfAttrib ConfAttrib
);

Parameters

msidev
Device returned from board open using CTIOpenStation() (i.e. msib1)
dev1
The device returned from one of the CTIOpen calls. (CTIOpenVoicePort(), CTIOpenT1Port(), or CTIOpenStation) Pass in 0 if you do not wish to use the slot.
dev2
The device returned from one of the CTIOpen calls. (CTIOpenVoicePort(), CTIOpenT1Port(), or CTIOpenStation) Pass in 0 if you do not wish to use the slot.
dev3
The device returned from one of the CTIOpen calls. (CTIOpenVoicePort(), CTIOpenT1Port(), or CTIOpenStation) Pass in 0 if you do not wish to use the slot.
dev4
The device returned from one of the CTIOpen calls. (CTIOpenVoicePort(), CTIOpenT1Port(), or CTIOpenStation) Pass in 0 if you do not wish to use the slot.
ConfAttrib
You can “bitmask” attributes together.

Return Value

Conf ID if successful. -1=Error

See Also

cti Class | CTI32NetLib Namespace