mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
399 B
13 lines
399 B
// file: traylevl.h
|
|
|
|
#define GWL_TRAYSTRING 0
|
|
#define GWL_TRAYFONT 4
|
|
#define GWL_TRAYICON 8
|
|
#define GWW_TRAYLEVEL 12
|
|
|
|
extern LRESULT TrayLevelRegister(HINSTANCE hInst);
|
|
extern LRESULT TrayLevelUnregister(void);
|
|
extern void SetWindowIcon(HWND hwnd, UINT uIcon);
|
|
extern HICON GetWindowIcon(HWND hwnd);
|
|
|
|
extern LRESULT CALLBACK TrayLevelWndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
|