| 154 | } |
| 155 | |
| 156 | void register_custom_messages() { |
| 157 | for (int i = 0; i < static_cast<int>(CustomGuiMessage::max); i++) { |
| 158 | custom_gui_message_ids[i] = RegisterWindowMessage(custom_gui_messages_names[i]); |
| 159 | } |
| 160 | } |
| 161 | |
| 162 | void init_npp_interface() { npp = std::make_unique<NppInterface>(&npp_data); } |
| 163 |