MCPcopy Create free account
hub / github.com/ashkulz/NppFTP / getFuncsArray

Function getFuncsArray

src/PluginInterface.cpp:76–95  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

74}
75
76FuncItem * 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
97void beNotified(SCNotification * scNotification) {
98 switch(scNotification->nmhdr.code) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected