簡體   English   中英

如何使用 SendMessage (WM_COPYDATA) 將消息從 C# 發送到 C++ (MESSAGE ONLY WINDOW)?

[英]How to send message from C# to C++ (MESSAGE ONLY WINDOW) using SendMessage (WM_COPYDATA)?

編輯:我把它修好了,這是我的工作完整代碼,可以為新朋友樹立榜樣,我最初的問題也在下面。

在代碼之前,讓我向您介紹一些文檔(按順序):

https://docs.microsoft.com/en-us/windows/win32/winmsg/about-messages-and-message-queues#message-routing

https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-sendmessage

https://docs.microsoft.com/en-us/windows/win32/winmsg/window-features#message-only-windows

https://docs.microsoft.com/en-us/windows/win32/dataxchg/using-data-copy

http://pinvoke.net/default.aspx/Structures/COPYDATASTRUCT.html

C#程序

using System;
using System.Windows.Forms;
using System.Diagnostics;
using System.Runtime.InteropServices;

namespace Program
{

    public partial class Form1 : Form
    {

        [DllImport("user32.dll")]
        static extern long SendMessage(IntPtr hWnd, uint Msg, IntPtr wParam, IntPtr lParam);

        [DllImport("user32.dll", CharSet = CharSet.Unicode)]
        static extern IntPtr FindWindow(string classname, string windowname);


        [StructLayout(LayoutKind.Sequential)]
        struct COPYDATASTRUCT
        {
            public uint dwData;
            public int cbData;
            public IntPtr lpData;
        }
        public static IntPtr IntPtrAlloc<T>(T param)
        {
            IntPtr retval = Marshal.AllocHGlobal(Marshal.SizeOf(param));
            Marshal.StructureToPtr(param, retval, false);
            return (retval);
        }

        public static void IntPtrFree(IntPtr preAllocated)
        {
            if (IntPtr.Zero == preAllocated) throw (new Exception("Go Home"));
            Marshal.FreeHGlobal(preAllocated); preAllocated = IntPtr.Zero;
        }

        const int WM_COPYDATA = 0x004A;

        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            Thread.Sleep(3000);

            string message = "This is a test";
            IntPtr hWnd = FindWindow("MyClass", "MyTitle");
            if (hWnd == IntPtr.Zero)
            {
                MessageBox.Show("couldn't find the window");
            }
            else
            {
                COPYDATASTRUCT cds;
                cds.dwData = 1;
                cds.cbData = message.Length + 1;
                cds.lpData = Marshal.StringToHGlobalAnsi(message);
                IntPtr cdsBuffer = IntPtrAlloc(cds);
                SendMessage(hWnd, WM_COPYDATA, IntPtr.Zero, cdsBuffer);
                IntPtrFree(cds.lpData);
                IntPtrFree(cdsBuffer);
            }

        }

    }
}

C++程序


#include <iostream>
#include <Windows.h>
using namespace std;


LRESULT CALLBACK WindProc(HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam)
{
    if (Msg == WM_COPYDATA)
    {
        PCOPYDATASTRUCT data = (PCOPYDATASTRUCT)lParam;
        MessageBoxA(hWnd, (LPSTR)data->lpData, "info", 0); // The character set depends on the characters you send
        PostQuitMessage(0);
        return 0;
    }
    return DefWindowProc(hWnd, Msg, wParam, lParam);
}


int main(){
    
    WNDCLASSEX wcx = { 0 };
    wcx.cbSize = sizeof(WNDCLASSEX);
    wcx.lpfnWndProc = WindProc;
    wcx.hInstance = GetModuleHandle(NULL);
    wcx.lpszClassName = TEXT("MyClass");
    RegisterClassEx(&wcx);
    HWND hWnd = CreateWindowEx(0, TEXT("MyClass"), TEXT("MyTitle"), 0, 0, 0, 0, 0, HWND_MESSAGE, NULL, GetModuleHandle(NULL), NULL);


    MSG message;
    for(int i = 0; i < 1000; i++)
    {
        std::cout << "working" << std::endl;
        Sleep(2 * 1000);
        if(PeekMessage(&message, NULL, 0, 0, PM_NOREMOVE))
        {
            break;
        }
    }

    int x;
    cout<<"got it!";
    cin>>x;
    return 0;
}

原始問題:

我有一個 C# 應用程序,我想與我在 C# 應用程序中創建的 c++ 進程通信。

我手里有一個代碼,我想它應該可以工作,但它沒有。 c++ 應用程序根本沒有收到該消息。

我的 C# 程序:

namespace ScannerGUI
{

    public partial class Form1 : Form
    {
        
        [return: MarshalAs(UnmanagedType.Bool)]
        [DllImport("user32.dll")]
        static extern bool PostMessage(IntPtr hWnd, uint Msg, IntPtr wParam, IntPtr lParam);


        [StructLayout(LayoutKind.Sequential)]
        struct COPYDATASTRUCT
        {
            public uint dwData;
            public int cbData;
            public IntPtr lpData;
        }
        public static IntPtr IntPtrAlloc<T>(T param)
        {
            IntPtr retval = Marshal.AllocHGlobal(Marshal.SizeOf(param));
            Marshal.StructureToPtr(param, retval, false);
            return (retval);
        }

        public static void IntPtrFree(IntPtr preAllocated)
        {
            if (IntPtr.Zero == preAllocated) throw (new Exception("Go Home"));
            Marshal.FreeHGlobal(preAllocated); preAllocated = IntPtr.Zero;
        }

        const int WM_COPYDATA = 0x004A;

        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            //creating child process

            var prcsInfo = new ProcessStartInfo
            {
                UseShellExecute=true,
                CreateNoWindow = false,
                FileName = "main.exe",
            };
            
            Process myProcess = Process.Start(prcsInfo);

            ChildProcessTracker.AddProcess(myProcess);

            Thread.Sleep(3000);

            string message = "This is a test";
            IntPtr hWnd = myProcess.Handle;
            if (hWnd == IntPtr.Zero)
            {
                MessageBox.Show("couldn't find the process");
            }
            else
            {
                COPYDATASTRUCT cds;
                cds.dwData = 1;
                cds.cbData = message.Length + 1;
                cds.lpData = Marshal.StringToHGlobalAnsi(message);
                IntPtr cdsBuffer = IntPtrAlloc(cds);
                PostMessage(hWnd, WM_COPYDATA, IntPtr.Zero, cdsBuffer);
                IntPtrFree(cds.lpData);
                IntPtrFree(cdsBuffer);
            }

        }

    }
}

我的 c++ 應用程序(main.exe):

int main(){
    

    MSG message;
    for(int i = 0; i < 1000; i++)
    {
        std::cout << "working" << std::endl;
        Sleep(2 * 1000);
        if(PeekMessage(&message, NULL, 0, 0, PM_NOREMOVE))
        {
            break;
        }
    }

    int x;
    cout<<"got it!";
    cin>>x;
    return 0;
}

當我啟動 c# 程序時。 沒有錯誤,沒有什么。 與 c++ 相同,沒有錯誤,沒有任何東西,但永遠不會破壞 for 循環:(

感謝大家的時間。

首先, Process.Handle是進程的句柄,而不是 window。

其次,由於您的 main.exe 是一個控制台應用程序,並且它只有一個控制台 window,因此您只能使用MainWindowHandle獲取控制台 window 的句柄。 但是控制台不屬於main.exe ,所以不能使用PeekMessage來處理發送到控制台 window 的消息。 控制台 windows 歸控制台子系統 csrss.exe 所有(參見https://stackoverflow.com/a/28248281/10611792 )。 您應該為您的 C++ 應用程序創建自己的 window,或創建僅消息window。 然后,您可以使用FindWindow獲取 C# 中的 window 句柄:

public partial class Form1 : Form
{
    [DllImport("user32.dll")]
    static extern long SendMessage(IntPtr hWnd, uint Msg, IntPtr wParam, IntPtr lParam);

    [DllImport("user32.dll",CharSet = CharSet.Unicode)]
    static extern IntPtr FindWindow(string classname, string windowname);
    ...
    private void Form1_Load(object sender, EventArgs e)
    {
        ...
        Thread.Sleep(3000);

        string message = "This is a test";
        IntPtr hWnd = FindWindow("MyClass", "MyTitle");
        if (hWnd == IntPtr.Zero)
        {
            MessageBox.Show("couldn't find the process");
        }
        else
        {
            COPYDATASTRUCT cds;
            cds.dwData = 1;
            cds.cbData = message.Length + 1;
            cds.lpData = Marshal.StringToHGlobalAnsi(message);
            IntPtr cdsBuffer = IntPtrAlloc(cds);
            SendMessage(hWnd, WM_COPYDATA, IntPtr.Zero, cdsBuffer);
            IntPtrFree(cds.lpData);
            IntPtrFree(cdsBuffer);
        }

    }
}

C++:

LRESULT CALLBACK WindProc(HWND hWnd, UINT Msg, WPARAM wParam, LPARAM lParam)
{
    if (Msg == WM_COPYDATA)
    {
        PCOPYDATASTRUCT data = (PCOPYDATASTRUCT)lParam;
        MessageBoxA(hWnd, (LPSTR)data->lpData, "info", 0); // The character set depends on the characters you send
        PostQuitMessage(0);
        return 0;
    }
    return DefWindowProc(hWnd, Msg, wParam, lParam);
}
int main() {

    WNDCLASSEX wcx = { 0 };
    wcx.cbSize = sizeof(WNDCLASSEX);
    wcx.lpfnWndProc = WindProc;
    wcx.hInstance = GetModuleHandle(NULL);
    wcx.lpszClassName = TEXT("MyClass");
    RegisterClassEx(&wcx);
    HWND hWnd = CreateWindowEx(0, TEXT("MyClass"), TEXT("MyTitle"), 0, 0, 0, 0, 0, HWND_MESSAGE, NULL, GetModuleHandle(NULL), NULL);

    MSG msg;
    for (int i = 0; i < 1000; i++)
    {
        std::cout << "working" << std::endl;
        Sleep(2 * 1000);
        if (PeekMessage(&msg, NULL, 0, 0, PM_NOREMOVE))
        {
            TranslateMessage(&msg);
            DispatchMessage(&msg);
            break;
        }
    }

    int x;
    cout << "got it!";
    cin >> x;
    return 0;
}

另請注意,使用SendMessage而不是PostMessage

此外,您還可以選擇其他IPC方法。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM