| 36 | } |
| 37 | |
| 38 | int NppInterface::allocate_cmdid(int requested_number) { |
| 39 | int id; |
| 40 | send_msg_to_npp(NPPM_ALLOCATECMDID, requested_number, reinterpret_cast<LPARAM>(&id)); |
| 41 | return id; |
| 42 | } |
| 43 | |
| 44 | void NppInterface::set_menu_item_check(int cmd_id, bool checked) { send_msg_to_npp(NPPM_SETMENUITEMCHECK, cmd_id, static_cast<LPARAM>(checked)); } |
| 45 |