- IDAPython 1.4.2: should work now with Python 2.7

- Hide the Python plugin from the plugins menu (it already installs the run statement functionality in the File menu)
This commit is contained in:
elias.bachaalany
2010-08-10 11:44:59 +00:00
parent 9858aae998
commit f216eb9a6d
3 changed files with 9 additions and 7 deletions

View File

@@ -55,6 +55,12 @@ static const char S_IDC_RUNPYTHON_STATEMENT[] = "RunPythonStatement";
static const char S_HOTKEY_RUNSTATEMENT[] = "Alt-8";
static const char S_IDAPYTHON_DATA_NODE[] = "IDAPython_Data";
#ifdef PLUGINFIX
#define PLUGIN_FLAGS PLUGIN_FIX
#else
#define PLUGIN_FLAGS 0
#endif
//-------------------------------------------------------------------------
// Types
@@ -1389,11 +1395,7 @@ void idaapi run(int arg)
plugin_t PLUGIN =
{
IDP_INTERFACE_VERSION,
#ifdef PLUGINFIX
PLUGIN_FIX, // plugin flags
#else
0, // plugin flags
#endif
PLUGIN_FLAGS | PLUGIN_HIDE, // plugin flags
init, // initialize
term, // terminate. this pointer may be NULL.
run, // invoke plugin