| 100 | } |
| 101 | |
| 102 | int NppInterface::active_view() const { |
| 103 | int cur_scintilla = 0; |
| 104 | send_msg_to_npp(NPPM_GETCURRENTSCINTILLA, 0, reinterpret_cast<LPARAM>(&cur_scintilla)); |
| 105 | return cur_scintilla; |
| 106 | } |
| 107 | |
| 108 | std::optional<POINT> NppInterface::get_mouse_cursor_pos() const { |
| 109 | POINT p; |
nothing calls this directly
no outgoing calls
no test coverage detected