I have been trying to run an open source Windows executable that I would like to help porting to macOS using the Game Porting Toolkit but I stumbled on an issue quite early in the application lifecycle.
It looks like the funtion GetThreadDpiHostingBehavior is missing in USER32.dll
Has anyone any idea how to solve that?
During the startup, it fails with the following error:
TiXL crashed. We're really sorry.
The last backup was saved Unknown time to...
C:\users\crossover\AppData\Roaming\TiXL\Backup
Please refer to Help > Using Backups on what to do next.
System.EntryPointNotFoundException: Unable to find an entry point named 'GetThreadDpiHostingBehavior' in DLL 'USER32.dll'.
at System.Windows.Forms.ScaleHelper.DpiAwarenessScope..ctor(DPI_AWARENESS_CONTEXT context, DPI_HOSTING_BEHAVIOR behavior)
at System.Windows.Forms.ScaleHelper.EnterDpiAwarenessScope(DPI_AWARENESS_CONTEXT awareness, DPI_HOSTING_BEHAVIOR dpiHosting)
at System.Windows.Forms.NativeWindow.CreateHandle(CreateParams cp)
at System.Windows.Forms.Control.CreateHandle()
at System.Windows.Forms.Application.ThreadContext.get_MarshallingControl()
at System.Windows.Forms.WindowsFormsSynchronizationContext..ctor()
at System.Windows.Forms.WindowsFormsSynchronizationContext.InstallIfNeeded()
at System.Windows.Forms.Control..ctor(Boolean autoInstallSyncContext)
at System.Windows.Forms.ScrollableControl..ctor()
at System.Windows.Forms.ContainerControl..ctor()
at System.Windows.Forms.Form..ctor()
at T3.Editor.SplashScreen.SplashScreen.SplashForm..ctor()
at T3.Editor.SplashScreen.SplashScreen.Show(String imagePath) in C:\Users\pixtur\dev\tooll\tixl\Editor\SplashScreen\SplashScreen.cs:line 25
at T3.Editor.Program.Main(String[] args) in C:\Users\pixtur\dev\tooll\tixl\Editor\Program.cs:line 111
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
I am trying to run a .NET application, Tooll3 with the Game Porting Toolkit on an M2 Max and I keep getting the following error:
018c:err:virtual:virtual_setup_exception stack overflow 2816 bytes in thread 018c addr 0x6811c52b stack 0x20500 (0x20000-0x21000-0x1a0000)
Is there any way to get a better stack trace to narrow down where the problem could lie?
I just recompiled an app with Xcode 13.1 and deployed it on one of my iPhone running iOS 15.1.1 and when the app starts, it just gets terminated.
It happens both if I run it from Xcode or by tapping directly on the app's icon.
It looks like the app is not even running and crashing. I checked the console logs and all I can see is stuff like this:
NSUnderlyingError = <NSError: 0x28762b840; domain: FBWorkspaceScene; code: 1; reason: "Client process exited.">;
}
I tried to wade through the logs that are not errors but I couldn't find anything relevant.
Has anyone had this issue before?