Reputation: 346
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.
Upvotes: 4
Views: 1201
Reputation: 67168
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)
Upvotes: 1