gpt4 book ai didi

c++ - 提取特定的 Win32 函数

转载 作者:太空宇宙 更新时间:2023-11-04 16:26:44 25 4
gpt4 key购买 nike

我想使用 windows.h 中的 CreateThread 函数,但不使用头文件中包含的所有#defines 和废话。有什么方法可以从 .dll 或 .lib 中导入(我想这就是它的名字)函数吗?测试失败:

#pragma comment(lib,"Kernel32.lib")
__declspec(dllimport)
unsigned long
__stdcall
WaitForSingleObject(
void* hHandle,
unsigned long dwMilliseconds
);


int main()
{
WaitForSingleObject(0,0);
}

最佳答案

是的,你可以动态加载DLL,获取函数的地址然后调用它。不过,我不确定您的 Windows.h 问题是什么。

LoadLibrary GetProcAddress

关于c++ - 提取特定的 Win32 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10901931/

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