当前位置: 首页>>代码示例>>Python>>正文


Python idaapi.del_menu_item方法代码示例

本文整理汇总了Python中idaapi.del_menu_item方法的典型用法代码示例。如果您正苦于以下问题:Python idaapi.del_menu_item方法的具体用法?Python idaapi.del_menu_item怎么用?Python idaapi.del_menu_item使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在idaapi的用法示例。


在下文中一共展示了idaapi.del_menu_item方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: term

# 需要导入模块: import idaapi [as 别名]
# 或者: from idaapi import del_menu_item [as 别名]
def term(self):
        """
        Terminate plugin
        """
        for context in self.menu_contexts:
            idaapi.del_menu_item(context)
        return None 
开发者ID:xorpd,项目名称:fcatalog_client,代码行数:9,代码来源:fcatalog_plugin.py

示例2: remove

# 需要导入模块: import idaapi [as 别名]
# 或者: from idaapi import del_menu_item [as 别名]
def remove(self, option_groups):
        if "enable" in option_groups:
            if self.enable_menu_item:
                idaapi.del_menu_item(self.enable_menu_item)
        if "svn" in option_groups:
            for x in self.svn_menuitems:
                idaapi.del_menu_item(x)
                self.svn_menuitems = []
        if "full" in option_groups:
            for x in self.ex_addmenu_item_ctx:
                idaapi.del_menu_item(x)
            self.ex_addmenu_item_ctx = [] 
开发者ID:CubicaLabs,项目名称:IDASynergy,代码行数:14,代码来源:IDASynergy.py

示例3: term

# 需要导入模块: import idaapi [as 别名]
# 或者: from idaapi import del_menu_item [as 别名]
def term(self):
        logger.debug("[+] %s.term()" % self.__class__.__name__)
        if idaapi.IDA_SDK_VERSION < 700:
            for menu in self.menuitems:
                idaapi.del_menu_item(menu) 
开发者ID:tintinweb,项目名称:ida-batch_decompile,代码行数:7,代码来源:ida_batch_decompile.py

示例4: rm

# 需要导入模块: import idaapi [as 别名]
# 或者: from idaapi import del_menu_item [as 别名]
def rm(cls, path, name):
        '''Remove the menu item at the specified `path` with the provided `name`.'''
        res = cls.state[path, name]
        idaapi.del_menu_item(res)
        del cls.state[path, name] 
开发者ID:arizvisa,项目名称:ida-minsc,代码行数:7,代码来源:ui.py

示例5: term

# 需要导入模块: import idaapi [as 别名]
# 或者: from idaapi import del_menu_item [as 别名]
def term(self):
        #idaapi.msg('apply_callee_type_plugin:term\n')
        #if self.ex_addmenu_item_ctx is not None:
        #    idaapi.del_menu_item(ex_addmenu_item_ctx)
        pass 
开发者ID:fireeye,项目名称:flare-ida,代码行数:7,代码来源:apply_callee_type_plugin.py


注:本文中的idaapi.del_menu_item方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。