我的应用程序中有一个 API 函数:
<Runtime.InteropServices.DllImport("kernel32.dll", SetLastError:=True, CharSet:=Runtime.InteropServices.CharSet.Ansi, ExactSpelling:=True)>
Private Shared Function GetProcAddress(ByVal hModule As IntPtr, ByVal procName As String) As IntPtr
End Function
我只想了解这个函数的指针'IntPtr'值。我该怎么做?
注意:我将向您展示我在 C++ 中想要的确切内容
void* fnGetProcAddress;
fnGetProcAddress = GetProcAddress;