无法找到名为“GetProcessID”的入口点 在DLL“kernel32.dll”中
您好,我尝试使用 WINAPI“GetProcessID”从进程句柄中获取 processID,但出现以下错误...
无法在 DLL“kernel32.dll”中找到名为“GetProcessID”的入口点。
检查MSDN我看不出我哪里出了问题..
Hi im trying to get a processID out of a process handle using the WINAPI 'GetProcessID' but i am getting the following error...
Unable to find an entry point named 'GetProcessID' in DLL 'kernel32.dll'.
Checking MSDN i cant see where i have gone wrong..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的互操作代码应如下所示:
Your interop code should look like this:
有时大小写很重要,尤其是在 Windows API 中。 您在这里指的是 API 函数 GetProcessId(最后一个字母小写d)?
Case matters sometimes, and in particular, it matters in the Windows APIs. Are you refering to the API function GetProcessId here (lower-case last letter d)?