使用 C# 在 Windows Mobile 中实现答录机
我想用C#在windows mobile上开发一个自动答录机。它应该自动应答来电并播放音频文件。
有人有什么想法吗?或者您知道现有的应用程序吗?
I want to develop an automatic answering machine in windows mobile with C#. It should auto-answer incoming calls and play an audio file.
Does anyone has any ideas? or may you know an existing app?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要接听电话,请使用 TAPI 函数 lineAnswer。
要播放预先录制的消息:
要录制通话:
对于 C#,您需要 P/Invoke 这些命令或查看它们是否由 OpenNetCF 框架提供。
-保罗H
To answer the phone, use the TAPI function lineAnswer.
To play a pre-recorded messasge:
To record calls:
For C#, you will need to P/Invoke these commands or see if they are provided by the OpenNetCF framework.
-PaulH