Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Interprocess communication on windows

Tags:

c++

windows

ipc

tcl

I have a TCL script running on windows. I need to communicate to a old vc++ 6 app running in a different process. I need to have 2 way communication. In Linux I would use dbus, but what IPC strategy should I use for windows?

like image 754
Byron Whitlock Avatar asked Dec 13 '22 03:12

Byron Whitlock


2 Answers

Boost.interprocess has various ways such as shared-memory and message passing for C++. You could always start there and see what is compatible with your script.

like image 139
rlbond Avatar answered Dec 24 '22 15:12

rlbond


How about named pipes ?

like image 25
aJ. Avatar answered Dec 24 '22 15:12

aJ.