當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。