The sources of IDAPython, a plugin for IDA for using python for scripting in IDA, instead of IDC.

源代码在线查看: gendocs.py

软件大小: 170 K
上传用户: liuchuyuan
关键词: for IDAPython IDA scripting
下载地址: 免注册下载 普通下载 VIP

相关代码

				#------------------------------------------------------------
				# gendoc.py: Generate an API cross-reference for IDAPython
				#------------------------------------------------------------
				__author__ = "Gergely Erdelyi "
				
				import epydoc.cli
				
				# This is a small hack to prevent epydoc from exiting the whole
				# IDA process in case something goes wrong.
				def exit(eval):
				    print "not exiting"
				epydoc.cli.sys.exit = exit
				
				# Fill in the command-line arguments
				epydoc.cli.optparse.sys.argv = [ 'epydoc', 
				                                 '--no-sourcecode', 
				                                 '-u', 'http://www.d-dome.net/idapython/',
				                                 '--navlink', 'IDAPython Reference',
				                                 '--no-private',
				                                 '--simple-term',
				                                 '-o', 'idapython-reference-%d.%d.%d' % (IDAPYTHON_VERSION[:3]),
				                                 '--html', 
				                                 'idc', 'idautils', 'idaapi' ]
				# Generate the documentation
				epydoc.cli.cli()
							

相关资源