Phone Call onEnd event

  • Thread starter Thread starter MattM
  • Start date Start date
M

MattM

I have an app that I want to run whenever a phonecall is ended -
anyone know what part of the Smartphone2003 API I use to hook into
that?
Thanks,
Matt
 
You need to use TAPI.
Call lineInitialize, lineOpen (as monitor) and watch for line events. When
call is finished, you will receive an event LINE_CALLSTATE with the state
LINECALLSTATE_IDLE
Don't forget to call lineDeallocateCall
 
Back
Top