forked from python/cpython
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
633 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#define STRSAFE_E_INSUFFICIENT_BUFFER ((HRESULT)0x8007007A) | ||
#define PATHCCH_ALLOW_LONG_PATHS 0x01 | ||
#define PATHCCH_FORCE_ENABLE_LONG_NAME_PROCESS 0x02 | ||
#define PATHCCH_FORCE_DISABLE_LONG_NAME_PROCESS 0x04 | ||
#define PATHCCH_DO_NOT_NORMALIZE_SEGMENTS 0x08 | ||
#define PATHCCH_ENSURE_IS_EXTENDED_LENGTH_PATH 0x10 | ||
#define PATHCCH_ENSURE_TRAILING_SLASH 0x20 | ||
#define PATHCCH_MAX_CCH 0x8000 | ||
|
||
HRESULT WINAPI PathCchCanonicalizeEx(WCHAR *out, SIZE_T size, const WCHAR *in, DWORD flags); | ||
HRESULT WINAPI PathCchCombineEx(WCHAR *out, SIZE_T size, const WCHAR *path1, const WCHAR *path2, DWORD flags); | ||
HRESULT WINAPI PathCchSkipRoot(const WCHAR *path, const WCHAR **root_end); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.