Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
2a70bf34
Commit
2a70bf34
authored
Nov 25, 2011
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move intf_EJect() out of core
parent
a5aed8a3
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
14 additions
and
16 deletions
+14
-16
include/vlc_interface.h
include/vlc_interface.h
+0
-3
modules/gui/Modules.am
modules/gui/Modules.am
+1
-0
modules/gui/eject.c
modules/gui/eject.c
+9
-10
modules/gui/ncurses.c
modules/gui/ncurses.c
+2
-0
modules/gui/qt4/components/open_panels.cpp
modules/gui/qt4/components/open_panels.cpp
+2
-0
po/POTFILES.in
po/POTFILES.in
+0
-1
src/Makefile.am
src/Makefile.am
+0
-1
src/libvlccore.sym
src/libvlccore.sym
+0
-1
No files found.
include/vlc_interface.h
View file @
2a70bf34
...
...
@@ -102,9 +102,6 @@ struct intf_dialog_args_t
VLC_API
int
intf_Create
(
vlc_object_t
*
,
const
char
*
);
#define intf_Create(a,b) intf_Create(VLC_OBJECT(a),b)
VLC_API
int
intf_Eject
(
vlc_object_t
*
,
const
char
*
);
#define intf_Eject(a,b) intf_Eject(VLC_OBJECT(a),b)
VLC_API
void
libvlc_Quit
(
libvlc_int_t
*
);
/*@}*/
...
...
modules/gui/Modules.am
View file @
2a70bf34
...
...
@@ -16,3 +16,4 @@ endif
SOURCES_ncurses = ncurses.c
SOURCES_fbosd = fbosd.c
EXTRA_DIST += eject.c
src/interface/intf_
eject.c
→
modules/gui/
eject.c
View file @
2a70bf34
/*****************************************************************************
*
intf_
eject.c: CD/DVD-ROM ejection handling functions
* eject.c: CD/DVD-ROM ejection handling functions
*****************************************************************************
* Copyright (C) 2001-2004 the VideoLAN team
* $Id$
* Copyright (C) 2001-2011 the VideoLAN team
*
* Authors: Julien Blache <jb@technologeek.org> for the Linux part
* with code taken from the Linux "eject" command
...
...
@@ -29,13 +28,12 @@
* This file contain functions to eject CD and DVD drives
*/
#ifdef HAVE_CONFIG_H
/*
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#endif
*/
#include <vlc_common.h>
#include <vlc_fs.h>
#include <vlc_interface.h>
#if defined( WIN32 ) && !defined( UNDER_CE )
# include <mmsystem.h>
...
...
@@ -115,13 +113,12 @@ static int EjectSCSI( int i_fd )
#undef intf_Eject
/**
* \brief Ejects the CD /DVD
* \ingroup vlc_interface
* Ejects the optical disc in a device
* \param p_this the calling vlc_object_t
* \param psz_device the CD/DVD to eject
* \return
0 on success, 1 on failure, -1 if not implemented
* \return
VLC_SUCCESS or VLC_EGENERIC
*/
int
intf_Eject
(
vlc_object_t
*
p_this
,
const
char
*
psz_device
)
static
int
intf_Eject
(
vlc_object_t
*
p_this
,
const
char
*
psz_device
)
{
VLC_UNUSED
(
p_this
);
...
...
@@ -179,3 +176,5 @@ int intf_Eject( vlc_object_t *p_this, const char *psz_device )
return
VLC_EGENERIC
;
#endif
}
#define intf_Eject(o, p) intf_Eject(VLC_OBJECT(o), p)
modules/gui/ncurses.c
View file @
2a70bf34
...
...
@@ -85,6 +85,8 @@ vlc_module_begin ()
add_directory
(
"browse-dir"
,
NULL
,
BROWSE_TEXT
,
BROWSE_LONGTEXT
,
false
)
vlc_module_end
()
#include "eject.c"
/*****************************************************************************
* intf_sys_t: description and status of ncurses interface
*****************************************************************************/
...
...
modules/gui/qt4/components/open_panels.cpp
View file @
2a70bf34
...
...
@@ -57,6 +57,8 @@
I_DIR_OR_FOLDER( N_("Select a device or a VIDEO_TS directory"), \
N_("Select a device or a VIDEO_TS folder") )
#include "../../eject.c"
/* Populate a combobox with the devices matching a pattern.
Combobox will automatically do autocompletion on the edit zone */
#define POPULATE_WITH_DEVS(ppsz_devlist, targetCombo) \
...
...
po/POTFILES.in
View file @
2a70bf34
...
...
@@ -105,7 +105,6 @@ src/input/vlm.c
src/input/vlm_internal.h
src/input/vlmshell.c
src/interface/interface.c
src/interface/intf_eject.c
src/libvlc.c
src/libvlc.h
src/libvlc-module.c
...
...
src/Makefile.am
View file @
2a70bf34
...
...
@@ -304,7 +304,6 @@ SOURCES_libvlc_common = \
version.c
\
interface/dialog.c
\
interface/interface.c
\
interface/intf_eject.c
\
playlist/playlist_internal.h
\
playlist/art.c
\
playlist/art.h
\
...
...
src/libvlccore.sym
View file @
2a70bf34
...
...
@@ -230,7 +230,6 @@ input_Stop
input_vaControl
input_Close
intf_Create
intf_Eject
IsUTF8
libvlc_InternalAddIntf
libvlc_InternalCleanup
...
...
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