Lines Matching defs:gNotifyIconData
145 NOTIFYICONDATA gNotifyIconData;
253 RT_ZERO(gNotifyIconData);
254 gNotifyIconData.cbSize = NOTIFYICONDATA_V1_SIZE; // sizeof(NOTIFYICONDATA);
255 gNotifyIconData.hWnd = ghwndToolWindow;
256 gNotifyIconData.uID = ID_TRAYICON;
257 gNotifyIconData.uFlags = NIF_ICON | NIF_MESSAGE | NIF_TIP;
258 gNotifyIconData.uCallbackMessage = WM_VBOXTRAY_TRAY_ICON;
259 gNotifyIconData.hIcon = hIcon;
261 sprintf(gNotifyIconData.szTip, "%s Guest Additions %d.%d.%dr%d",
265 if (!Shell_NotifyIcon(NIM_ADD, &gNotifyIconData))
270 RT_ZERO(gNotifyIconData);
280 if (gNotifyIconData.cbSize > 0)
283 Shell_NotifyIcon(NIM_DELETE, &gNotifyIconData);
291 RT_ZERO(gNotifyIconData);