| 637 | |
| 638 | // ReSharper disable CppInconsistentNaming |
| 639 | extern "C" __declspec(dllexport) void setInfo(NppData notpadPlusData) { |
| 640 | npp_data = notpadPlusData; |
| 641 | init_npp_interface(); |
| 642 | init_menu_ids(); |
| 643 | command_menu_init(); |
| 644 | SetWindowSubclass(npp_data.npp_handle, subclass_proc, 0, 0); |
| 645 | } |
| 646 | |
| 647 | extern "C" __declspec(dllexport) const wchar_t *getName() { |
| 648 | static std::wstring plugin_name = rc_str(IDS_PLUGIN_NAME); |
nothing calls this directly
no test coverage detected