Daniel Collin

Results 326 comments of Daniel Collin

Sweet! Thanks for the info. Yeah that should make it a bit easier to use actually. It's still on my list to investigate radare2 closer.

No, I'm thinking more of binary and/or scripts. Say that someone wants to publish a plugin for ProDBG it can be written in either C/Rust/C++ and in the future Lua/JS...

I suggest an temporary approach for now as this will become an issue otherwise before 0.1 1. When doing `begin_event` a handle will be returned. (u64) in some cases this...

That is a great suggestion. Right now I think the only way to do this (seeing from the backend point of view) Break at breakpoint Check callstack If string !=...

Sounds like great ideas here. Thanks!

Moved to https://prodbg.phoreplay.com/T9

That is a neat idea. Thanks :)

Given that the API area is quite small I personally don't mind breaking changes that much as long as the version number indicates it (i.e bump of major version) it...

you don't need to expose the internals really, you can just forward declare `struct gbhw;` in the `gbs.h` and it will just take the pointer in each function so that...

An alternative to bump to 1.0 is to do something like this ```C inline void gbhw_setrate(int rate) { gbhw_state_setrate(&g_global_state, rate); } ``` Now the old API can still work and...