コード例 #1
0
ファイル: ex_custdata.py プロジェクト: AmesianX/src
 def __init__(self):
     data_format_t.__init__(
         self,
         "py_w32rsrcstring",
         1,
         "Resource string")
     self.cache_node = idaapi.netnode("$ py_w32rsrcstring", 0, 1)
コード例 #2
0
ファイル: ex_custdata.py プロジェクト: joeleong/idapython
 def __init__(self):
     data_format_t.__init__(
         self,
         "py_w32rsrcstring",
         1,
         "Resource string")
     self.cache_node = idaapi.netnode("$ py_w32rsrcstring", 0, 1)
コード例 #3
0
ファイル: ex_custdata.py プロジェクト: AmesianX/src
 def __init__(
         self,
         name="py_simple_vm_format",
         menu_name="SimpleVM"):
     data_format_t.__init__(
         self,
         name,
         0,
         menu_name)
コード例 #4
0
ファイル: ex_custdata.py プロジェクト: joeleong/idapython
 def __init__(
         self,
         name="py_simple_vm_format",
         menu_name="SimpleVM"):
     data_format_t.__init__(
         self,
         name,
         0,
         menu_name)
コード例 #5
0
 def __init__(self):
     data_format_t.__init__(self, name=pascal_data_format.FORMAT_NAME)
コード例 #6
0
 def __init__(self):
     data_format_t.__init__(self,
                            name="py_w32rsrcstring",
                            value_size=1,
                            menu_name="Resource string")
     self.cache_node = idaapi.netnode("$ py_w32rsrcstring", 0, 1)
コード例 #7
0
 def __init__(self):
     data_format_t.__init__(self,
                            name="py_makedword",
                            value_size=4,
                            menu_name="Make DWORD")
コード例 #8
0
ファイル: ex_custdata.py プロジェクト: YuKnight/src-1
 def __init__(self):
     data_format_t.__init__(self, "py_makedword", 4, "Make DWORD")
コード例 #9
0
ファイル: ex_custdata.py プロジェクト: Spl3en/idapython
 def __init__(self):
     data_format_t.__init__(self, name=pascal_data_format.FORMAT_NAME)
コード例 #10
0
ファイル: ex_custdata.py プロジェクト: Spl3en/idapython
 def __init__(self):
     data_format_t.__init__(self,
                            name="py_w32rsrcstring",
                            value_size = 1,
                            menu_name = "Resource string")
     self.cache_node = idaapi.netnode("$ py_w32rsrcstring", 0, 1)
コード例 #11
0
ファイル: ex_custdata.py プロジェクト: Spl3en/idapython
 def __init__(self):
     data_format_t.__init__(self,
                            name="py_makedword",
                            value_size = 4,
                            menu_name = "Make DWORD")
コード例 #12
0
ファイル: ex_custdata.py プロジェクト: AmesianX/src
 def __init__(self):
     data_format_t.__init__(
         self,
         "py_makedword",
         4,
         "Make DWORD")