I have an simple FM Radio Tuner App in Silverlight 5 Out-of-browser that calls code from a Native C++ DLL from my USB FM Receiver using PInvoke. This application works very fine in Windows 8 with Silverlight5.

Now I'm trying to port it to a Metro App using WinRT.

The migration from Silverlight to XAML UI is pretty easy and worked well. The PInvoke signatures and attributes was detected fine with the namespace System.Runtime.InteropServices and the DLLImport attribute.

The problem is that when I'm running the App and call any method from the PInvoked native DLL that used to work in my SL5 app(that works fine even on Windows8), I have this exception:

System.DllNotFoundException was unhandled by user code
  Message=Unable to load DLL 'CarTFTFM.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E)
  Source=metroradio
  TypeName=""
  StackTrace:
       at MetroRadio.FMRadio.HWInit2(Int32 port, Int32 initVolume)
       at MetroRadio.MediaService.InitializeRadio() in c:\Users\Gutemberg\Documents\Visual Studio 11\Projects\MetroRadio\MetroRadio\MediaService.cs:line 160
       at MetroRadio.MainPage.radio_Click(Object sender, RoutedEventArgs e) in c:\Users\Gutemberg\Documents\Visual Studio 11\Projects\MetroRadio\MetroRadio\MainPage.xaml.cs:line 43
  InnerException: 

So, my question is, what is the problem on this PInvoke? Since it Works well on Windows8 with a SL5 app, I dont see any reasons to have problems with WinRT/Metro Apps.

link|improve this question
1  
Sounds like the DLL is missing from the package manifest. Current docs are too obscure to give a good link. – Hans Passant Jan 16 at 15:09
Take a look at this question: stackoverflow.com/questions/7807361/… – Aleksandr Dubinsky Jan 16 at 15:26
Sound similar but still no success... – Gutemberg Ribeiro Jan 16 at 15:50
1  
Metro apps are not allowed to call just any Win32 function. Perhaps the DLL uses an invalid call when loading (DllMain) which causes the loading to fail. Remember it is not even Beta just yet... – Erno Jan 16 at 19:40
feedback

1 Answer

Windows 8 Metro / WinRT applications run inside a sandboxed environment that does not have access to PInvoke or the Win32 API. This is a purposefull limitation of the platform for security reasons. This way they can "guarentee" the the security of apps distributed through the app store just the same as Google and Apple do on their platforms.

link|improve this answer
1  
This is plain wrong. P/Invoke and COM Interop are most certainly supported for .NET Metro apps. Win32 API is also supported, and can be called through the above technologies, though it is limited to those functions that are available to Metro apps (i.e. if a C++ Metro app can't call it, neither can a .NET app). – Pavel Minaev Feb 1 at 9:59
Only a subset of Win32 and COM API is supported: msdn.microsoft.com/en-us/library/windows/apps/br205757 – Morten Frederiksen Apr 22 at 9:12
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.