Patrick Stewart
Patrick Stewart
The other way to go about it is to use mmap to get the memory then the kernel does it for you. You still need an ioctl to get the...
Instead of a separate script you can just use: ` "commandline" : "cmd.exe /c \"set MSYSTEM=MINGW64&& C:\\msys64\\usr\\bin\\bash.exe --login\"",` Note the lack of a space before &&. One problem is that...
I was just pointing out you don't need any .cmd at all.
It renders correctly for the screen it starts on, but when you move the window to another screen the main window doesn't change scale. The file dialogs behave correctly. Which...
You can change the header like so: ``` #if defined(_MSC_VER) && _MSC_VER < 1900 ... #elif (defined(__GNUG__) || defined(__CLANG__)) && __cplusplus < 201700L ... #else inline unsigned uncaught_exception_count() { return...
I've fixed this problem with spawn by backing out the change in glibc mentioned here https://github.com/Microsoft/BashOnWindows/issues/1878 The package is available on the AUR here: https://aur.archlinux.org/packages/glibc-wsl/ You need to build it...
You can also do: set_target_properties(${TARGET} PROPERTIES INTERFACE_SYSTEM_INCLUDE_DIRECTORIES $)
> One thought I've had about the proposed API is that at the moment, whether an endpoint supports RAW_IO depends only on the backend in use, and the proposed `libusb_backend_supports_raw_io`...
I think realistically nobody is going to write that code and get the error handling right etc, and this PR does what we want, so I'm in favour of sticking...
If it's ``` libusb_get_winusb_max_transfer_size(dev, ep) ``` then what you said above about it not being a max transfer size for the platform doesn't really apply. You could have generic: ```...