如何在 Windows Mobile 6 中创建服务
大家好 您知道如何在 Windows Mobile 应用程序中运行服务吗? 因此它可以在后台运行,我可以通过该服务处理所有移动事件。
请给我评论或给出示例链接。
谢谢。
Hello Everyone
Do you know how to run services in Windows Mobile Application.
So it can running on background and i can handle the all mobile events through that Services.
Please give me comment or give example link.
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从入口点的角度来看,CE 中的服务就像流接口驱动程序。 MDSN 记录了您需要的内容。
主要区别在于用于告诉操作系统如何加载它的注册表项。您希望它由 services.exe 而不是 device.exe 加载,因此您只需使用 正确的注册表项(或通过调用RegisterService)
Services in CE are just like stream interface drivers from an entry point perspective. MDSN documents what you need here.
The primary difference is the registry entries used to tell the OS how to load it. You want it loaded by services.exe, not device.exe, so you simply use the proper registry entries (or manually load it with a call to RegisterService)