| 50 | } |
| 51 | |
| 52 | int NppInterface::get_indicator_value_at(int indicator_id, TextPosition position) const { |
| 53 | return static_cast<int>(send_msg_to_scintilla(SCI_INDICATORVALUEAT, indicator_id, position)); |
| 54 | } |
| 55 | |
| 56 | LRESULT NppInterface::send_msg_to_npp(UINT Msg, WPARAM wParam, LPARAM lParam) const { return SendMessage(m_npp_data.npp_handle, Msg, wParam, lParam); } |
| 57 |
no outgoing calls
no test coverage detected