我从 Visual Studio 2012 中的代码分析工具收到此警告。代码如下所示:
using System;
using System.Runtime.InteropServices;
namespace MyProgramNamespace
{
class NativeMethods
{
[DllImport("user32.dll", EntryPoint = "GetWindowLongPtr")]
public static extern IntPtr GetWindowLongPtr(IntPtr handle, int flag);
[DllImport("user32.dll", EntryPoint = "SetWindowLongPtr")]
public static extern IntPtr SetWindowLongPtr(IntPtr handle, int flag, IntPtr ownerHandle);
}
}
我只为 x64 编译,所以我不关心使用旧的 GetWindowLong 和 SetWindowLong。据我所知,这些入口点名称是正确的。
编辑:已解决。原来问题在于 Visual Studio 本身(以及代码分析工具)是 32 位的。当代码分析工具检查 user32.dll 以查看这些函数是否存在时,它会检查 user32.dll 的 32 位版本(在 C:/Windows/SysWOW64/ 中),而不是程序实际使用的那个(64 位版本)在 C:/Windows/System32 中),并且这些函数只存在于 64 位版本(32 位版本使用 GetWindowLong/SetWindowLong 而不是 GetWindowLongPtr/SetWindowLongPtr(注意 PTR 部分))。