1

I want to get a list of all running application in my windows mobile 6.5 from my application.

Can anyone tell me how to do this for CF??

1 Answers1

4

You have to P/Invoke the toolhelp APIs. There used to be an MSDN article that covered this (it's a bit long to put it all into a post here, though maybe that's a better idea?). The gist of it can also be found in the SDF source code over on Github.

ctacke
  • 66,480
  • 18
  • 94
  • 155
  • The link isn't available could you explain the the solution in the answer? – G. Ciardini Sep 06 '19 at 15:07
  • 1
    I hate to keep it a "link answer" but it's really not totally trivial to wrap all of the toolhelp. Take a look at the updated links - hopefully they'll stay live for a while. – ctacke Sep 06 '19 at 21:15
  • Thanks! For this week my goal is to make an updater inside a windows mobile application and the compact framework doesn't have a lot of function to work with so toolhelp seems to be everyone go to solution. – G. Ciardini Sep 09 '19 at 07:34