Hi all,
I'm writing a .NET Core3.1 app that needs to load a native C DLL by LoadLibrary and GetProcAddress functions.
Usually it correctly runs but if I run it on the final machine I need to run it instead of explorer process cause the machine is a Kiosk.
In this configuration the GetProcAddress function returns null for the function pointers. If I launch explorer the application is ok.
Which is the reason of this behavior?
How can I solve on the final machine?
Thanks, regards