Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft PR: Support for IDA 9.0 API Changes #141

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions blutter/src/DartDumper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ void DartDumper::Dump4Ida(std::filesystem::path outDir)
// use header file then adding comment is much faster
auto comments = DumpStructHeaderFile((outDir / "ida_dart_struct.h").string());
of << R"CBLOCK(
import ida_struct
import idaapi
import os
def create_Dart_structs():
sid1 = idc.get_struc_id("DartThread")
Expand All @@ -135,10 +135,10 @@ def create_Dart_structs():
idaapi.idc_parse_types(hdr_file, idc.PT_FILE)
sid1 = idc.import_type(-1, "DartThread")
sid2 = idc.import_type(-1, "DartObjectPool")
struc = ida_struct.get_struc(sid2)
struc = idc.get_struc(sid2)
)CBLOCK";
for (const auto& [offset, comment] : comments) {
of << "\tida_struct.set_member_cmt(ida_struct.get_member(struc, " << offset << "), '''" << comment << "''', True)\n";
of << "\tidaapi.set_member_cmt(idaapi.get_member(struc, " << offset << "), '''" << comment << "''', True)\n";
}
of << "\treturn sid1, sid2\n";
of << "thrs, pps = create_Dart_structs()\n";
Expand Down