关于WIN32 api 调用的问题
[DllImport("user32.lib")]
public static extern bool EnableWindow(IntPtr handle, Boolean flag);
[DllImport("coredll.dll", EntryPoint = "FindWindow")]
private extern static IntPtr FindWindow(string lpClassName, string lpWindowName);
代码如上,但是为什么在运行的时候提示说是
无法加载 DLL“coredll.dll”: 找不到指定的模块。 (异常来自 HRESULT:0x8007007E)。
这些api不是系统自带的么?为什么找不到?我用的是vs2005。