mirror of
https://github.com/idapython/src
synced 2026-06-08 14:47:00 +00:00
IDAPython for IDA 8.3
This commit is contained in:
@@ -11,7 +11,6 @@ description:
|
||||
keywords: forms
|
||||
"""
|
||||
|
||||
from __future__ import print_function
|
||||
# -----------------------------------------------------------------------
|
||||
# This is an example illustrating how to use the Form class
|
||||
# (c) Hex-Rays
|
||||
|
||||
@@ -8,7 +8,6 @@ description:
|
||||
keywords: graph, actions
|
||||
"""
|
||||
|
||||
from __future__ import print_function
|
||||
# -----------------------------------------------------------------------
|
||||
# This is an example illustrating how to use the user graphing functionality
|
||||
# in Python
|
||||
|
||||
@@ -14,8 +14,6 @@ keywords: graph, idaview
|
||||
see_also: wrap_idaview
|
||||
"""
|
||||
|
||||
from __future__ import print_function
|
||||
|
||||
import ida_kernwin
|
||||
import ida_moves
|
||||
import ida_graph
|
||||
|
||||
@@ -10,8 +10,6 @@ keywords: idaview, graph
|
||||
see_also: custom_graph_with_actions, sync_two_graphs
|
||||
"""
|
||||
|
||||
from __future__ import print_function
|
||||
|
||||
# -----------------------------------------------------------------------
|
||||
# (c) Hex-Rays
|
||||
|
||||
|
||||
@@ -12,8 +12,6 @@ description:
|
||||
keywords: listing, actions
|
||||
"""
|
||||
|
||||
from __future__ import print_function
|
||||
|
||||
import ida_kernwin
|
||||
import ida_lines
|
||||
|
||||
|
||||
@@ -11,7 +11,6 @@ keywords: chooser, actions
|
||||
see_also: choose_multi, chooser_with_folders
|
||||
"""
|
||||
|
||||
from __future__ import print_function
|
||||
import ida_kernwin
|
||||
from ida_kernwin import Choose
|
||||
|
||||
|
||||
@@ -9,10 +9,8 @@ keywords: chooser, actions
|
||||
see_also: choose, chooser_with_folders
|
||||
"""
|
||||
|
||||
from __future__ import print_function
|
||||
from ida_kernwin import Choose
|
||||
|
||||
|
||||
class MyChoose(Choose):
|
||||
|
||||
def __init__(self, title, nb = 5):
|
||||
|
||||
@@ -80,7 +80,6 @@ SUPVAL_COL2_DATA_TAG = '2'
|
||||
class base_idapython_tree_view_t(ida_kernwin.Choose):
|
||||
|
||||
def __init__(self, title, nitems=100, dirspec_log=True, flags=0):
|
||||
flags |= ida_kernwin.CH_NOIDB
|
||||
flags |= ida_kernwin.CH_MULTI
|
||||
flags |= ida_kernwin.CH_HAS_DIRTREE
|
||||
ida_kernwin.Choose.__init__(self,
|
||||
|
||||
@@ -10,7 +10,6 @@ keywords: chooser, functions
|
||||
see_also: choose, choose_multi, chooser_with_folders
|
||||
"""
|
||||
|
||||
from __future__ import print_function
|
||||
import idautils
|
||||
import idc
|
||||
import ida_funcs
|
||||
|
||||
Reference in New Issue
Block a user