Code: Select all
#IOCTL_STORAGE_EJECT_MEDIA = $D4808
#IOCTL_STORAGE_LOAD_MEDIA = $2D480C
hDevice = CreateFile_("\\.\Cdrom0",#GENERIC_READ,#FILE_SHARE_READ,0,#OPEN_EXISTING,0,0)
If hDevice <> #INVALID_HANDLE_VALUE
DeviceIoControl_(hDevice,#IOCTL_STORAGE_EJECT_MEDIA,0,0,0,0,@bytesReturned,0)
Debug @bytesReturned
Delay(5000)
DeviceIoControl_(hDevice,#IOCTL_STORAGE_LOAD_MEDIA,0,0,0,0,@bytesReturned,0)
Debug @bytesReturned
CloseHandle_(hDevice)
EndIf

\\.\Cdrom0 the physical first cd/dvd
\\.\Cdrom1 the physical second cd/dvd
...