idapythonrc.py: Added example for setting the script run timeout

This commit is contained in:
gergely.erdelyi 2009-05-04 19:04:33 +00:00
parent 6d6f4f70fc
commit b4d2b3f813

View File

@ -4,6 +4,7 @@
# Place this script to ~/.idapro/ or to
# C:\Documents and Settings\%USER%\Application Data\Hex-Rays\IDA Pro
#---------------------------------------------------------------------
import idaapi
# Add your favourite script to ScriptBox for easy access
# scriptbox.addscript("/here/is/my/favourite/script.py")
@ -13,3 +14,6 @@
# 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)