Skip to content
Snippets Groups Projects
Commit 3d5eabea authored by Steve Lhomme's avatar Steve Lhomme Committed by Hugo Beauzée-Luyssen
Browse files

access: file: don't include shlwapi.h for winstore builds

It's not supposed to be usable anyway.

It's included to get the definition of PathIsNetworkPathW().
parent 6642dc1c
No related branches found
No related tags found
1 merge request!2214access: file: don't include shlwapi.h for winstore builds
Pipeline #241772 passed with stage
in 20 minutes and 29 seconds
......@@ -47,7 +47,9 @@
#if defined( _WIN32 )
# include <io.h>
# include <ctype.h>
# include <shlwapi.h>
#if !defined(VLC_WINSTORE_APP)
# include <shlwapi.h> // for PathIsNetworkPathW
#endif
#else
# include <unistd.h>
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment