CXO2

Results 9 comments of CXO2

You probably need to learn basic things about Windows API before you dive in and you may want to check controller callback which defined in here: https://github.com/SirusDoma/MaiSense/blob/master/src/dllmain.cpp#L55 Additionally, check `KeyboardController.cpp`,...

I think the because the binary is compiled using [10.0 as the target platform](https://github.com/SirusDoma/MaiSense/blob/master/MaiSense.Launcher.vcxproj#L25) which use windows 10 API and break some API in older windows version like [RegisterWindowTouch](https://github.com/SirusDoma/MaiSense/blob/master/src/InputManager.cpp#L122) or...

I believe it something related to touch emulation for mouse input, its actually unusable and i never figured out to make it work and should be safe to delete If...

For cleaner solution, I think you just need to delete MouseController class entirely, and make sure to delete initialization and controller registration inside [dllmain](https://github.com/SirusDoma/MaiSense/blob/master/src/dllmain.cpp)

Ah I see now, this is the input code that mainly used to process touch event, I believe this is inside TouchController and of course you cannot remove it, I...

After looking at [GetPointerType](https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-getpointertype#requirements) and [GetPointerInfo](https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-getpointerinfo#requirements) API Documentation, I don't think you will make it even compiling with windows 7 as the target platform. It mentioned that minimum supported client...

Hey, I still haven't figure out how to separate dashboard and wireguard container but I manage to setup everything under 5 mins (or even less) with pre-existing wireguard image out...

Hey, I know that you said that you might not be able to make it into 1.0 but is there any clear estimation on this? I'd really like to see...

The `Clip` extension sounds neat, I haven't tried by myself but I got the idea. One more thing (I'm not sure it still relevant, hopefully it's not treated as hijacking...