Anton Romanov
Anton Romanov
Just subscribing to their intents and dumping their contents would be much easier then to decompile it I believe.
What I meant was: Use dumpsys activity broadcasts To get the name of broadcasts AIMP sends, subscribe to them, and use something like this: http://stackoverflow.com/questions/5968896/listing-all-extras-of-an-intent to dump their contents and...
Sorry, I'm not interested in AIMP at all, I was just suggesting a way to try this without decompiling
Just for the record - I'm having no issues (after ddr=gdi) with MTGO on mac using native wine (no docker or any containers).
I don't think this works anymore, sorry. And I don't really have any time for this anymore :(
Sorry, I don't have much time anymore so not sure if I'll ever get to work on this. Anyway, when did it stop working? And what is actually not working...
>To add a method that takes a Field value or, preferably, a name: &str and returns the Option So while getting value by field name doesn't make a lot of...
Have anyone given this any thought? this could be resolved by using `packed` repr rather then `C` but not sure if thats the right solution
For my usecase I ended up writing following derive proc macro: ```rust #[proc_macro_derive(FlattenSubcommand)] pub fn flatten_subcommand(input: proc_macro::TokenStream) -> proc_macro::TokenStream { let ast = syn::parse_macro_input!(input as syn::DeriveInput); let de = match...
> Duplicate of #15 #15 specifically talks about structs and i'm talking about flattening command enums here