Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
c6c6c0e3
Commit
c6c6c0e3
authored
May 27, 2008
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
VLC_PRIVATE_API: no-op, removed
parent
3dc64654
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
19 deletions
+18
-19
include/vlc_common.h
include/vlc_common.h
+0
-1
src/control/libvlc_internal.h
src/control/libvlc_internal.h
+18
-18
No files found.
include/vlc_common.h
View file @
c6c6c0e3
...
...
@@ -398,7 +398,6 @@ typedef int ( * vlc_callback_t ) ( vlc_object_t *, /* variable's object */
# define LIBVLC_EXPORT
#endif
#define VLC_PUBLIC_API LIBVLC_EXTERN LIBVLC_EXPORT
#define VLC_PRIVATE_API LIBVLC_EXTERN
#define VLC_EXPORT( type, name, args ) \
LIBVLC_EXTERN LIBVLC_EXPORT type name args
...
...
src/control/libvlc_internal.h
View file @
c6c6c0e3
...
...
@@ -257,45 +257,45 @@ typedef struct libvlc_event_manager_t
/***************************************************************************
* Other internal functions
***************************************************************************/
VLC_PRIVATE_API
input_thread_t
*
libvlc_get_input_thread
(
input_thread_t
*
libvlc_get_input_thread
(
libvlc_media_player_t
*
,
libvlc_exception_t
*
);
/* Media instance */
VLC_PRIVATE_API
libvlc_media_player_t
*
libvlc_media_player_t
*
libvlc_media_player_new_from_input_thread
(
libvlc_instance_t
*
,
input_thread_t
*
,
libvlc_exception_t
*
);
VLC_PRIVATE_API
void
libvlc_media_player_destroy
(
void
libvlc_media_player_destroy
(
libvlc_media_player_t
*
);
/* Media Descriptor */
VLC_PRIVATE_API
libvlc_media_t
*
libvlc_media_new_from_input_item
(
libvlc_media_t
*
libvlc_media_new_from_input_item
(
libvlc_instance_t
*
,
input_item_t
*
,
libvlc_exception_t
*
);
VLC_PRIVATE_API
void
libvlc_media_set_state
(
void
libvlc_media_set_state
(
libvlc_media_t
*
,
libvlc_state_t
,
libvlc_exception_t
*
);
/* Media List */
VLC_PRIVATE_API
void
_libvlc_media_list_add_media
(
void
_libvlc_media_list_add_media
(
libvlc_media_list_t
*
p_mlist
,
libvlc_media_t
*
p_md
,
libvlc_exception_t
*
p_e
);
VLC_PRIVATE_API
void
_libvlc_media_list_insert_media
(
void
_libvlc_media_list_insert_media
(
libvlc_media_list_t
*
p_mlist
,
libvlc_media_t
*
p_md
,
int
index
,
libvlc_exception_t
*
p_e
);
VLC_PRIVATE_API
void
_libvlc_media_list_remove_index
(
void
_libvlc_media_list_remove_index
(
libvlc_media_list_t
*
p_mlist
,
int
index
,
libvlc_exception_t
*
p_e
);
/* Media List View */
VLC_PRIVATE_API
libvlc_media_list_view_t
*
libvlc_media_list_view_new
(
libvlc_media_list_view_t
*
libvlc_media_list_view_new
(
libvlc_media_list_t
*
p_mlist
,
libvlc_media_list_view_count_func_t
pf_count
,
libvlc_media_list_view_item_at_index_func_t
pf_item_at_index
,
...
...
@@ -305,41 +305,41 @@ VLC_PRIVATE_API libvlc_media_list_view_t * libvlc_media_list_view_new(
void
*
this_view_data
,
libvlc_exception_t
*
p_e
);
VLC_PRIVATE_API
void
libvlc_media_list_view_set_ml_notification_callback
(
void
libvlc_media_list_view_set_ml_notification_callback
(
libvlc_media_list_view_t
*
p_mlv
,
void
(
*
item_added
)(
const
libvlc_event_t
*
,
libvlc_media_list_view_t
*
),
void
(
*
item_removed
)(
const
libvlc_event_t
*
,
libvlc_media_list_view_t
*
)
);
VLC_PRIVATE_API
void
libvlc_media_list_view_will_delete_item
(
void
libvlc_media_list_view_will_delete_item
(
libvlc_media_list_view_t
*
p_mlv
,
libvlc_media_t
*
p_item
,
int
index
);
VLC_PRIVATE_API
void
libvlc_media_list_view_item_deleted
(
void
libvlc_media_list_view_item_deleted
(
libvlc_media_list_view_t
*
p_mlv
,
libvlc_media_t
*
p_item
,
int
index
);
VLC_PRIVATE_API
void
libvlc_media_list_view_will_add_item
(
void
libvlc_media_list_view_will_add_item
(
libvlc_media_list_view_t
*
p_mlv
,
libvlc_media_t
*
p_item
,
int
index
);
VLC_PRIVATE_API
void
libvlc_media_list_view_item_added
(
void
libvlc_media_list_view_item_added
(
libvlc_media_list_view_t
*
p_mlv
,
libvlc_media_t
*
p_item
,
int
index
);
/* Events */
VLC_PRIVATE_API
libvlc_event_manager_t
*
libvlc_event_manager_new
(
libvlc_event_manager_t
*
libvlc_event_manager_new
(
void
*
p_obj
,
libvlc_instance_t
*
p_libvlc_inst
,
libvlc_exception_t
*
p_e
);
VLC_PRIVATE_API
void
libvlc_event_manager_release
(
void
libvlc_event_manager_release
(
libvlc_event_manager_t
*
p_em
);
VLC_PRIVATE_API
void
libvlc_event_manager_register_event_type
(
void
libvlc_event_manager_register_event_type
(
libvlc_event_manager_t
*
p_em
,
libvlc_event_type_t
event_type
,
libvlc_exception_t
*
p_e
);
VLC_PRIVATE_API
void
libvlc_event_send
(
void
libvlc_event_send
(
libvlc_event_manager_t
*
p_em
,
libvlc_event_t
*
p_event
);
...
...
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