Use WM_COPYDATA to send data to/from C++ and C# Windows processes






4.56/5 (26 votes)
Oct 27, 2003
2 min read

138411

7516
Use WM_COPYDATA to send data to/from C++ and C# Windows processes
Introduction
This demo demonstrates how to send / receive WM_COPYDATA
messages between a collection of C++ and C# programs.
Why use WM_COPYDATA?
Traditionally WM_COPYDATA
was used to send a limited amount of data between processes on the same machine. It is still desirable to interoperate this way even with the rise of .NET. .NET Remoting is out of the scope of this demo. This demo is intended for people like myself that are dealing with legacy environments.
The demo consists of four programs and one DLL. Two programs are written in C++ (MS Version 5.0) and two are written in C# (using .NET 2003). A C++ exe and C# exe will send the structure shown below to a C++ and C# receiving program.
struct sTagData {//this is the structure that will be sent (copied) by the WM_COPYDATA private: char szTag[ciMaxTag]; char szData[ciMaxData]; }
The DLL was written in VC 5.0 and it wraps the WM_COPYDATA
message.
Additionally, the DLL provides a uniform way of :-
- Protecting the receiving application from third party processes that may be unwise enough to
HWND_BROADCAST
theWM_COPYMESSAGE
. - Allows incoming messages to be limited to specific senders either by handle or sender id.
- Optional use a crude bitwise encryption to discourage hackers from spying on messages.
Unzip using the full paths to your C drive. The result should be the shown directory structure.
- C:\WmCpyDta
- C:\WMCpyDat\Build - the folder where all build output is placed for all projects.
- C:\WMCpyDat\From_C - a C++ program that sends the structure
- C:\WMCpyDat\TO_C - a C++ program that receives the structure
- C:\WMCpyDat\From_C_Sharp – a C# program that sends the structure
- C:\WMCpyDat\\TO_C_Sharp - a C# program that receives the structure.
To use the demo, open folder build and click on all 4 executables. Click on the send buttons in the FROM apps and the message will appear in the TO apps. Both FROM programs are document to show how to use the DLL’s interface. Likewise, both TO programs are documented in their WindowProc()
’s to show how to receive the data.
Platforms supported
These programs have only been tested on Windows XP.
Other facts
Philip McGahan is the sole creator of this demo. No part of it has been plagiarized from other sources. Any party may use all or part of this demo with out credit or reference to Philip McGahan.
Lastly, it is only fair to tell my reader that I am very new at C#. I did try to use C# to build the DLL. But beyond never getting the data to come across with out junk at the end of the string. I was not comfortable with having to setup unsafe blocks. The whole thing just seemed clumsy. When or if I get better at C#, I will revisit this issue.
History
- 10/23/2003 - First published