You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello @praeclarum ! Thanks for developing this useful library!
i have an issue/request...i need to parse several .h header files in order to find offset of data in memory dump. I used and it works for structures and variables but i now i need to parse bitmaps...
Hello @praeclarum ! Thanks for developing this useful library!
i have an issue/request...i need to parse several .h header files in order to find offset of data in memory dump. I used and it works for structures and variables but i now i need to parse bitmaps...
typedef struct
{
unsigned char bit0 : 1;
unsigned char bit1 : 2;
unsigned char NU : 5;
} MyBitmap;
But i have an error with
var exe = CLanguageService.Compile(code, MachineInfo.Windows32, new TestPrinter());
What is it possible to do?
Thanks
The text was updated successfully, but these errors were encountered: