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
eb0af115
Commit
eb0af115
authored
Feb 22, 2004
by
Clément Stenac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix compilation warnings
parent
c37f1230
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
modules/misc/playlist/export.c
modules/misc/playlist/export.c
+4
-4
modules/misc/playlist/native.c
modules/misc/playlist/native.c
+2
-2
No files found.
modules/misc/playlist/export.c
View file @
eb0af115
...
...
@@ -2,7 +2,7 @@
* export.c : Playlist export module
*****************************************************************************
* Copyright (C) 2004 VideoLAN
* $Id: export.c,v 1.
1 2004/01/11 00:45:06
zorglub Exp $
* $Id: export.c,v 1.
2 2004/02/22 15:52:33
zorglub Exp $
*
* Authors: Clment Stenac <zorglub@videolan.org>
*
...
...
@@ -29,9 +29,9 @@
/***************************************************************************
* Prototypes
***************************************************************************/
void
Export_Native
(
intf_thread
_t
*
p_intf
);
void
Export_M3U
(
intf_thread
_t
*
p_intf
);
void
Export_Old
(
intf_thread
_t
*
p_intf
);
int
Export_Native
(
vlc_object
_t
*
p_intf
);
int
Export_M3U
(
vlc_object
_t
*
p_intf
);
int
Export_Old
(
vlc_object
_t
*
p_intf
);
/*****************************************************************************
...
...
modules/misc/playlist/native.c
View file @
eb0af115
...
...
@@ -2,7 +2,7 @@
* native.c : Native playlist export module
*****************************************************************************
* Copyright (C) 2004 VideoLAN
* $Id: native.c,v 1.
1 2004/01/11 00:45:06
zorglub Exp $
* $Id: native.c,v 1.
2 2004/02/22 15:52:33
zorglub Exp $
*
* Authors: Clément Stenac <zorglub@videolan.org>
*
...
...
@@ -42,7 +42,7 @@ int Export_Native ( vlc_object_t * );
int
Export_Native
(
vlc_object_t
*
p_this
)
{
playlist_t
*
p_playlist
=
(
playlist_t
*
)
p_this
;
playlist_export_t
*
p_export
=
(
playlist_export_t
*
)
p_playlist
->
p_private
;
msg_Dbg
(
p_playlist
,
"Saving using native format"
);
return
VLC_SUCCESS
;
}
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