Boscop
Boscop
And the [winres](https://github.com/mxre/winres) crate, which also supports metadata..
I have Windows sdk 8.1. Plain old cmd.exe. Shouldn't this crate be able to find the location of the sdkl through the registry? :)
Hm, apparently I have the HKLM key (but not the older HKCU key): 
But if self updates a child's state, will it trigger a render of self? Or only of the child?
(Sorry to hijack this old conversation.) I'm doing this: ```rust // prevent child processes from being terminated by ctrl-c cfg_if! { if #[cfg(windows)] { pub fn prevent_being_killed(cmd: &mut Command) ->...
Thanks! (Btw, it's weird that `setpgid` doesn't show up in the docs search: https://docs.rs/libc/0.2.91/libc/?search=setpgid) I now wrote it like this to handle errors: ```rust pub fn prevent_being_killed(cmd: &mut Command) ->...
Thanks for the quick reply. I'll use `os_pipe::pipe()` then. Btw, is it planned to add support for incremental writing in duct? (E.g. with a `.writer()` method returning a `WriterHandle`.) That...
@oconnor663 Why can't dropping the writer be used as that indication? And writing when the child-process has already terminated, that would cause a io error. Streaming into a child-process is...
Can't the handle to the child process be decoupled from the writer? So that there's a separate `ChildHandle` that can outlive the `WriterHandle`?
@oconnor663 It works now but I'm getting a lot of dropped frames when reading from 2 webcams at the same time (separate ffmpeg child processes, even in separate threads). I...