* include/shlobj.h (SHGFP_TYPE): Add enum.

This commit is contained in:
Danny Smith 2004-11-13 10:36:08 +00:00
parent 6f68e4938c
commit 95e3512d53
2 changed files with 11 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2004-11-13 Danny Smith <dannysmith@users.sourceforge.net>
* include/shlobj.h (SHGFP_TYPE): Add enum.
2004-11-12 Loïc Guilloux (glx@users.sourceforge.net>
* include/winuser.h (WM_THEMECHANGED): Add define.
@ -51,7 +55,7 @@
2004-10-18 Danny Smith <dannysmith@users.sourceforge.net>
= include/wsahelp.h (WINSOCK_MAPPING, WSHGetWinsockMapping,
* include/wsahelp.h (WINSOCK_MAPPING, WSHGetWinsockMapping,
PWSH_GET_WINSOCK_MAPPING): Don't define if __OBJC__.
2004-10-15 Robert Wruck <wruck@tweerlei.de>

View File

@ -532,8 +532,14 @@ typedef struct
DWORD dwAttributes;
int csidl;
} PERSIST_FOLDER_TARGET_INFO;
typedef enum {
SHGFP_TYPE_CURRENT = 0,
SHGFP_TYPE_DEFAULT = 1,
} SHGFP_TYPE;
#endif
DECLARE_ENUMERATOR_(IEnumIDList,LPITEMIDLIST);
typedef IEnumIDList *LPENUMIDLIST;