Exemplo n.º 1
0
 def get_comment(self, repeteable=True):
     return idc.GetStrucComment(self.sid, repeteable)
Exemplo n.º 2
0
 def yacheck_create_struct(self):
     for name, comment, repeatable in create_struct:
         sid = idc.GetStrucIdByName(name)
         self.assertNotEqual(sid, idaapi.BADADDR)
         self.assertEqual(idc.GetStrucComment(sid, repeatable), comment)