2007-04-22 Chris Sutcliffe <ir0nh34d@users.sourceforge.net>

* include/shellapi.h (NOTIFYICONDATAA, NOTIFYICONDATAW): Updated to support
        Vista.
This commit is contained in:
Chris Sutcliffe 2007-04-22 11:25:07 +00:00
parent f1fc3a03b4
commit 862eba8666
2 changed files with 50 additions and 38 deletions

View File

@ -1,4 +1,10 @@
2007-04-22 Chris Sutcliffe <ir0nh34d@users.sourceforge.net>
* include/shellapi.h (NOTIFYICONDATAA, NOTIFYICONDATAW): Updated to support
Vista.
2007-04-20 Matthias Miller <matthiasmiller@users.sourceforge.net>
* include/wincrypt.h (CRYPTPROTECT_PROMPTSTRUCT, CRYPTPROTECT_UI_FORBIDDEN,
CRYPTPROTECT_LOCAL_MACHINE): Define.

View File

@ -174,6 +174,9 @@ typedef struct _NOTIFYICONDATAA {
#if _WIN32_IE >= 0x600
GUID guidItem;
#endif
#if _WIN32_WINNT >= 0x600
HICON hBalloonIcon;
#endif
} NOTIFYICONDATAA,*PNOTIFYICONDATAA;
typedef struct _NOTIFYICONDATAW {
@ -200,6 +203,9 @@ typedef struct _NOTIFYICONDATAW {
#if _WIN32_IE >= 0x600
GUID guidItem;
#endif
#if _WIN32_WINNT >= 0x600
HICON hBalloonIcon;
#endif
} NOTIFYICONDATAW,*PNOTIFYICONDATAW;
typedef struct _SHELLEXECUTEINFOA {