Replies: 1 comment 4 replies
-
Detours generally does not support UWP. Additionally, launching an exe directly for an UWP app does not work. I suspect that the process you hooked simply relaunched the app properly and terminated itself. However, if you're simply attempting to capture video, you do not need to hook. All UWP games are borderless fullscreen, so DXGI desktop duplication or Windows.Graphics.Capture should work. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am using Detour's
CreateProcessWithDlls
in order to inject a DXGI hook to capture video.That works great in desktop games, but fails for Minecraft Bedrock Edition, which is an UWP app. Here's what the experience was in steps:
CreateProcessWithDlls
on Minecraft.Windows.exeDllMain
. What happened is the process did not show up in the Task Manager or in Visual Studio attach dialog until those 30 seconds passed, and when it finally did the DLL was not loaded.Any suggestions?
Beta Was this translation helpful? Give feedback.
All reactions