I am trying to use pInvoke, but on both the emulator and on the device the invoke fails. I am new to .NET (Am a C++ developer) and I don't understand how the JIT/framework can't find that DLL/method/etc.
Is there something else I have to do to get it to work?
In looking at similar questions it appears that I may or may not have to add the DLL to either the solution or the CAB - but where do I get that file.
Surely the OS on the device has user32.dll? And the Windows 7 version cannot possibly be the correct one to install on the device, can it?
EDIT
Any one of these fails:
[DllImport("coredll.dll", EntryPoint = "FindWindowW", SetLastError = true)]
private static extern IntPtr FindWindow(string lpClassName, string lpWindowName);
[DllImport("user32.dll", SetLastError=true)]
[return: MarshalAs(UnmanagedType.Bool)]
private static extern bool SetWindowPos(IntPtr hWnd, IntPtr hWndInsertAfter, int x, int y, int cx, int cy, uint uFlags);
[DllImport("user32.dll", SetLastError = true)]
internal static extern bool MoveWindow(IntPtr hWnd, int X, int Y, int nWidth, int nHeight, bool bRepaint);
[DllImport("coredll.dll", EntryPoint = "SipShowIM")]
public static extern bool SipShowIMP(int code);
[DllImport("user32.dll")]
public static extern IntPtr GetForegroundWindow();