Lines Matching refs:ni
430 NOTIFYICONDATA ni; in cmdsrv_main() local
440 ni.cbSize = sizeof(ni); in cmdsrv_main()
441 ni.hWnd = message_window; in cmdsrv_main()
442 ni.uID = 0; in cmdsrv_main()
443 ni.uFlags = NIF_ICON|NIF_TIP; in cmdsrv_main()
444 ni.hIcon = LoadIcon((HINSTANCE)GetModuleHandle(0), "IDR_VIM"); in cmdsrv_main()
445 sprintf(ni.szTip, _("%d of %d edited"), count, numFiles); in cmdsrv_main()
446 Shell_NotifyIcon(NIM_ADD, &ni); in cmdsrv_main()
466 sprintf(ni.szTip, _("%d of %d edited"), in cmdsrv_main()
468 Shell_NotifyIcon(NIM_MODIFY, &ni); in cmdsrv_main()
474 Shell_NotifyIcon(NIM_DELETE, &ni); in cmdsrv_main()