source: nscp/modules/SysTray/TrayIcon.h @ 402f042

0.4.00.4.10.4.2stable
Last change on this file since 402f042 was 402f042, checked in by Michael Medin <michael@…>, 8 years ago

Changed dialog code and log view to work better

  • Property mode set to 100644
File size: 419 bytes
Line 
1#pragma once
2
3#define WM_ICON_NOTIFY  WM_USER+1
4#define WM_MY_CLOSE     WM_USER+2
5
6namespace TrayIcon
7{
8        INT_PTR CALLBACK DialogProc(HWND hwndDlg,UINT uMsg,WPARAM wParam,LPARAM lParam);
9        BOOL CALLBACK InjectDialogProc(HWND hwndDlg,UINT uMsg,WPARAM wParam,LPARAM lParam);
10        void createDialog(void);
11        void destroyDialog(void);
12        void removeIcon(void);
13        void addIcon(HWND hWnd);
14        bool waitForTermination(DWORD timeout = 5000L);
15}
Note: See TracBrowser for help on using the repository browser.