BOOL (WINAPI *gmse)(LPMEMORYSTATUSEX) = GetProcAddress(
kernel32, "GlobalMemoryStatusEx");
这是一个 .cpp 文件。在编译上述代码时,我收到以下错误。
error C2440: 'initializing' : cannot convert from 'FARPROC' to 'BOOL (__cdecl *)(LPMEMORYSTATUSEX)'
This conversion requires a reinterpret_cast, a C-style cast or function-style cast
我似乎无法弄清楚我应该将GetProcAddress
函数转换为什么。有人可以指出我正确的方向吗?
谢谢