I have found
ida_hexrays.change_hexrays_config()
which can set values but I want to read them instead so I was hoping to find something in the style of:
ida_hexrays.read_hexrays_config()
ida_hexrays.get_hexrays_config()
or that the change_hexrays_config()
would return the value it was before it changed it but I cannot find anything like that.
What I am really trying to do: I’m running decompile_many()
but since I have set COLLAPSE_LVARS = YES
in my hexrays.cfg (I want it that way when I do manually work) the decompiled C file have no local variables. I can fix this by setting the COLLAPSE_LVARS = NO
but I want to set that variable back to whatever it was set to before I started the decompile_many()