Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDanny Smith <dannysmith@users.sourceforge.net>2004-11-13 13:36:08 +0300
committerDanny Smith <dannysmith@users.sourceforge.net>2004-11-13 13:36:08 +0300
commit95e3512d5360b95e239f9807cee41983e8e9151e (patch)
tree0667747f9fd5b66d1a1f7ae666615667e492b597 /winsup/w32api
parent6f68e4938c90ea8662487ee7c972cf88acc7c848 (diff)
* include/shlobj.h (SHGFP_TYPE): Add enum.
Diffstat (limited to 'winsup/w32api')
-rw-r--r--winsup/w32api/ChangeLog6
-rw-r--r--winsup/w32api/include/shlobj.h6
2 files changed, 11 insertions, 1 deletions
diff --git a/winsup/w32api/ChangeLog b/winsup/w32api/ChangeLog
index de1780336..b02998b8d 100644
--- a/winsup/w32api/ChangeLog
+++ b/winsup/w32api/ChangeLog
@@ -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>
diff --git a/winsup/w32api/include/shlobj.h b/winsup/w32api/include/shlobj.h
index a5133eb23..fcc722aa0 100644
--- a/winsup/w32api/include/shlobj.h
+++ b/winsup/w32api/include/shlobj.h
@@ -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;