Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
aa5d11c7
Commit
aa5d11c7
authored
Aug 16, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Unexport utf8_mkdir and vlc_current_object
parent
d0a6a862
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
4 deletions
+7
-4
include/vlc_charset.h
include/vlc_charset.h
+0
-1
include/vlc_objects.h
include/vlc_objects.h
+0
-1
src/libvlc.h
src/libvlc.h
+7
-0
src/libvlc.sym
src/libvlc.sym
+0
-2
No files found.
include/vlc_charset.h
View file @
aa5d11c7
...
@@ -52,7 +52,6 @@ VLC_EXPORT( int, utf8_scandir, ( const char *dirname, char ***namelist, int (*se
...
@@ -52,7 +52,6 @@ VLC_EXPORT( int, utf8_scandir, ( const char *dirname, char ***namelist, int (*se
VLC_EXPORT
(
int
,
utf8_stat
,
(
const
char
*
filename
,
struct
stat
*
buf
)
);
VLC_EXPORT
(
int
,
utf8_stat
,
(
const
char
*
filename
,
struct
stat
*
buf
)
);
VLC_EXPORT
(
int
,
utf8_lstat
,
(
const
char
*
filename
,
struct
stat
*
buf
)
);
VLC_EXPORT
(
int
,
utf8_lstat
,
(
const
char
*
filename
,
struct
stat
*
buf
)
);
VLC_EXPORT
(
int
,
utf8_mkdir
,
(
const
char
*
filename
)
);
VLC_EXPORT
(
int
,
utf8_vfprintf
,
(
FILE
*
stream
,
const
char
*
fmt
,
va_list
ap
)
);
VLC_EXPORT
(
int
,
utf8_vfprintf
,
(
FILE
*
stream
,
const
char
*
fmt
,
va_list
ap
)
);
VLC_EXPORT
(
int
,
utf8_fprintf
,
(
FILE
*
,
const
char
*
,
...
)
);
VLC_EXPORT
(
int
,
utf8_fprintf
,
(
FILE
*
,
const
char
*
,
...
)
);
...
...
include/vlc_objects.h
View file @
aa5d11c7
...
@@ -108,7 +108,6 @@ VLC_EXPORT( void, __vlc_object_yield, ( vlc_object_t * ) );
...
@@ -108,7 +108,6 @@ VLC_EXPORT( void, __vlc_object_yield, ( vlc_object_t * ) );
VLC_EXPORT
(
void
,
__vlc_object_release
,
(
vlc_object_t
*
)
);
VLC_EXPORT
(
void
,
__vlc_object_release
,
(
vlc_object_t
*
)
);
VLC_EXPORT
(
vlc_list_t
*
,
__vlc_list_find
,
(
vlc_object_t
*
,
int
,
int
)
);
VLC_EXPORT
(
vlc_list_t
*
,
__vlc_list_find
,
(
vlc_object_t
*
,
int
,
int
)
);
VLC_EXPORT
(
void
,
vlc_list_release
,
(
vlc_list_t
*
)
);
VLC_EXPORT
(
void
,
vlc_list_release
,
(
vlc_list_t
*
)
);
VLC_EXPORT
(
libvlc_int_t
*
,
vlc_current_object
,
(
int
)
);
/*}@*/
/*}@*/
...
...
src/libvlc.h
View file @
aa5d11c7
...
@@ -46,6 +46,11 @@ int __vlc_threads_end( vlc_object_t * );
...
@@ -46,6 +46,11 @@ int __vlc_threads_end( vlc_object_t * );
extern
uint32_t
cpu_flags
;
extern
uint32_t
cpu_flags
;
uint32_t
CPUCapabilities
(
void
);
uint32_t
CPUCapabilities
(
void
);
/*
* Unicode stuff
*/
int
utf8_mkdir
(
const
char
*
filename
);
/*
/*
* LibVLC objects stuff
* LibVLC objects stuff
...
@@ -92,7 +97,9 @@ struct libvlc_global_data_t
...
@@ -92,7 +97,9 @@ struct libvlc_global_data_t
#endif
#endif
};
};
libvlc_global_data_t
*
vlc_global
(
void
);
libvlc_global_data_t
*
vlc_global
(
void
);
libvlc_int_t
*
vlc_current_object
(
int
i_object
);
/* Private LibVLC data for each objects */
/* Private LibVLC data for each objects */
struct
vlc_object_internals_t
struct
vlc_object_internals_t
...
...
src/libvlc.sym
View file @
aa5d11c7
...
@@ -327,7 +327,6 @@ us_strtod
...
@@ -327,7 +327,6 @@ us_strtod
utf8_fopen
utf8_fopen
utf8_fprintf
utf8_fprintf
utf8_lstat
utf8_lstat
utf8_mkdir
utf8_open
utf8_open
utf8_opendir
utf8_opendir
utf8_readdir
utf8_readdir
...
@@ -361,7 +360,6 @@ VLC_VariableGet
...
@@ -361,7 +360,6 @@ VLC_VariableGet
VLC_VariableSet
VLC_VariableSet
__vlc_cond_destroy
__vlc_cond_destroy
__vlc_cond_init
__vlc_cond_init
vlc_current_object
vlc_error
vlc_error
VLC_Error
VLC_Error
__vlc_execve
__vlc_execve
...
...
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