Originally posted by: Hugh Robinson
Thanks for the useful article!
I think you have a small typo in the "Client" section:
You have:
HANDLE HDone = ::CreateEvent(NULL,FALSE,FALSE,"ApplicationSpecificEventExec");
I think it should be:
HANDLE HDone = ::CreateEvent(NULL,FALSE,FALSE,"ApplicationSpecificEventDone");
Originally posted by: Ed
I am successfully using described IPC method with shared named memory technique. While this method always works in Windows NT, it may sometimes fail in Windows 95 or Windows 98 operating systems...
It seems to be a problem with memory management under Win95/98... Server and clients communicate successfully for some time, then for some reason the communication gets brocken...
Are there any work-around?
Thanks,
Ed