Search Unity

  1. Megacity Metro Demo now available. Download now.
    Dismiss Notice
  2. Unity support for visionOS is now available. Learn more in our blog post.
    Dismiss Notice

trouble loading UWP native C++ DLL

Discussion in 'Windows' started by BroncoBilli, Mar 28, 2018.

  1. BroncoBilli

    BroncoBilli

    Joined:
    Oct 8, 2017
    Posts:
    90
    I'm writing a C++ DLL, but it's project type in VS 2017 is "Windows Universal DLL". When I build and compile this DLL for x64, and drag it into the Unity Plugins/X86_64 directory, it shows up fine, and I see the plugin inspector show "Any Platform" is checked, and (with the project type being UWP), I see SDK = "Any SDK", and CPU = "x64", and ScriptingBackend = "any". The DLL information says the path and "type = native".

    When I try and load the dll with the dllimport line, it says "Failed to load Assets/Plugins/x86_64/PluginUWP1.dll", with error "The specified module could not be found".

    #1: this IS a debug dll
    #2: it was built with VS 2017, with v141 toolset
    #3: doesn't include anything else, it's basically a blank(ish) dll. no dependencies.
    #4: dependency walker says the only thing it really depends on is vcruntime140D.dll

    Any clues? My DLL pretty much has to be a UWP-flavored dll. I'm thinking it's a manifest issue, or a signing issue, or that Unity just can't load UWP dlls?

    unity's plugin example, the one I found, is really incomplete. I wish you guys had a better one...
     
  2. Tautvydas-Zilys

    Tautvydas-Zilys

    Unity Technologies

    Joined:
    Jul 25, 2013
    Posts:
    10,644
    Hi,

    which configuration are you building the generated VS project in? This could be caused by mixed Debug and Release C runtime versions. When you build the generated VS project in Debug, it will deploy Debug C Runtime with your application, which is compatible with DLLs built in both Debug and Delease. However, if you build it in Release or Master, it will deploy Release C Runtime with your application, which is not compatible with DLLs built in Debug configuration (and your DLL linking to vcruntime140D.dll indicates that you built your DLL in Debug).

    If that is not what's causing it, you'll need to look at loader snaps to figure out why the DLL fails to load:

    1. Download & install Debugging Tools for Windows: https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/
    2. Pop open command prompt, navigate to "C:\Program Files (x86)\Windows Kits\10\Debuggers\x64" and execute this command line to enable loader snaps for your process:

    Code (csharp):
    1. gflags.exe -i "<your_exe_name>" +sls
    For instance:

    Code (csharp):
    1. gflags.exe -i "New Unity Project 45.exe" +sls
    3. Launch your game through Visual Studio and play it until your DLL fails to load.
    4. Look at the Visual Studio output window - it will contain a verbose log of Windows DLL loader for your process. Look for your DLL name - it should say why it failed to load.
    5. In the command prompt, execute this command to disable loader snaps for your process:

    Code (csharp):
    1. gflags.exe -i "<your_exe_name>" -sls
    I hope this helps!
     
  3. BroncoBilli

    BroncoBilli

    Joined:
    Oct 8, 2017
    Posts:
    90
    uh... i dont think tbis is the trouble. 1, im debugging and running this from the editor. 2, a normal, non uwp dll worka fine.
     
  4. Tautvydas-Zilys

    Tautvydas-Zilys

    Unity Technologies

    Joined:
    Jul 25, 2013
    Posts:
    10,644
    Oh, the UWP DLL can't be loaded in the editor? I have no idea whether you can load a UWP DLL in win32 process tbh. But using loader snaps should work for the editor too (replace <your_exe_name> with Unity.exe) if you attach VS debugger to it.
     
  5. BroncoBilli

    BroncoBilli

    Joined:
    Oct 8, 2017
    Posts:
    90
    well, a normal x64 dll works, but the UWP native C++ x64 dll does not. who knows what I'm talking about? My version of unity is the x64 version, not x86.
     
  6. Tautvydas-Zilys

    Tautvydas-Zilys

    Unity Technologies

    Joined:
    Jul 25, 2013
    Posts:
    10,644
    I told you how to diagnose the problem...
     
  7. BroncoBilli

    BroncoBilli

    Joined:
    Oct 8, 2017
    Posts:
    90
    how about YOU debug the problem and you tell me if a UWP C++ dll does or does not load in the editor? seems to be Unity's bug, not mine.
     
  8. Tautvydas-Zilys

    Tautvydas-Zilys

    Unity Technologies

    Joined:
    Jul 25, 2013
    Posts:
    10,644
    I don't think it is a Unity bug, Mono just calls LoadLibrary on your DLL and that fails, apparently (probably due to missing dependencies or incompatible linker flags). If you strongly believe it is our bug, feel free to report it through our bug reporter and we'll look into it eventually.
     
  9. BroncoBilli

    BroncoBilli

    Joined:
    Oct 8, 2017
    Posts:
    90
    well, honestly, I didn't know there even was such a thing as a UWP C++ DLL before last week. I figured *ANY* DLL loaded into a UWP program's space also became UWP by the fact it had been loaded. And perhaps this is true, and is also why my UWP DLL is failing whereas the normal DLL is loading. I have no idea until I put a lot more time into this issue. I was more hoping somebody at Unity had tried writing a UWP native DLL and tried loading it as a plugin and said, "whoops, you can't do this", and somebody would tell me so. Until that happens, it's still a mystery on my end. I'll let you guys know what I find out. (I work closely with your development team in my job @ Microsoft)
     
  10. RobJellinghaus

    RobJellinghaus

    Joined:
    Jul 10, 2017
    Posts:
    17
    @Tautvydas-Zilys thank you for your help in this thread. I am in an identical situation to the original poster. I have a C++ debug x64 UWP DLL, "NowSoundLib.dll", built from this library. I am trying to load it from a Unity debug x64 UWP app. I have copied the NowSoundLib.dll file everywhere -- into my Unity UWP app's bin\x64\Debug directory, the bin\x64\Debug\Core directory, the Plugins and Plugins\x64 directories. I continue to get nothing but DllNotFoundException when trying to call a DllImport method on it.

    Running Unity 2017.4.0f1 personal.

    I tried taking your good gflags.exe advice. I've used gflags.exe on Win32 executables in the past, no problem. Unfortunately, when I try to use it on the UWP .exe of my app here, it seems to have no effect whatsoever. My app's name is "Holofunk-Unity" -- I see a bin\x64\Debug\Holofunk-Unity.exe executable, and a bin\x64\Debug\Core\Holofunk-Unity.exe executable, but using gflags to set "Show loader snaps" on both of those has no effect. Not even setting "Show loader snaps" in the "System Registry" tab of gflags.exe has any effect. The VS2017 debug output does not change at all; no additional detail is actually provided.

    Thanks very much.

    Edit: Following various further links I used Application.dataPath to discover that my app was actually in bin/x64/Debug/AppX. Turns out copying my DLL to *that* location fixes the DllNotFoundException. @BroncoBilli you may want to try this. I now get an EntryPointNotFoundException but hopefully that will be easier to deal with :) And this probably explained my gflags.exe trouble.

    (Why does Unity drop four different executables under bin/x64/Debug when compiling for UWP? Kinda confusing ;-) )
     
    Last edited: Apr 9, 2018
  11. Tautvydas-Zilys

    Tautvydas-Zilys

    Unity Technologies

    Joined:
    Jul 25, 2013
    Posts:
    10,644
    @RobJellinghaus Did you drop that DLL into your Unity Project? If it's configured to be compatible with UWP in the plugin inspector, Unity should automatically setup the Visual Studio project to copy your DLL into AppX folder of the app.

    As for GFlags.exe not giving you any output - any chance your debugger is configured to debug "managed only" code? I believe loader snaps output dumps into native debugger console, so you'll have to set your debugger be "native only" or "mixed".

    Lastly, bin/x64/Debug folder is populated by Visual Studio, so it's not us that's dumping stuff there :).
     
  12. BroncoBilli

    BroncoBilli

    Joined:
    Oct 8, 2017
    Posts:
    90
    @RobJellinghaus : sounds to me like you're trying to build/compile/debug. I can see that the DLL should be in /bin/x64/Debug/AppX if that were the case. I am trying to RUN the unity project FROM THE EDITOR. Honestly, at this point, I could care less if I can compile it and THEN run it, if I can't iteratively make changes and run it from the editor, what's the point? So, Tautvydas/whoever - no, dropping the dll right onto the Unity project, if it's a UWP-based DLL, doesn't work. If I drop a non-UWP DLL onto the project, it DOES work. Still waiting for an answer...
     
  13. BroncoBilli

    BroncoBilli

    Joined:
    Oct 8, 2017
    Posts:
    90
    clarification: I am trying to debug right from the unity project. Not by compiling it first. Can somebody at Unity create a UWP C++ DLL, give it 1 method, then try to access that DLL from Unity? It took me about 5 minutes to try this, can somebody at Unity try?

    BTW, I work at Microsoft.
    thanks.
     
  14. Tautvydas-Zilys

    Tautvydas-Zilys

    Unity Technologies

    Joined:
    Jul 25, 2013
    Posts:
    10,644
    Why would you even do that? Would you expect iPhone native plugins to work in the editor? Editor runs as Windows desktop application, so your plugin should be compiled for that when running in the editor.

    Yeah, that doesn't work. But neither does it work when trying to load that into an empty win32 console application.
     
  15. BroncoBilli

    BroncoBilli

    Joined:
    Oct 8, 2017
    Posts:
    90
    Why would I even do that? Because I was under the impression that the Unity Editor (main program) was a desktop app, but when you press play and start debugging, it silently fires up a UWP app, sends it the code, and tells it to run. Sure, Editor runs as a Windows Desktop app, but why wouldn't the runtime engine that I'm debugging, the thing that is running my game, why wouldn't that be a UWP app, if I've selected UWP as my platform type? I don't see it documented anywhere that when I'm debugging and pressing play that the thing I'm debugging is STILL a desktop app! (show me where?)

    If this is true, that the engine I'm debugging and stepping through is desktop-based, then yeah no kidding it can't load a UWP C++ DLL. But I don't see this documented anywhere.

    Unity, please confirm or deny?
     
  16. JoeStrout

    JoeStrout

    Joined:
    Jan 14, 2011
    Posts:
    9,859
    I'm not Unity, but I can tell you from past experience that this is exactly right: when you run a game within the editor, it is not even a separate process — it runs right within the same process as the editor itself. This is why, for example, when you stop your game at a breakpoint with a debugger, the whole Unity IDE is halted as well.
     
  17. Tautvydas-Zilys

    Tautvydas-Zilys

    Unity Technologies

    Joined:
    Jul 25, 2013
    Posts:
    10,644
    When you press play, editor runs your code in the same process, which is a desktop application. There's no hidden UWP app anywhere. I don't know where you got an idea that there was, since there's no documentation that says this is a thing.
     
  18. moonblood2

    moonblood2

    Joined:
    Oct 26, 2018
    Posts:
    5
    I'm also facing this problem. Did you find a way to solve this yet? BroncoBilli