mirror of
https://github.com/cemu-project/idapython.git
synced 2024-11-24 10:09:20 +01:00
06e8cad773
minor changes: removed trailing spaces from files
20 lines
678 B
Python
20 lines
678 B
Python
#---------------------------------------------------------------------
|
|
# Example user initialisation script: idapythonrc.py
|
|
#
|
|
# Place this script to ~/.idapro/ or to
|
|
# %APPDATA%\Hex-Rays\IDA Pro
|
|
#---------------------------------------------------------------------
|
|
import idaapi
|
|
|
|
# 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)
|
|
|
|
# Set the timeout for the script execution cancel dialog
|
|
# idaapi.set_script_timeout(10)
|