|
Last change
on this file since 22035 was 21602, checked in by dmik, 15 years ago |
|
shell32: systray: Added support for the "TaskbarCreated" system notificaiton message that Windows broadcasts to all top-level windows when the taskbar (xcenter in case of OS/2) is (re)started. This allows applications supporting this message (including Java applications) recreate their taskbar icons.
|
-
Property svn:eol-style
set to
native
|
|
File size:
435 bytes
|
| Line | |
|---|
| 1 | /*
|
|---|
| 2 | * Systray.
|
|---|
| 3 | *
|
|---|
| 4 | * Common definitions.
|
|---|
| 5 | */
|
|---|
| 6 |
|
|---|
| 7 | #ifndef __WINE_SYSTRAY_H
|
|---|
| 8 | #define __WINE_SYSTRAY_H
|
|---|
| 9 |
|
|---|
| 10 | struct _SystrayItem;
|
|---|
| 11 |
|
|---|
| 12 | typedef struct _SystrayItem SystrayItem;
|
|---|
| 13 |
|
|---|
| 14 | BOOL (*SYSTRAY_ItemInit)(SystrayItem *ptrayItem);
|
|---|
| 15 | void (*SYSTRAY_ItemTerm)(SystrayItem *ptrayItem);
|
|---|
| 16 | void (*SYSTRAY_ItemUpdate)(SystrayItem *ptrayItem, ULONG uFlags);
|
|---|
| 17 |
|
|---|
| 18 | SystrayItem *SYSTRAY_FindItem(ULONG uIdx);
|
|---|
| 19 | void SYSTRAY_PruneAllItems(void);
|
|---|
| 20 |
|
|---|
| 21 | #endif // __WINE_SYSTRAY_H
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.