Python idaapi.PLUGIN_OK Examples
The following are 1 code examples for showing how to use idaapi.PLUGIN_OK(). These examples are extracted from open source projects. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example.
You may check out the related API usage on the sidebar.
You may also want to check out all available functions/classes of the module
idaapi
, or try the search function
.
Example 1
Project: flare-ida Author: fireeye File: stackstrings_plugin.py License: Apache License 2.0 | 5 votes |
def init(self): try: idaapi.msg("StackStrings init() called!\n") return idaapi.PLUGIN_OK except Exception as err: idaapi.msg("Exception during init: %s\n" % str(err)) return idaapi.PLUGIN_SKIP