mirror of
https://github.com/cemu-project/idapython.git
synced 2024-11-24 18:16:55 +01:00
16 lines
614 B
Python
16 lines
614 B
Python
|
#---------------------------------------------------------------------
|
||
|
# Example user initialisation script: idapythonrc.py
|
||
|
#
|
||
|
# Place this script to ~/.idapro/ or to
|
||
|
# C:\Documents and Settings\%USER%\Application Data\Hex-Rays\IDA Pro
|
||
|
#---------------------------------------------------------------------
|
||
|
|
||
|
# Add your favourite script to ScriptBox for easy access
|
||
|
# scriptbox.addscript("/here/is/my/favourite/script.py")
|
||
|
|
||
|
# Uncomment if you want to set Python as default interpreter in IDA
|
||
|
# idaapi.enable_extlang_python(True)
|
||
|
|
||
|
# Disable the Python from interactive command-line
|
||
|
# idaapi.enable_python_cli(False)
|