开发者

Easiest way to transfer data between 2 C programs?

开发者 https://www.devze.com 2022-12-22 09:12 出处:网络
In ANSI C on Windows what is the b开发者_Go百科est/easiest way to transfer data between two programs running locally without needing to write/read from a file? Data will be basic text and only one pro

In ANSI C on Windows what is the b开发者_Go百科est/easiest way to transfer data between two programs running locally without needing to write/read from a file? Data will be basic text and only one program will be sending and the other receiving. Thanks.


Inter-process communication is inherently platform-dependent; "ANSI C" doesn't have anything to say about this, but you should start here for Windows:

http://msdn.microsoft.com/en-us/library/aa365574(VS.85).aspx

Much depends on the kinds of applications you're talking about, and the volume of data, and how tightly coupled the processes are.

0

精彩评论

暂无评论...
验证码 换一张
取 消