source: trunk/src/shell32/systray.h@ 21592

Last change on this file since 21592 was 21592, checked in by dmik, 14 years ago

shell32: Implemented xsystray support (#16).

  • Property svn:eol-style set to native
File size: 401 bytes
Line 
1/*
2 * Systray.
3 *
4 * Common definitions.
5 */
6
7#ifndef __WINE_SYSTRAY_H
8#define __WINE_SYSTRAY_H
9
10struct _SystrayItem;
11
12typedef struct _SystrayItem SystrayItem;
13
14BOOL (*SYSTRAY_ItemInit)(SystrayItem *ptrayItem);
15void (*SYSTRAY_ItemTerm)(SystrayItem *ptrayItem);
16void (*SYSTRAY_ItemUpdate)(SystrayItem *ptrayItem, ULONG uFlags);
17
18SystrayItem *SYSTRAY_FindItem(ULONG uIdx);
19
20#endif // __WINE_SYSTRAY_H
Note: See TracBrowser for help on using the repository browser.