Hi,
I have developed both a Desktop and Pocket PC app. The Pocket PC app
is launched using the Desktop app. I would like to get notification on
the Desktop when the process on the PocketPC ends. Rightnow I write a
file on the PocketPC at the end of the process and from the Desktop app,
I poll to see if the file is there.
I would like to know if there is API on Desktop to signify the
end of the process on the PocketPC. If not, what is the best way to do this?

Any thoughts or ideas are appreciated.

Thanks,
Kris

RE: Desktop - PocketPC Process Notification by Eugene

Eugene
Thu May 26 14:29:34 CDT 2005

The first was is to call WaitForSingleObject on the handle returned by
CeCreateProcess.
Another way is to establish TCP connection to communicate between the
desktop and the device.

"Kris" wrote:

> Hi,
> I have developed both a Desktop and Pocket PC app. The Pocket PC app
> is launched using the Desktop app. I would like to get notification on
> the Desktop when the process on the PocketPC ends. Rightnow I write a
> file on the PocketPC at the end of the process and from the Desktop app,
> I poll to see if the file is there.
> I would like to know if there is API on Desktop to signify the
> end of the process on the PocketPC. If not, what is the best way to do this?
>
> Any thoughts or ideas are appreciated.
>
> Thanks,
> Kris
>