mirror of
https://github.com/cemu-project/idapython.git
synced 2024-11-28 03:54:18 +01:00
fix [issue 48]: customviewer is now enabled for Windows builds only
This commit is contained in:
parent
0dfdad1f42
commit
dc20f63143
@ -76,7 +76,7 @@ def askseg(defval, format):
|
|||||||
%{
|
%{
|
||||||
|
|
||||||
//<code(py_custviewer)>
|
//<code(py_custviewer)>
|
||||||
|
#ifdef __NT__
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
// Base class for all custviewer place_t providers
|
// Base class for all custviewer place_t providers
|
||||||
class custviewer_data_t
|
class custviewer_data_t
|
||||||
@ -860,6 +860,7 @@ public:
|
|||||||
return py_this;
|
return py_this;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
#endif
|
||||||
//</code(py_custviewer)>
|
//</code(py_custviewer)>
|
||||||
|
|
||||||
bool idaapi py_menu_item_callback(void *userdata)
|
bool idaapi py_menu_item_callback(void *userdata)
|
||||||
@ -895,7 +896,7 @@ bool idaapi py_menu_item_callback(void *userdata)
|
|||||||
%rename (add_menu_item) wrap_add_menu_item;
|
%rename (add_menu_item) wrap_add_menu_item;
|
||||||
%inline %{
|
%inline %{
|
||||||
//<inline(py_custviewer)>
|
//<inline(py_custviewer)>
|
||||||
|
#ifdef __NT__
|
||||||
//
|
//
|
||||||
// Pywraps Simple Custom Viewer functions
|
// Pywraps Simple Custom Viewer functions
|
||||||
//
|
//
|
||||||
@ -1073,6 +1074,7 @@ bool pyscv_edit_line(PyObject *py_this, size_t nline, PyObject *py_sl)
|
|||||||
return _this == NULL ? false : _this->edit_line(nline, py_sl);
|
return _this == NULL ? false : _this->edit_line(nline, py_sl);
|
||||||
}
|
}
|
||||||
#undef DECL_THIS
|
#undef DECL_THIS
|
||||||
|
#endif
|
||||||
//</inline(py_custviewer)>
|
//</inline(py_custviewer)>
|
||||||
|
|
||||||
//<inline(py_choose2)>
|
//<inline(py_choose2)>
|
||||||
|
Loading…
Reference in New Issue
Block a user