[Sample of Nov 26th] C++ Windows app uses WM_COPYDATA for IPC

 

Homepage image
RSS Feed

Sample Download : https://code.msdn.microsoft.com/CppSendWMCOPYDATA-f75bc681

This code sample demonstrates sending a custom data structure (MY_STRUCT) to the receiving Windows application (CppReceiveWM_COPYDATA) by using SendMessage(WM_COPYDATA). If the data structure fails to be passed, the application displays the error code for diagnostics. A typical error code is 0x5 (Access is denied)caused by User Interface Privilege Isolation (UIPI). UIPI prevents processes from sending selected window messages and other USER APIs to processes running with higher integrity. When the receiving application (CppReceiveWM_COPYDATA) runs at an integrity level higher than this sending application, you will see the "SendMessage(WM_COPYDATA) failed w/err 0x00000005" error message.
image

You can find more code samples that demonstrate the most typical programming scenarios by using Microsoft All-In-One Code Framework Sample Browser or Sample Browser Visual Studio extension. They give you the flexibility to search samples, download samples on demand, manage the downloaded samples in a centralized place, and automatically be notified about sample updates. If it is the first time that you hear about Microsoft All-In-One Code Framework, please watch the introduction video on Microsoft Showcase, or read the introduction on our homepage https://1code.codeplex.com/.