Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
ab171ce9
Commit
ab171ce9
authored
Feb 21, 2005
by
gbazin
Browse files
* include/vlc_common.h: compilation fix.
parent
c9643558
Changes
1
Hide whitespace changes
Inline
Side-by-side
include/vlc_common.h
View file @
ab171ce9
...
...
@@ -873,7 +873,7 @@ static inline void _SetQWBE( uint8_t *p, uint64_t i_qw )
#endif
#ifndef HAVE_DIRENT_H
typedef
struct
DIR
DIR
;
typedef
void
DIR
;
# ifndef FILENAME_MAX
# define FILENAME_MAX (260)
# endif
...
...
@@ -887,9 +887,9 @@ static inline void _SetQWBE( uint8_t *p, uint64_t i_qw )
# define opendir vlc_opendir
# define readdir vlc_readdir
# define closedir vlc_closedir
VLC_EXPORT
(
DIR
*
,
vlc_opendir
,
(
const
char
*
)
);
VLC_EXPORT
(
struct
dirent
*
,
vlc_readdir
,
(
DIR
*
)
);
VLC_EXPORT
(
int
,
vlc_closedir
,
(
DIR
*
)
);
VLC_EXPORT
(
void
*
,
vlc_opendir
,
(
const
char
*
)
);
VLC_EXPORT
(
void
*
,
vlc_readdir
,
(
void
*
)
);
VLC_EXPORT
(
int
,
vlc_closedir
,
(
void
*
)
);
#elif !defined(__PLUGIN__)
# define vlc_opendir NULL
# define vlc_readdir NULL
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment