From: Peter D. T. <don...@td...> - 2021-09-16 09:14:15
|
Hi all, On Wed, 2021-09-15 at 09:55 +0800, Xiaofan Chen wrote: > I believe this is not possible based on the current codes. > > What you can try is to create the first application as a Windows > service, and then the second application uses that Windows service. Yeah, as Xianfan states, its not possible with this or any other similar libarary. You cannot handover handles to resources/devices/files from one application to another. That would be a major security hole if you could. Most O/S only allow this is very limited form. You can solve it using pipes or sockets. Pipes and sockets are easy to create. This even adds the flixibity of working across networks. Thanks, /pedro |