The DllImport Project (+/also C++ Wrapper) [Mango Support]
HI Fiinix,
I m using your CSharp_DllImport in Developer unlock MANGO, calling from my background agent, i m running an instance which ll call your methods like
Phone.Search,OpenSearch() ..not opening search but i can run the same from normal WindowsPhone App ..
Please help me on this ..am i missing any dlls need to add..as i following u r s thread http://forum.xda-developers.com/show....php?t=1006331 and doing all actions mentioned.
And also i removed interopservices capabilities from WMAppmanifest.xml also
And i try to use your Postmessage
var o = DllImportCaller.lib.IntQuadCall("coredll", "PostMessageW",
0xffff,
(int)WM.WM_KEYDOWN,
(int)Phone.KeyboardHook.PhysicalKeys.BackKey,
0);
var o2 = DllImportCaller.lib.IntQuadCall("coredll", "PostMessageW",
0xffff,
(int)WM.WM_KEYUP,
(int)Phone.KeyboardHook.PhysicalKeys.BackKey,
0);
Basically i m trying to simulate Back,Home,Search key simulations on Windows Phone using u r DLL on WindowsPhone 7.5 mango
|