mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 06:05:48 +00:00
[SHLWAPI][SHLWAPI_APITEST][SDK] PathFileExistsDefExtAndAttributesW (#6879)
Implementing missing features... JIRA issue: CORE-19278 - Implement PathFileExistsDefExtAndAttributesW function. - Add its prototype to <shlwapi_undoc.h>. - Modify shlwapi.spec. - Add PathFileExistsDefExtAndAttributesW testcase.
This commit is contained in:
parent
96acfcb3dc
commit
ac0bcf4a90
6 changed files with 112 additions and 2 deletions
|
@ -283,7 +283,8 @@ ShellMessageBoxWrapW(
|
|||
_In_ UINT fuStyle,
|
||||
...);
|
||||
|
||||
/* dwWhich flags for PathFileExistsDefExtW and PathFindOnPathExW */
|
||||
/* dwWhich flags for PathFileExistsDefExtW, PathFindOnPathExW,
|
||||
* and PathFileExistsDefExtAndAttributesW */
|
||||
#define WHICH_PIF (1 << 0)
|
||||
#define WHICH_COM (1 << 1)
|
||||
#define WHICH_EXE (1 << 2)
|
||||
|
@ -309,6 +310,13 @@ ShellMessageBoxWrapW(
|
|||
#define PATH_CHAR_CLASS_ANY 0xffffffff
|
||||
|
||||
BOOL WINAPI PathFileExistsDefExtW(LPWSTR lpszPath, DWORD dwWhich);
|
||||
|
||||
BOOL WINAPI
|
||||
PathFileExistsDefExtAndAttributesW(
|
||||
_Inout_ LPWSTR pszPath,
|
||||
_In_ DWORD dwWhich,
|
||||
_Out_opt_ LPDWORD pdwFileAttributes);
|
||||
|
||||
BOOL WINAPI PathFindOnPathExW(LPWSTR lpszFile, LPCWSTR *lppszOtherDirs, DWORD dwWhich);
|
||||
VOID WINAPI FixSlashesAndColonW(LPWSTR);
|
||||
BOOL WINAPI PathIsValidCharA(char c, DWORD dwClass);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue