Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
3df02ef0
Commit
3df02ef0
authored
Dec 07, 2010
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix make check.
parent
5fff8a35
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
16 deletions
+3
-16
include/vlc_common.h
include/vlc_common.h
+0
-2
include/vlc_fixups.h
include/vlc_fixups.h
+3
-14
No files found.
include/vlc_common.h
View file @
3df02ef0
...
...
@@ -810,8 +810,6 @@ VLC_EXPORT( void *, vlc_memalign, ( void **base, size_t alignment, size_t size )
VLC_EXPORT
(
int
,
vlc_execve
,
(
vlc_object_t
*
p_object
,
int
i_argc
,
char
*
const
*
pp_argv
,
char
*
const
*
pp_env
,
const
char
*
psz_cwd
,
const
char
*
p_in
,
size_t
i_in
,
char
**
pp_data
,
size_t
*
pi_data
)
LIBVLC_USED
);
#define vlc_execve(a,b,c,d,e,f,g,h,i) vlc_execve(VLC_OBJECT(a),b,c,d,e,f,g,h,i)
VLC_EXPORT
(
void
,
vlc_tdestroy
,
(
void
*
,
void
(
*
)(
void
*
)
)
);
/* Fast large memory copy and memory set */
VLC_EXPORT
(
void
*
,
vlc_memcpy
,
(
void
*
,
const
void
*
,
size_t
)
);
VLC_EXPORT
(
void
*
,
vlc_memset
,
(
void
*
,
int
,
size_t
)
);
...
...
include/vlc_fixups.h
View file @
3df02ef0
...
...
@@ -241,7 +241,6 @@ int vlc_poll (struct pollfd *, unsigned, int);
#endif
#ifndef HAVE_SEARCH_H
typedef
struct
entry
{
char
*
key
;
void
*
data
;
...
...
@@ -258,24 +257,14 @@ typedef enum {
leaf
}
VISIT
;
#ifdef _SEARCH_PRIVATE
typedef
struct
node
{
char
*
key
;
struct
node
*
llink
,
*
rlink
;
}
node_t
;
#endif
void
*
tsearch
(
const
void
*
key
,
void
**
rootp
,
int
(
*
cmp
)(
const
void
*
,
const
void
*
)
);
void
*
tfind
(
const
void
*
key
,
const
void
**
rootp
,
int
(
*
cmp
)(
const
void
*
,
const
void
*
)
);
void
*
tdelete
(
const
void
*
key
,
void
**
rootp
,
int
(
*
cmp
)(
const
void
*
,
const
void
*
)
);
void
twalk
(
const
void
*
root
,
void
(
*
action
)(
const
void
*
nodep
,
VISIT
which
,
int
depth
)
);
void
tdestroy
(
void
*
root
,
void
(
*
free_node
)(
void
*
nodep
)
);
#endif
#ifndef HAVE_TDESTROY
// If search.h is not present we are already building tdestroy
# ifdef HAVE_SEARCH_H
# define tdestroy vlc_tdestroy
#else // HAVE_SEARCH_H
# ifndef HAVE_TDESTROY
void
tdestroy
(
void
*
root
,
void
(
*
free_node
)(
void
*
nodep
)
);
# endif
#endif
...
...
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