ghidra/GhidraBuild/IDAPro/Python/7xx
Paul Sorensen b7e048df77
Fix idaxml set_member_cmt func call
The script originally was incorrectly calling `idc.set_member_cmt` which
takes different arguments to calculate the member struct and offset. And
then it passes the results into the `ida_struct` version. However, this is
already done, so we can just go straight to the `ida_struct` version.
2021-03-30 13:39:59 -04:00
..
loaders Updated certification headers 2021-03-17 18:22:50 -04:00
plugins Updated certification headers 2021-03-17 18:22:50 -04:00
python Fix idaxml set_member_cmt func call 2021-03-30 13:39:59 -04:00
README.html Fix typo in the README file 2020-03-10 18:58:22 +01:00

<html>
  <head>
    <title>XML Exporter for IDA version 7</title>
    <style>
      filename {
        font-family: monospace;
      }
    </style>
  </head>
  <body>
    <h1>XML Exporter for IDA version 7</h1>
    <p>
      The 7XX versions of the XML Exporter, Importer, and Loader can only be used
      with IDA version 7.0 and greater.
    </p>
    <p>
      <filename>xml_exporter.py</filename> is a plugin to export an IDA database as an XML file.
      It must be placed in the IDA plugins folder.
    </p>
    <p>
      <filename>xml_loader.py</filename> is an IDA loader to build a new database using an XML file.
      It loads the .bytes file and builds the IDA database using the contents of
      the XML file. NOTE: Currently, the loader does not support importing memory
      overlays or Harvard architectures (e.g., 8051).
      It must be placed in the IDA loaders folder.
    </p>
    <p>
      <filename>xml_importer.py</filename> is a plugin to add data from an XML file to an existing
      database. It will NOT load any binary data from the bytes file. It will add
      symbols, comments, code, data, functions, etc. for addresses that currently
      exist in the database.
      It must be placed in the IDA plugins folder.
    </p>
    <p>
      The <filename>idaxml.py</filename> module is a require import for the xml_exporter, xml_importer,
      and xml_loader.
      It must be placed in the IDA python folder.
    </p>
  </body>
</html>