Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
libbluray
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
6
Issues
6
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
VideoLAN
libbluray
Commits
0b248b7e
Commit
0b248b7e
authored
Feb 03, 2015
by
Petri Hintukainen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add dir_open_default()
(access temporary directories in host filesystem)
parent
9123edac
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
0 deletions
+12
-0
src/file/dir_posix.c
src/file/dir_posix.c
+5
-0
src/file/dir_win32.c
src/file/dir_win32.c
+5
-0
src/file/file.h
src/file/file.h
+2
-0
No files found.
src/file/dir_posix.c
View file @
0b248b7e
...
...
@@ -80,3 +80,8 @@ static BD_DIR_H *_dir_open_posix(const char* dirname)
}
BD_DIR_H
*
(
*
dir_open
)(
const
char
*
dirname
)
=
_dir_open_posix
;
BD_DIR_OPEN
dir_open_default
(
void
)
{
return
_dir_open_posix
;
}
src/file/dir_win32.c
View file @
0b248b7e
...
...
@@ -104,3 +104,8 @@ static BD_DIR_H *_dir_open_win32(const char* dirname)
}
BD_DIR_H
*
(
*
dir_open
)(
const
char
*
dirname
)
=
_dir_open_win32
;
BD_DIR_OPEN
dir_open_default
(
void
)
{
return
_dir_open_win32
;
}
src/file/file.h
View file @
0b248b7e
...
...
@@ -59,4 +59,6 @@ BD_PRIVATE BD_FILE_OPEN file_open_default(void);
BD_PRIVATE
extern
BD_DIR_H
*
(
*
dir_open
)(
const
char
*
dirname
);
BD_PRIVATE
BD_DIR_OPEN
dir_open_default
(
void
);
#endif
/* FILE_H_ */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment