X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/5bb9aeb266b98f0366715fdd0ab33b75328fa65e..efe66bbc0e9f463a6dd3ad49717474dd801bebf3:/include/wx/filename.h diff --git a/include/wx/filename.h b/include/wx/filename.h index 14aed5347d..b5b9c84601 100644 --- a/include/wx/filename.h +++ b/include/wx/filename.h @@ -72,7 +72,8 @@ enum wxPathNormalize wxPATH_NORM_CASE = 0x0008, // if case insensitive => tolower wxPATH_NORM_ABSOLUTE = 0x0010, // make the path absolute wxPATH_NORM_LONG = 0x0020, // make the path the long form - wxPATH_NORM_ALL = 0x003f & ~wxPATH_NORM_CASE + wxPATH_NORM_SHORTCUT = 0x0040, // resolve the shortcut, if it is a shortcut + wxPATH_NORM_ALL = 0x00ff & ~wxPATH_NORM_CASE }; // what exactly should GetPath() return? @@ -283,6 +284,14 @@ public: { return Normalize(wxPATH_NORM_DOTS | wxPATH_NORM_ABSOLUTE | wxPATH_NORM_TILDE, cwd, format); } +#if defined(__WIN32__) && !defined(__WXWINCE__) && wxUSE_OLE + // if the path is a shortcut, return the target and optionally, + // the arguments + bool GetShortcutTarget(const wxString& shortcutPath, + wxString& targetFilename, + wxString* arguments = NULL); +#endif + // Comparison // compares with the rules of the given platforms format