Last change
on this file since 21591 was 21591, checked in by dmik, 14 years ago |
shell32: Prepared to the xsystray integration (keeping the old Systray/WPS based implementation).
|
-
Property svn:eol-style
set to
native
|
File size:
514 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_ItemSetMessage)(SystrayItem *ptrayItem, ULONG uCallbackMessage);
|
---|
17 | void (*SYSTRAY_ItemSetIcon)(SystrayItem *ptrayItem, HICON hIcon);
|
---|
18 | void (*SYSTRAY_ItemSetTip)(SystrayItem *ptrayItem, CHAR* szTip, int modify);
|
---|
19 |
|
---|
20 | #endif // __WINE_SYSTRAY_H
|
---|
Note:
See
TracBrowser
for help on using the repository browser.