gpt4 book ai didi

c++ - 通过命名管道发送 DWORD

转载 作者:可可西里 更新时间:2023-11-01 09:20:08 24 4
gpt4 key购买 nike

我试图通过命名管道发送一个 DWORD 数组,但我一直在试图弄清楚如何发送单个 DWORD。这是我到目前为止所得到的:

// Create a pipe to send data
HANDLE pipe = CreateNamedPipe(
L"\\\\.\\pipe\\my_pipe",
PIPE_ACCESS_OUTBOUND,
PIPE_TYPE_BYTE,
1,
0,
0,
0,
NULL
);

/* Waiting for the other side to connect and some error handling cut out */

//Here I try to send the DWORD
DWORD msg = 0xDEADBEEF;
DWORD numBytesWritten = 0;
result = WriteFile(
pipe,
(LPCVOID)msg,
sizeof(msg),
&numBytesWritten,
NULL
);

但是 WriteFile(...) 调用失败并返回 false

接收端:

/* CreateFile(...) */
DWORD msg[128];
DWORD numBytesRead = 0;
BOOL result = ReadFile(
pipe,
msg,
127 * sizeof(DWORD),
&numBytesRead,
NULL
);

我是在惨败还是在朝着正确的方向前进?

最佳答案

result = WriteFile(
pipe,
&msg, // <---- change this line
sizeof(msg),
&numBytesWritten,
NULL
);

当你转换时,你的头脑中应该会出现危险信号。在 C++ 这种类型安全的语言中,当您尝试手动覆盖类型时,您就进入了危险区域。 WriteFile 需要一个指向数据的指针。您提供了数据本身。相反,您应该提供指向数据的指针。

此外,学习使用 GetLastError 在调用失败时获取更多信息。

关于c++ - 通过命名管道发送 DWORD,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27546433/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com