Commit 774372d1 authored by Gildas Bazin's avatar Gildas Bazin

* configure.ac.in, src/interface/intf_eject.c: scrapped the win32 eject code and replaced it with an MCI command.
parent 73b48064
...@@ -122,7 +122,7 @@ case "x${target_os}" in ...@@ -122,7 +122,7 @@ case "x${target_os}" in
# add ws2_32 for closesocket, select, recv # add ws2_32 for closesocket, select, recv
CPPFLAGS_save="${CPPFLAGS_save} -D_OFF_T_ -D_off_t=long" CPPFLAGS_save="${CPPFLAGS_save} -D_OFF_T_ -D_off_t=long"
CPPFLAGS="${CPPFLAGS_save}" CPPFLAGS="${CPPFLAGS_save}"
LDFLAGS_vlc="${LDFLAGS_vlc} -lws2_32 -lnetapi32 -mwindows" LDFLAGS_vlc="${LDFLAGS_vlc} -lws2_32 -lnetapi32 -lmmsystem -mwindows"
LDFLAGS_ipv4="${LDFLAGS_ipv4} -lws2_32" LDFLAGS_ipv4="${LDFLAGS_ipv4} -lws2_32"
LDFLAGS_ipv6="${LDFLAGS_ipv6} -lws2_32" LDFLAGS_ipv6="${LDFLAGS_ipv6} -lws2_32"
LDFLAGS_access_http="${LDFLAGS_access_http} -lws2_32" LDFLAGS_access_http="${LDFLAGS_access_http} -lws2_32"
......
...@@ -2,12 +2,12 @@ ...@@ -2,12 +2,12 @@
* intf_eject.c: CD/DVD-ROM ejection handling functions * intf_eject.c: CD/DVD-ROM ejection handling functions
***************************************************************************** *****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN * Copyright (C) 2001, 2002 VideoLAN
* $Id: intf_eject.c,v 1.18 2002/11/13 20:51:05 sam Exp $ * $Id: intf_eject.c,v 1.19 2003/03/21 17:14:56 gbazin Exp $
* *
* Author: Julien Blache <jb@technologeek.org> for the Linux part * Author: Julien Blache <jb@technologeek.org> for the Linux part
* with code taken from the Linux "eject" command * with code taken from the Linux "eject" command
* Jon Lech Johansen <jon-vl@nanocrew.net> for Darwin * Jon Lech Johansen <jon-vl@nanocrew.net> for Darwin
* Xavier Marchesini <xav@alarue.net> for Win32 * Gildas Bazin <gbazin@netcourrier.com> for Win32
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
...@@ -68,31 +68,9 @@ ...@@ -68,31 +68,9 @@
#endif #endif
#if defined( WIN32 ) && !defined( UNDER_CE ) #if defined( WIN32 ) && !defined( UNDER_CE )
# include <windows.h> # include <mmsystem.h>
# include <stdio.h>
# include <winioctl.h>
# include <ctype.h>
# include <tchar.h>
/* define the structures to eject under Win95/98/Me */
#if !defined (VWIN32_DIOC_DOS_IOCTL)
#define VWIN32_DIOC_DOS_IOCTL 1
typedef struct _DIOC_REGISTERS {
DWORD reg_EBX;
DWORD reg_EDX;
DWORD reg_ECX;
DWORD reg_EAX;
DWORD reg_EDI;
DWORD reg_ESI;
DWORD reg_Flags;
} DIOC_REGISTERS, *PDIOC_REGISTERS;
#endif /* VWIN32_DIOC_DOS_IOCTL */
#endif #endif
/***************************************************************************** /*****************************************************************************
* Local prototypes * Local prototypes
*****************************************************************************/ *****************************************************************************/
...@@ -159,64 +137,29 @@ int __intf_Eject( vlc_object_t *p_this, const char *psz_device ) ...@@ -159,64 +137,29 @@ int __intf_Eject( vlc_object_t *p_this, const char *psz_device )
return i_ret; return i_ret;
#elif defined(WIN32) #elif defined(WIN32)
HANDLE h_drive ; MCI_OPEN_PARMS op;
TCHAR psz_drive_id[8] ; MCI_STATUS_PARMS st;
DWORD dw_access_flags = GENERIC_READ ; DWORD i_flags;
DWORD dw_result ; char psz_drive[4];
LPTSTR psz_volume_format = TEXT("\\\\.\\%s") ;
BYTE by_drive ;
DIOC_REGISTERS regs = {0} ;
/* Win2K ejection code */
if ( GetVersion() < 0x80000000 )
{
wsprintf(psz_drive_id, psz_volume_format, psz_device) ;
msg_Dbg( p_this, "ejecting drive %s", psz_drive_id ); memset( &op, 0, sizeof(MCI_OPEN_PARMS) );
op.lpstrDeviceType = (LPCSTR)MCI_DEVTYPE_CD_AUDIO;
/* Create the file handle */ strcpy( psz_drive, "X:" );
h_drive = CreateFile( psz_drive_id, psz_drive[0] = psz_device[0];
dw_access_flags, op.lpstrElementName = psz_drive;
FILE_SHARE_READ | FILE_SHARE_WRITE,
NULL,
OPEN_EXISTING,
0,
NULL );
if (h_drive == INVALID_HANDLE_VALUE ) /* Set the flags for the device type */
{ i_flags = MCI_OPEN_TYPE | MCI_OPEN_TYPE_ID |
msg_Err( p_this, "could not create handle for device %s", MCI_OPEN_ELEMENT | MCI_OPEN_SHAREABLE;
psz_device );
}
i_ret = DeviceIoControl ( h_drive, if( !mciSendCommand( 0, MCI_OPEN, i_flags, (unsigned long)&op ) )
IOCTL_STORAGE_EJECT_MEDIA,
NULL, 0,
NULL, 0,
&dw_result,
NULL);
return (i_ret) ;
}
else /* Win95/98/ME */
{ {
/* Create the handle to VWIN32 */ st.dwItem = MCI_STATUS_READY;
h_drive = CreateFile ("\\\\.\\vwin32", 0, 0, NULL, 0, /* Eject disc */
FILE_FLAG_DELETE_ON_CLOSE, NULL ) ; mciSendCommand( op.wDeviceID, MCI_SET, MCI_SET_DOOR_OPEN, 0 );
/* Release access to the device */
/* Convert logical disk name to DOS-like disk name */ mciSendCommand( op.wDeviceID, MCI_CLOSE, MCI_WAIT, 0 );
by_drive = (toupper (*psz_device) - 'A') + 1;
/* Let's eject now : Int 21H function 440DH minor code 49h*/
regs.reg_EAX = 0x440D ;
regs.reg_EBX = by_drive ;
regs.reg_ECX = MAKEWORD(0x49 , 0x08) ; // minor code
i_ret = DeviceIoControl (h_drive, VWIN32_DIOC_DOS_IOCTL,
&regs, sizeof(regs), &regs, sizeof(regs),
&dw_result, 0) ;
CloseHandle (h_drive) ;
return (i_ret) ;
} }
#else /* WIN32 */ #else /* WIN32 */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment