Commit 38499f29 authored by Rafaël Carré's avatar Rafaël Carré

file access: don't use PathIsNetworkPath in store app

parent a91a89c3
...@@ -112,7 +112,7 @@ static bool IsRemote (int fd) ...@@ -112,7 +112,7 @@ static bool IsRemote (int fd)
#else /* WIN32 || __OS2__ */ #else /* WIN32 || __OS2__ */
static bool IsRemote (const char *path) static bool IsRemote (const char *path)
{ {
# if !defined(__OS2__) # if !defined(__OS2__) && !defined(WINAPI_FAMILY_APP)
wchar_t *wpath = ToWide (path); wchar_t *wpath = ToWide (path);
bool is_remote = (wpath != NULL && PathIsNetworkPathW (wpath)); bool is_remote = (wpath != NULL && PathIsNetworkPathW (wpath));
free (wpath); free (wpath);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment