Using the ddelib (available via pywin32 ).
DIAL 1001 DIAL sip:user@pbx.example.com 3.2 HANGUP Terminates the active call.
DIAL <number_or_SIP_URI>
import win32ui import dde server = dde.CreateServer() server.Create("MyApp") conversation = dde.CreateConversation(server) conversation.ConnectTo("MicroSIP", "Command") conversation.Exec("DIAL 1002") conversation.Exec("DTMF 1") conversation.Exec("HANGUP") Using DDE.NET library or NDde.Client .
DDE_Execute(dde, "DIAL 5551234") DDE_Terminate(dde)
Using the ddelib (available via pywin32 ).
DIAL 1001 DIAL sip:user@pbx.example.com 3.2 HANGUP Terminates the active call. microsip api
DIAL <number_or_SIP_URI>
import win32ui import dde server = dde.CreateServer() server.Create("MyApp") conversation = dde.CreateConversation(server) conversation.ConnectTo("MicroSIP", "Command") conversation.Exec("DIAL 1002") conversation.Exec("DTMF 1") conversation.Exec("HANGUP") Using DDE.NET library or NDde.Client . Using the ddelib (available via pywin32 )
DDE_Execute(dde, "DIAL 5551234") DDE_Terminate(dde) "DIAL 5551234") DDE_Terminate(dde)