Thanks,
Mark
--
http://www.beiley.com
Mark,
if you hear the modem protocol negotiation "sounds" then it seems that you
are using a data modem, not a voice modem.
linePikup() isn't intended for your scenario and not supported by UniModem
TSP.
In general, to reject an offering call (without answering it) you can use
lineDrop(), but again that doesn't work with UniModem TSP.
--
Best Regards
Andreas Marschall
Microsoft MVP for TAPI / Windows SDK / Visual C++ 2003-2008
TAPI / TSP Developer and Tester
My TAPI and TSPI FAQ:
http://www.I-B-A-M.de/Andreas_Marschall's_TAPI_and_TSPI_FAQ.htm
My Toto� Tools (a collection of free, mostly TAPI related tools):
http://www.i-b-a-m.de/Andreas_Marschall's_Toto_Tools.htm
TAPI development around the world (Frappr! map):
http://www.frappr.com/TAPIaroundTheWorld
* Please post all messages and replies to the newsgroup so all may
* benefit from the discussion. Private mail is usually not replied to.
* This posting is provided "AS IS" with no warranties, and confers no
rights.
Hi Andreas,
Thanks for the help. Yes, I'm using only a data modem. Thanks for
the explanation. I guess I'll stick with lineAnswer(). I have
slightly improved it by doing a lineDrop() shortly after the lineAnswer
(), instead of waiting for the LINE_REPLY response to the lineAnswer()
to do the lineDrop(). This way it at least all happens a little
faster.
Mark, you are welcome.
> Yes, I'm using only a data modem. Thanks for
> the explanation. I guess I'll stick with lineAnswer(). I have
> slightly improved it by doing a lineDrop() shortly after the lineAnswer(),
> instead of waiting for the LINE_REPLY response to the lineAnswer()
> to do the lineDrop(). This way it at least all happens a little
> faster.
Thanks for the feedback.