Ignore:
Timestamp:
Mar 18, 2011, 11:37:52 PM (14 years ago)
Author:
dmik
Message:

shell32: Implemented xsystray support (#16).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/shell32/systray_os2.h

    r21591 r21592  
    1818// to avoid Win32 header inclusion and conflicts
    1919
     20#define NIF_MESSAGE             0x00000001
     21#define NIF_ICON                0x00000002
     22#define NIF_TIP                 0x00000004
     23
    2024typedef struct _NOTIFYICONDATAA
    2125{   ULONG    cbSize;
     
    2832} NOTIFYICONDATAA, *PNOTIFYICONDATAA;
    2933
     34// Note: This must match _SystrayItem from systray.c
    3035struct _SystrayItem {
    3136  HWND                  hWndFrame;
    3237  HWND                  hWndClient;
    3338  NOTIFYICONDATAA       notifyIcon;
     39  ULONG                 uIdx;
    3440  struct _SystrayItem   *nextTrayItem;
    3541};
    3642
    3743BOOL DoWin32PostMessage(HWND, ULONG, MPARAM, MPARAM);
    38 BOOL DoWin32CharToOem(const char *s, char *t);
    3944
    4045BOOL SYSTRAY_Ex_Init(void);
Note: See TracChangeset for help on using the changeset viewer.