Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
458
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
d57b9a4c
Commit
d57b9a4c
authored
2 years ago
by
Steve Lhomme
Committed by
Hugo Beauzée-Luyssen
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
vlc_fs: make the internal vlc_DIR type private on Windows
parent
b95df4e1
No related branches found
Branches containing commit
No related tags found
1 merge request
!2315
vlc_fs: rework the VLC readdir API so it doesn't use dirent on Windows
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/vlc_fs.h
+1
-15
1 addition, 15 deletions
include/vlc_fs.h
src/win32/filesystem.c
+15
-0
15 additions, 0 deletions
src/win32/filesystem.c
with
16 additions
and
15 deletions
include/vlc_fs.h
+
1
−
15
View file @
d57b9a4c
...
...
@@ -232,21 +232,7 @@ VLC_API FILE * vlc_fopen( const char *filename, const char *mode ) VLC_USED;
*/
#if defined( _WIN32 )
typedef
struct
vlc_DIR
{
wchar_t
*
wildcard
;
HANDLE
fHandle
;
WIN32_FIND_DATAW
wdir
;
bool
eol
;
char
*
entry
;
union
{
DWORD
drives
;
bool
insert_dot_dot
;
}
u
;
}
vlc_DIR
;
typedef
struct
vlc_DIR
vlc_DIR
;
#else // !_WIN32
typedef
DIR
vlc_DIR
;
#endif
...
...
This diff is collapsed.
Click to expand it.
src/win32/filesystem.c
+
15
−
0
View file @
d57b9a4c
...
...
@@ -160,6 +160,21 @@ char *vlc_getcwd (void)
#endif
}
struct
vlc_DIR
{
wchar_t
*
wildcard
;
HANDLE
fHandle
;
WIN32_FIND_DATAW
wdir
;
bool
eol
;
char
*
entry
;
union
{
DWORD
drives
;
bool
insert_dot_dot
;
}
u
;
};
/* Under Windows, these wrappers return the list of drive letters
* when called with an empty argument or just '\'. */
vlc_DIR
*
vlc_opendir
(
const
char
*
dirname
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment