rsp4jack

Results 76 comments of rsp4jack

GitHub does not want me to upload the core dump: https://transfer.it/t/qVdk64h3SLQT archive password: `helloimhex`

> Are you making it static using the attribute or is it static because it is made of builtin elements? It consists of static struct elements. > The stack trace...

~Possibly duplicate of #2114~

Here is a example which I think to reproduce this bug: ```cpp bitfield custom_bitfield { a : 16; b : 48; }[[static]]; custom_bitfield cb[1]@0; ``` (from https://github.com/WerWolv/ImHex/issues/2114#issuecomment-2660378363) the file size...

> I believe this is sadly pretty hard to fix without breaking many other patterns in the process. In that case, is it possible to come up with a *patch...

This workaround works, but I am working with char arrays with different extent (including while() and even sections), therefore it becomes ugly and sometimes unusable. Simply we had better have...

@WerWolv ~Hey I just came up with an idea, I think that the second argument of the function should be auto, then it will accept a variety of data, just...

A workaround: ```cpp import hex.core; import std.mem; char array[while(!std::mem::eof())] @ 0x0; u8 pattern[sizeof(array)] @ addressof(array) in 0 [[hidden]]; hex::core::add_virtual_file("/", pattern); ``` `in 0` means placing it in the main section,...

Think about a service which has an interactive console on standard IO, it would be nice to manipulate it over shawl. As an example for CLI, `shawl console ` will...