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:
authorChris Sutcliffe <ir0nh34d@users.sourceforge.net>2006-02-06 23:27:01 +0300
committerChris Sutcliffe <ir0nh34d@users.sourceforge.net>2006-02-06 23:27:01 +0300
commitf6e3104d097be9abb3b4b214556b72ff28d548fb (patch)
treedb9f0366a7c88931189f121729d64c32b0b30847 /winsup/w32api
parentede6ae5059a44503678c9acca02522f4db084c1c (diff)
2006-02-06 Chris Sutcliffe <ir0nh34d@users.sourceforge.net>
* include/shlobj.h (PRF_VERIFYEXISTS, PRF_TRYPROGRAMEXTENSIONS, PRF_FIRSTDIRDEF, PRF_DONTFINDLNK): Ditto. * lib/shell32.def (PathResolve): Define.
Diffstat (limited to 'winsup/w32api')
-rw-r--r--winsup/w32api/ChangeLog9
-rw-r--r--winsup/w32api/include/shlobj.h4
-rw-r--r--winsup/w32api/lib/shell32.def1
3 files changed, 14 insertions, 0 deletions
diff --git a/winsup/w32api/ChangeLog b/winsup/w32api/ChangeLog
index 46a1d3291..bc9d87317 100644
--- a/winsup/w32api/ChangeLog
+++ b/winsup/w32api/ChangeLog
@@ -1,3 +1,9 @@
+2006-02-06 Chris Sutcliffe <ir0nh34d@users.sourceforge.net>
+
+ * include/shlobj.h (PRF_VERIFYEXISTS, PRF_TRYPROGRAMEXTENSIONS,
+ PRF_FIRSTDIRDEF, PRF_DONTFINDLNK): Ditto.
+ * lib/shell32.def (PathResolve): Define.
+
2006-02-06 Christopher Faylor <cgf@timesys.com>
* include/shlobj.h (PathResolve): Fix typo.
@@ -5,6 +11,9 @@
2006-02-06 Chris Sutcliffe <ir0nh34d@users.sourceforge.net>
* include/shlobj.h (PathResolve): Define.
+ (PRF_VERIFYEXISTS, PRF_TRYPROGRAMEXTENSIONS, PRF_FIRSTDIRDEF,
+ PRF_DONTFINDLNK): Ditto.
+ * lib/shell32.def (PathResolve): Define.
2006-02-04 Ron Lee <ronl@users.sourceforge.net>
diff --git a/winsup/w32api/include/shlobj.h b/winsup/w32api/include/shlobj.h
index 876d29d45..ac91d5545 100644
--- a/winsup/w32api/include/shlobj.h
+++ b/winsup/w32api/include/shlobj.h
@@ -1401,6 +1401,10 @@ DECLARE_INTERFACE_(IDropTargetHelper, IUnknown)
#ifdef _WIN32_WINNT >= 0x0500
BOOL WINAPI PathResolve(LPWSTR, LPCWSTR*, UINT);
+#define PRF_VERIFYEXISTS 0x0001
+#define PRF_TRYPROGRAMEXTENSIONS (0x0002 | PRF_VERIFYEXISTS)
+#define PRF_FIRSTDIRDEF 0x0004
+#define PRF_DONTFINDLNK 0x0008
#endif
void WINAPI SHAddToRecentDocs(UINT,PCVOID);
diff --git a/winsup/w32api/lib/shell32.def b/winsup/w32api/lib/shell32.def
index c7a8d1bdc..af36c62ef 100644
--- a/winsup/w32api/lib/shell32.def
+++ b/winsup/w32api/lib/shell32.def
@@ -182,3 +182,4 @@ ILIsParent@12
ILLoadFromStream@8
ILRemoveLastID@4
ILSaveToStream@8
+PathResolve@12