Windows Mobile 待机时播放声音?
我有一个在通知计时器上启动的应用程序(它按时工作,它写入调试日志文件)。
此应用程序应该播放声音,但由于设备处于待机状态,因此没有播放声音。
我猜声音设备需要被唤醒,但是如何唤醒设备,以便我可以播放声音?
I got an app which is started on a notify timer (which works on time, it writes into a debug log file).
This app should play a sound, but since the device is on standby, no sound is played.
I'd guess the sound device needs to be woken up, but how do I wake up the device, so I can play a sound?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须致电 PowerPolicyNotify。
参考这个链接:
http://msdn.microsoft.com/en-us/library/aa908497。 ASPX
U have to make a call to PowerPolicyNotify.
Refer this link:
http://msdn.microsoft.com/en-us/library/aa908497.aspx
实际上,我使用 CeSetUserNotificationEx 来激活我的程序,然后我可以使用 SndPlaySync,没有任何问题,并且无需更改电源策略设置。
Actually I used CeSetUserNotificationEx to activate my program, then I could just use SndPlaySync without any problems and withour changing power policy settings.