Ilan Scheinkman

Results 9 comments of Ilan Scheinkman

Would it also be possible to get the `DirEntry` from an already created `File` or `Dir`? So that, for example, one could get the length of a file or its...

Right now I'm implementing a C wrapper library that requires me to be able to lookup file info by path and do so while maintaining a `File` handle's seek position....

Any update on this? This would be really helpful for the Nintendo Homebrew community. If not I can try making this myself, but if a crate already exists it would...

I have an implementation working at https://github.com/ischeinkman/framebuffer_graphics . It's basically just the code from the PR rearranged into multiple files and with some slight cleanups. It still doesn't have any...

Would it make more sense to use tokio + dbus's nonblocking support, or to just roll a custom version via callbacks? The second would likely be much easier since it...

Oh I meant using custom futures implemented via having callbacks update a response value and then waking the waiting future. I've actually started implementing one based mostly on `dbus::nonblock`, but...

To be honest is there any case where the separate `libnx` version of the struct is even necessary over the `libc` version? The only reason it even gets pulled in...

Actually, my next goal for this is to create a fully functioning FUSE compatible filesystem, meaning that we'd be able to straight up mount the switch and then use it...

So far I've only used it from Linux. The client relies on `libusb` to talk to the Switch; does Windows use something else? To be honest I don't even have...