Owen Rudge : include: Add SHGetImageList and its flags to shellapi.h.
Module: wine Branch: master Commit: 11bc43926d21673c006088c416a7277a229699ea URL: http://source.winehq.org/git/wine.git/?a=commit;h=11bc43926d21673c006088c416... Author: Owen Rudge <orudge(a)codeweavers.com> Date: Wed Aug 12 21:51:13 2009 +0100 include: Add SHGetImageList and its flags to shellapi.h. --- include/shellapi.h | 13 +++++++++++++ 1 files changed, 13 insertions(+), 0 deletions(-) diff --git a/include/shellapi.h b/include/shellapi.h index 930f261..9866b5e 100644 --- a/include/shellapi.h +++ b/include/shellapi.h @@ -145,6 +145,19 @@ DWORD_PTR WINAPI SHGetFileInfoW(LPCWSTR,DWORD,SHFILEINFOW*,UINT,UINT); #define SHGetFileInfo WINELIB_NAME_AW(SHGetFileInfo) /****************************************** + * SHGetImageList + */ + +HRESULT WINAPI SHGetImageList(INT, REFIID, void **); + +#define SHIL_LARGE 0x0 +#define SHIL_SMALL 0x1 +#define SHIL_EXTRALARGE 0x2 +#define SHIL_SYSSMALL 0x3 +#define SHIL_JUMBO 0x4 +#define SHIL_LAST SHIL_JUMBO + +/****************************************** * SHSetFileInfo */
participants (1)
-
Alexandre Julliard