| 83 | } |
| 84 | |
| 85 | HWND CreateTooltipControl(HWND parent, HINSTANCE instance) |
| 86 | { |
| 87 | HWND tipWnd = CreateWindowEx(0, TOOLTIPS_CLASS, nullptr, WS_POPUP, CW_USEDEFAULT, CW_USEDEFAULT, |
| 88 | CW_USEDEFAULT, CW_USEDEFAULT, parent, nullptr, instance, nullptr); |
| 89 | |
| 90 | SetWindowPos(tipWnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE); |
| 91 | |
| 92 | return tipWnd; |
| 93 | } |
| 94 | |
| 95 | BOOL PinStatusBar(HWND hStatusBar, int width, int height) |
| 96 | { |