如何使用带有向量的 winapi ReadProcessMemory 从另一个进程读取缓冲区?

How to use winapi ReadProcessMemory with vector to read buffer from another process?

std::byte *ReadBytes(PVOID address, SIZE_T length)
{
    std::byte *buffer = new std::byte[length];
    std::cout << "length" << sizeof(buffer) << std::endl;

    ReadProcessMemory(this->processHandle, address, buffer, length, NULL);

    return buffer;
};

我正在尝试将进程的内存区域读取到 std::byte 数组中,但是使用上面的代码,我无法在外部获取缓冲区的长度,所以我想将缓冲区的类型更改为std::vector<std::byte> 或者使用其他一些方法。我该怎么做?

自 C++11 起,std::vector::data 将提供指向后备数组的指针。如果您使用的是不支持 C++ 11 的旧工具,&buffer[0] 可能有效,我从未见过它 有效,但标准不保证。

再看看代码,如果你有 std::byte,C++11 支持不是问题。

所以...

std::vector<std::byte> ReadBytes(PVOID address, SIZE_T length)
{
    std::vector<std::byte> buffer(length);
    std::cout << "length" << buffer.size() << std::endl;

    ReadProcessMemory(this->processHandle, address, buffer.data(), length, NULL);

    return buffer;
};