Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Mitel C# Programing

Status
Not open for further replies.

majidjm

Programmer
Aug 4, 2010
37
0
0
Hi
I want to wrap the mitel 3300 sdk to C#.
I've done the below:

int result = 0;
if (InitializServer())
{
if (GeneratePbx())
{
//System.IntPtr ip2 = new System.IntPtr(0);
//System.IntPtr ip3 = new System.IntPtr(0);

//MyCallback mck = new MyCallback(InputPoll);
result = CgtMitel.SetCallback(hMonitorobjp, hPbxObject1, mck);
result = CgtMitel.ActivateCallbacks(hPbxObject1);

result = CgtMitel.MonitorDN(ref hMonitorobjp, hPbxObject1, "122");
}
}


what is the next step?
how can I get events?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top