| 74 | } |
| 75 | |
| 76 | FuncItem * getFuncsArray(int * arraysize) { |
| 77 | *arraysize = nrFuncItem; |
| 78 | |
| 79 | funcItems[0]._pFunc = &ShowFTPWindow; |
| 80 | funcItems[0]._init2Check = false; |
| 81 | funcItems[0]._pShKey = NULL; |
| 82 | lstrcpyn(funcItems[0]._itemName, TEXT("Show NppFTP Window"), menuItemSize); |
| 83 | |
| 84 | funcItems[1]._pFunc = &FocusFTPWindow; |
| 85 | funcItems[1]._init2Check = false; |
| 86 | funcItems[1]._pShKey = NULL; |
| 87 | lstrcpyn(funcItems[1]._itemName, TEXT("Focus NppFTP Window"), menuItemSize); |
| 88 | |
| 89 | funcItems[2]._pFunc = &ShowAboutDialog; |
| 90 | funcItems[2]._init2Check = false; |
| 91 | funcItems[2]._pShKey = NULL; |
| 92 | lstrcpyn(funcItems[2]._itemName, TEXT("About NppFTP"), menuItemSize); |
| 93 | |
| 94 | return &funcItems[0]; |
| 95 | } |
| 96 | |
| 97 | void beNotified(SCNotification * scNotification) { |
| 98 | switch(scNotification->nmhdr.code) { |
nothing calls this directly
no outgoing calls
no test coverage detected