有人可以解释PVOID是什么,以及如何在类似的函数中使用它:

BOOL DoSomething(PVOID pMemPhy)

最佳答案

空指针,与

void *pMemPhy

又名“指向某物的指针,但要由您自己弄清楚”。
BOOL DoSomething ( PVOID pMemPhy )
{
    strcpy((char *)pMemPhy, "I love buffer overflows!");
    return TRUE;
}

关于c++ - 什么是PVOID数据类型?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/494163/

10-11 21:57