#1 Burning Software

It is currently Fri Apr 19, 2024 8:42 pm

All times are UTC




Post new topic Reply to topic  [ 89 posts ]  Go to page 1, 2, 3, 4, 5, 6  Next
Author Message
 Post subject: DiscAtOnceRawPWFromFile from VB Question
PostPosted: Tue Sep 21, 2004 3:29 am 
Offline

Joined: Mon Sep 06, 2004 1:45 pm
Posts: 118
I'm getting a call failed whenever I call the StarBurn_CdvdBurnerGrabber_DiscAtOnceRawPWFromFile function. I probably just have something declared wrong. I found where Number_of_tracks was delcared at 100 but I couldn't find where MAX_PATH was declared. I set it to 255 but that was just a guess on my part. Thay may be the whole problem.


Public Type DAO_Disk_Layout_Entry
TrackSizeInLBs As Long
TrackStartingLBA As Long
TrackName As String * Max_Path
FilePointer As Long
IsDataTrack As Byte
IsRawTrack As Byte
End Type

Public Type DAO_Disk_Layout
NumberOfEntries As Long
Disk_Layout_Entry(Number_of_Tracks) As DAO_Disk_Layout_Entry
End Type

Can you see what I'm doing wrong?
declare Function StarBurn_CdvdBurnerGrabber_DiscAtOnceRawPWFromFile _
Lib "c:\windows\system32\StarBurn.dll" (ByVal ObjGrabber As Long, _
ByVal ExceptionText As String, ByVal TextSize As Long, _
ByVal SystemError As Long, _
ByRef PCDB_Fail_Info As CDB_Failure_Type, _
ByRef DAO_Disk_Layout As DAO_Disk_Layout, _
ByRef IsXA As Byte, ByRef IsTestWrite As Byte, _
ByRef IsNextSessionAllowed As Byte, ByRef IsSubChannelRepairRequired As Byte, _
ByRef WriteReportDelayInSeconds As Byte, ByRef BufferReportDelayInSeconds As Byte) As Long


Top
 Profile  
 
 Post subject: Re: DiscAtOnceRawPWFromFile from VB Question
PostPosted: Tue Sep 21, 2004 5:38 am 
Offline

Joined: Mon May 31, 2004 6:22 am
Posts: 134
bbriggstkd wrote:
I'm getting a call failed whenever I call the StarBurn_CdvdBurnerGrabber_DiscAtOnceRawPWFromFile function. I probably just have something declared wrong. I found where Number_of_tracks was delcared at 100 but I couldn't find where MAX_PATH was declared. I set it to 255 but that was just a guess on my part. Thay may be the whole problem.


#define MAX_PATH 260

bbriggstkd wrote:
Public Type DAO_Disk_Layout_Entry
TrackSizeInLBs As Long
TrackStartingLBA As Long
TrackName As String * Max_Path
FilePointer As Long
IsDataTrack As Byte
IsRawTrack As Byte
End Type

Public Type DAO_Disk_Layout
NumberOfEntries As Long
Disk_Layout_Entry(Number_of_Tracks) As DAO_Disk_Layout_Entry
End Type




bbriggstkd wrote:
declare Function StarBurn_CdvdBurnerGrabber_DiscAtOnceRawPWFromFile _
Lib "c:\windows\system32\StarBurn.dll" (ByVal ObjGrabber As Long, _
ByVal ExceptionText As String, ByVal TextSize As Long, _
ByVal SystemError As Long, _
ByRef PCDB_Fail_Info As CDB_Failure_Type, _
ByRef DAO_Disk_Layout As DAO_Disk_Layout, _
ByRef IsXA As Byte, ByRef IsTestWrite As Byte, _
ByRef IsNextSessionAllowed As Byte, ByRef IsSubChannelRepairRequired As Byte, _
ByRef WriteReportDelayInSeconds As Byte, ByRef BufferReportDelayInSeconds As Byte) As Long


1. Note that "ByRef SystemError As Long" - it will return system error code.
2.
ByVal IsXA As Byte, _
ByVal IsTestWrite As Byte, _
ByVal IsNextSessionAllowed As Byte, _
ByVal IsSubChannelRepairRequired As Byte, _
ByVal WriteReportDelayInSeconds As Long, _
ByVal BufferReportDelayInSeconds As Long


Top
 Profile  
 
 Post subject: Re: DiscAtOnceRawPWFromFile from VB Question
PostPosted: Tue Sep 21, 2004 7:01 am 
Offline

Joined: Mon May 31, 2004 6:22 am
Posts: 134
bbriggstkd wrote:
I'm getting a call failed whenever I call the StarBurn_CdvdBurnerGrabber_DiscAtOnceRawPWFromFile function. I probably just have something declared wrong. I found where Number_of_tracks was delcared at 100 but I couldn't find where MAX_PATH was declared. I set it to 255 but that was just a guess on my part. Thay may be the whole problem.


#define MAX_PATH 260

bbriggstkd wrote:
Public Type DAO_Disk_Layout_Entry
TrackSizeInLBs As Long
TrackStartingLBA As Long
TrackName As String * Max_Path
FilePointer As Long
IsDataTrack As Byte
IsRawTrack As Byte
End Type

Public Type DAO_Disk_Layout
NumberOfEntries As Long
Disk_Layout_Entry(Number_of_Tracks) As DAO_Disk_Layout_Entry
End Type




bbriggstkd wrote:
declare Function StarBurn_CdvdBurnerGrabber_DiscAtOnceRawPWFromFile _
Lib "c:\windows\system32\StarBurn.dll" (ByVal ObjGrabber As Long, _
ByVal ExceptionText As String, ByVal TextSize As Long, _
ByVal SystemError As Long, _
ByRef PCDB_Fail_Info As CDB_Failure_Type, _
ByRef DAO_Disk_Layout As DAO_Disk_Layout, _
ByRef IsXA As Byte, ByRef IsTestWrite As Byte, _
ByRef IsNextSessionAllowed As Byte, ByRef IsSubChannelRepairRequired As Byte, _
ByRef WriteReportDelayInSeconds As Byte, ByRef BufferReportDelayInSeconds As Byte) As Long


1. Note that "ByRef SystemError As Long" - it will return system error code.
2.
ByVal IsXA As Byte, _
ByVal IsTestWrite As Byte, _
ByVal IsNextSessionAllowed As Byte, _
ByVal IsSubChannelRepairRequired As Byte, _
ByVal WriteReportDelayInSeconds As Long, _
ByVal BufferReportDelayInSeconds As Long


Top
 Profile  
 
 Post subject: I'm a little confused
PostPosted: Tue Sep 21, 2004 1:42 pm 
Offline

Joined: Mon Sep 06, 2004 1:45 pm
Posts: 118
In another post, I was told to declare exception text as ByVal even though it was possible to get the exception text returned to me. Here you are telling my to declare systemerror byref so it can be returned to me.

I understand the difference between byVal and ByRef within VB. Does it work a little differently when calling a C++ DLL?

Within VB a ByVal passes a copy of the variable where ByRef passes a pointer to the original variable. How will the Exception text be passed back if it is passed ByVal? Is it just because the C++ DLL will still write to that address?


Top
 Profile  
 
 Post subject: Re: I'm a little confused
PostPosted: Tue Sep 21, 2004 1:51 pm 
Offline

Joined: Mon May 31, 2004 6:22 am
Posts: 134
Hi,

Yes, there is a difference.
char * -> ByVal ... As String
char ** -> ByRef ... As String
long -> ByVal .. As Long
long * -> ByRef ... As Long.

You see, C++ string type is "char *", not a "char"

bbriggstkd wrote:
In another post, I was told to declare exception text as ByVal even though it was possible to get the exception text returned to me. Here you are telling my to declare systemerror byref so it can be returned to me.

I understand the difference between byVal and ByRef within VB. Does it work a little differently when calling a C++ DLL?

Within VB a ByVal passes a copy of the variable where ByRef passes a pointer to the original variable. How will the Exception text be passed back if it is passed ByVal? Is it just because the C++ DLL will still write to that address?


Top
 Profile  
 
 Post subject: That Make Sense
PostPosted: Tue Sep 21, 2004 3:27 pm 
Offline

Joined: Mon Sep 06, 2004 1:45 pm
Posts: 118
That clears things up a bit. I've been looking at the starburn.pdf documentation when I try to write my declares. I may need to look at the starburn.h file to do that. I don't think the pdf documentation has things written the way you put it here. Maybe it has the Delphi format. I've never used Delphi so I don't know. Is that right?


Top
 Profile  
 
 Post subject: Re: That Make Sense
PostPosted: Tue Sep 21, 2004 3:46 pm 
Offline

Joined: Mon May 31, 2004 6:22 am
Posts: 134
Hi,

No, documentation has C++ declarations. It's not a Delphi.
But it uses other types.
PCHAR = char*
PLONG = long*
PPCHAR = char**
something like that.

bbriggstkd wrote:
That clears things up a bit. I've been looking at the starburn.pdf documentation when I try to write my declares. I may need to look at the starburn.h file to do that. I don't think the pdf documentation has things written the way you put it here. Maybe it has the Delphi format. I've never used Delphi so I don't know. Is that right?


Bye!


Top
 Profile  
 
 Post subject: Still Can't get it to work
PostPosted: Tue Sep 21, 2004 11:10 pm 
Offline

Joined: Mon Sep 06, 2004 1:45 pm
Posts: 118
I still can't get the burn to work. Here are my declares.

Public Type DAO_Disk_Layout_Entry
TrackSizeInLBs As Long
TrackStartingLBA As Long
TrackName As String * Max_Path
FilePointer As Long
IsDataTrack As Byte
IsRawTrack As Byte
End Type

Public Type DAO_Disk_Layout
NumberOfEntries As Long
Disk_Layout_Entry(Number_of_Tracks) As DAO_Disk_Layout_Entry
End Type

Declare Function StarBurn_CdvdBurnerGrabber_DiscAtOnceRawPWFromFile _
Lib "c:\windows\system32\StarBurn.dll" (ByVal ObjGrabber As Long, _
ByVal ExceptionText As String, ByVal TextSize As Long, _
ByRef SystemError As Long, _
ByRef PCDB_Fail_Info As CDB_Failure_Type, _
ByRef DAO_Disk_Layout As DAO_Disk_Layout, _
ByVal IsXA As Byte, ByVal IsTestWrite As Byte, _
ByVal IsNextSessionAllowed As Byte, ByVal IsSubChannelRepairRequired As Byte, _
ByVal WriteReportDelayInSeconds As Long, ByVal BufferReportDelayInSeconds As Long) As Long

I just get a call failed, I don't get a return code.

Here is the code where I set up the disc_Layout

For x = 1 To mvarFiles.Count
Disc_Layout.Disk_Layout_Entry(x).TrackName = mvarFiles.Item(x).FileName
Next x
Disc_Layout.NumberOfEntries = mvarFiles.Count

mvarFiles is a collection of file names.
Max_Path is set to 260
Number_of_tracks is set to 100

What callback function is used during the burn? Is it the one passed in with the create? If so, here is the declare for that.

Public Sub Create_CallBack(ByVal CallBackNum As Byte, _
ByRef CallBackContext As Long, _
ByRef Stat1 As Large_Integer, _
ByRef stat2 As Large_Integer)

Debug.Print "callback: " & CallBackNum

End Sub

I don't know what else to do.

I'm not trying to set cdtext, do I need to do that? If so can you give me the declare, I couldn't find it in the documentation.

Here is the debug info.

00000000 0.00000000 [120]
00000001 0.00000000 [120] WnASPI32 ASPI Layer for Windows NT/2000/XP/2003 Version 4.1.0 ( 0x20040910 )
00000002 0.00000000 [120] Copyright (c) Rocket Division Software 2001-2004. All rights reserved.
00000003 0.00000000 [120]
00000004 0.01587353 [120]
00000005 0.01587353 [120] StarBurn CD/DVD Burning, Grabbing and Mastering Toolkit for Windows 95/98/Me/NT/2000/XP/2003 Version 4.1.0 ( 0x20040910 )
00000006 0.01587353 [120] Copyright (c) Rocket Division Software 2001-2004. All rights reserved.
00000007 0.01587353 [120]
00000008 0.01587353 [120]
00000009 0.01587353 [120] This is FREE version of StarBurn SDK and it should be distributed with FREE software only!
00000010 0.01587353 [120] If you've noticed somebody using it in non-FREE software please report software piracy to piracy@rocketdivison.com
00000011 4.84559965 [120]
00000012 4.84559965 [120] ** FREE ** ** FREE ** ** FREE ** ** FREE ** ** FREE ** ** FREE ** ** FREE ** ** FREE ** ** FREE **
00000013 4.84559965 [120]
00000014 4.84572481 [120]
00000015 4.84572481 [120] StarWave Media Streaming Toolkit for Windows 95/98/Me/NT/2000/XP/2003 Version 4.1.0 ( 0x20040910 )
00000016 4.84572481 [120] Copyright (c) Rocket Division Software 2001-2004. All rights reserved.
00000017 4.84572481 [120]
00000018 4.86478114 [120]
00000019 4.86478114 [120] SCSI port inquiry dump:
00000020 4.86483869 [120] SCSI ID: 7, Manager 'ROCKET', Identifier 'Port 001'
00000021 4.86487389 [120] Residual Count Supported: Yes, Number of SCSI Target(s) Supported: 15
00000022 4.86490825 [120] Single Transfer Size: 65536 UCHARs
00000023 4.86490825 [120]
00000024 4.86494568 [120]
00000025 4.86494568 [120] CStarBurn_ScsiTransportASPI::CStarBurn_ScsiTrasportASPI(): Symbolic name is '\\.\D:'
00000026 4.86768989 [120]
00000027 4.86768989 [120] SCSI device inquiry data dump:
00000028 4.86768989 [120] Device Type: 0x05, Removable: Yes
00000029 4.86776839 [120] SCSI Version: 0, Soft Reset Supported: No
00000030 4.86780219 [120] Command Queue Supported: No, Linked Commands Supported: No
00000031 4.86783628 [120] Sync Transfer Supported: No, 16-bit bus: No
00000032 4.86784885 [120] 32-bit bus: No, Relative Addressing Supported: No
00000033 4.86789215 [120] Vendor ID: 'QSI ', Product ID: 'CDRW/DVD SBW242U', Revision Level: 'US05'
00000034 4.86789215 [120]
00000035 4.86793154 [120]
00000036 4.86793154 [120] CStarBurn_ScsiDeviceGeneric::CStarBurn_ScsiDeviceGeneric(): 'QSI ' - 'CDRW/DVD SBW242U' - 'US05' sits at 1:0:0:0
00000037 4.87245083 [120]
00000038 4.87245083 [120] CDVD capabilities page dump:
00000039 4.87245083 [120] Page Code: 0x2A, Reserved1: 0x00, PSBit (Page Savable): 0
00000040 4.87250530 [120] Page Size in UCHARs: 56 UCHARs, CD-R Read: Yes, CD-E Read: Yes
00000041 4.87253995 [120] DVD-ROM Read: Yes, DVD-R Read: Yes, DVD-RAM Read: No, Reserved2: 0x00
00000042 4.87257487 [120] CD-R Write: Yes, CD-E Write: Yes, Test Write: Yes
00000043 4.87260895 [120] Reserved3: 0x00, DVD-R Write: No, DVD-RAM Write: No
00000044 4.87264275 [120] Reserved4: 0x00, Audio Play: Yes, Composite: No
00000045 4.87267628 [120] Digital Port One: No, Digital Port Two: No
00000046 4.87270980 [120] MODE2 Form1: Yes, MODE2 Form2: Yes
00000047 4.87274304 [120] Is Multi Session: Yes, CDDA: Yes, CDDAAccurate: Yes
00000048 4.87277685 [120] BUP (Buffer Underrun Protection) Supported: Yes
00000049 4.87281009 [120] RW Supported: Yes, RW Deinterleaved: No, C2Pointers: Yes
00000050 4.87284417 [120] ISRC: Yes, UPC: Yes, Read Bar Code Capable: No
00000051 4.87287826 [120] Lock: Yes, LockState: 0, Prevent Jumper: No
00000052 4.87291206 [120] Reserved5: 0x00, Eject: Yes, Loading Mechanism Type: 0x01
00000053 4.87294558 [120] Separate Volume: Yes, Separate Channel Mute: Yes
00000054 4.87297967 [120] Supports Disc Present: No, SW Slot Selection: No
00000055 4.87301319 [120] Side Change Capable: No, RW InLeadIn Readable: Yes, Reserved6: 0x00
00000056 4.87304755 [120] Maximum read speed: 1410 KBps
00000057 4.87308080 [120] Number Of Volume Level(s): 256, Buffer Size in KBs: 2048
00000058 4.87311376 [120] Current read speed: 1410 KBps
00000059 4.87314729 [120] Reserved7: 0x00
00000060 4.87317969 [120] BCK: No, RCK: No, LSBF: No, Length: 0x01
00000061 4.87321294 [120] Reserved8: 0x00
00000062 4.87324590 [120] Maximum write speed: 4226 KBps
00000063 4.87327887 [120] Current write speed: 4226 KBps
00000064 4.88144946 [120] Reserved9: 0x0001
00000065 4.88144946 [120]
00000066 4.88835788 [120]
00000067 4.88835788 [120] CStarBurn_CdvdBurnerGrabber::GetSupportedMediaFormatsEx(): DVD+RW page size in UCHAR(s): 12
00000068 4.89518109 [120]
00000069 4.89518109 [120] CStarBurn_CdvdBurnerGrabber::GetSupportedMediaFormatsEx(): DVD+R page size in UCHAR(s): 12
00000070 4.90565449 [120]
00000071 4.90565449 [120] StarBurn_DumpCdvdWriteParametersPage(): WARNING! Size 50 less then 56!
00000072 4.90571483 [120]
00000073 4.90571483 [120] Write parameter page dump:
00000074 4.90571483 [120] Page Code: 0x05, PSBit (Page Saveable): 0
00000075 4.90576568 [120] Page Length: 50 UCHARs, Write Type: 0x03, Test Write: No, Reserved2_1: 0x00
00000076 4.90578858 [120] BUP (Buffer Underrun Protection) Enabled: No
00000077 4.90582378 [120] Track Mode: 0x04, Copy Allowed: No, FP (Is Fixed Packet): No
00000078 4.90585871 [120] Next Session: 0x00, Data Block Type: 0x03, Reserved4: 0x00
00000079 4.90589391 [120] Host Application Code: 0x00, Session Format: 0x00
00000080 4.90592855 [120] Packet Size: 0, Audio Pause Length: 150
00000081 4.90597911 [120] Media Catalog Number: 0x00000000000000000000000000000000
00000082 4.90600146 [120] ISRC: 0x00000000000000000000000000000000
00000083 4.90603554 [120] SubHeaderUCHAR0: 0x00, SubHeaderUCHAR1: 0x00
00000084 4.90606991 [120] SubHeaderUCHAR2: 0x00, SubHeaderUCHAR3: 0x00
00000085 4.90610455 [120] Vendor Specific: 0x00 0x00 0x00 0x00
00000086 4.90610455 [120]
00000087 4.90614114 [120]
00000088 4.90614114 [120] StarBurn_DumpCdvdWriteParametersPage(): WARNING! Size 50 less then 56!
00000089 4.90619003 [120]
00000090 4.90619003 [120] Write parameter page dump:
00000091 4.90619003 [120] Page Code: 0x05, PSBit (Page Saveable): 0
00000092 4.90621573 [120] Page Length: 50 UCHARs, Write Type: 0x01, Test Write: No, Reserved2_1: 0x00
00000093 4.90625010 [120] BUP (Buffer Underrun Protection) Enabled: No
00000094 4.90628446 [120] Track Mode: 0x04, Copy Allowed: No, FP (Is Fixed Packet): No
00000095 4.90631938 [120] Next Session: 0x00, Data Block Type: 0x08, Reserved4: 0x00
00000096 4.90635402 [120] Host Application Code: 0x00, Session Format: 0x00
00000097 4.90640179 [120] Packet Size: 0, Audio Pause Length: 150
00000098 4.90642386 [120] Media Catalog Number: 0x00000000000000000000000000000000
00000099 4.90646828 [120] ISRC: 0x00000000000000000000000000000000
00000100 4.90650264 [120] SubHeaderUCHAR0: 0x00, SubHeaderUCHAR1: 0x00
00000101 4.90654622 [120] SubHeaderUCHAR2: 0x00, SubHeaderUCHAR3: 0x00
00000102 4.90658086 [120] Vendor Specific: 0x00 0x00 0x00 0x00
00000103 4.90658086 [120]
00000104 4.91036347 [120]
00000105 4.91036347 [120] StarBurn_DumpCdvdWriteParametersPage(): WARNING! Size 50 less then 56!
00000106 4.91039280 [120]
00000107 4.91039280 [120] Write parameter page dump:
00000108 4.91039280 [120] Page Code: 0x05, PSBit (Page Saveable): 0
00000109 4.91043303 [120] Page Length: 50 UCHARs, Write Type: 0x01, Test Write: No, Reserved2_1: 0x00
00000110 4.91047549 [120] BUP (Buffer Underrun Protection) Enabled: No
00000111 4.91052075 [120] Track Mode: 0x04, Copy Allowed: No, FP (Is Fixed Packet): No
00000112 4.91055707 [120] Next Session: 0x00, Data Block Type: 0x08, Reserved4: 0x00
00000113 4.91061378 [120] Host Application Code: 0x00, Session Format: 0x00
00000114 4.91062719 [120] Packet Size: 0, Audio Pause Length: 150
00000115 4.91067440 [120] Media Catalog Number: 0x00000000000000000000000000000000
00000116 4.91071212 [120] ISRC: 0x00000000000000000000000000000000
00000117 4.91074648 [120] SubHeaderUCHAR0: 0x00, SubHeaderUCHAR1: 0x00
00000118 4.91078196 [120] SubHeaderUCHAR2: 0x00, SubHeaderUCHAR3: 0x00
00000119 4.91085236 [120] Vendor Specific: 0x00 0x00 0x00 0x00
00000120 4.91085236 [120]
00000121 4.91120156 [120]
00000122 4.91120156 [120] StarBurn_DumpCdvdWriteParametersPage(): WARNING! Size 50 less then 56!
00000123 4.91124040 [120]
00000124 4.91124040 [120] Write parameter page dump:
00000125 4.91124040 [120] Page Code: 0x05, PSBit (Page Saveable): 0
00000126 4.91127923 [120] Page Length: 50 UCHARs, Write Type: 0x01, Test Write: No, Reserved2_1: 0x00
00000127 4.91131387 [120] BUP (Buffer Underrun Protection) Enabled: No
00000128 4.91134851 [120] Track Mode: 0x04, Copy Allowed: No, FP (Is Fixed Packet): No
00000129 4.91140550 [120] Next Session: 0x00, Data Block Type: 0x08, Reserved4: 0x00
00000130 4.91144014 [120] Host Application Code: 0x00, Session Format: 0x00
00000131 4.91145299 [120] Packet Size: 0, Audio Pause Length: 150
00000132 4.91149769 [120] Media Catalog Number: 0x00000000000000000000000000000000
00000133 4.91153457 [120] ISRC: 0x00000000000000000000000000000000
00000134 4.91159323 [120] SubHeaderUCHAR0: 0x00, SubHeaderUCHAR1: 0x00
00000135 4.91165078 [120] SubHeaderUCHAR2: 0x00, SubHeaderUCHAR3: 0x00
00000136 4.91168626 [120] Vendor Specific: 0x00 0x00 0x00 0x00
00000137 4.91168626 [120]
00000138 4.91169995 [120]
00000139 4.91169995 [120] StarBurn_DumpCdvdWriteParametersPage(): WARNING! Size 50 less then 56!
00000140 4.91173683 [120]
00000141 4.91173683 [120] Write parameter page dump:
00000142 4.91173683 [120] Page Code: 0x05, PSBit (Page Saveable): 0
00000143 4.91177594 [120] Page Length: 50 UCHARs, Write Type: 0x02, Test Write: No, Reserved2_1: 0x00
00000144 4.91181142 [120] BUP (Buffer Underrun Protection) Enabled: No
00000145 4.91186757 [120] Track Mode: 0x04, Copy Allowed: No, FP (Is Fixed Packet): No
00000146 4.91190221 [120] Next Session: 0x00, Data Block Type: 0x08, Reserved4: 0x00
00000147 4.91191506 [120] Host Application Code: 0x00, Session Format: 0x00
00000148 4.91194942 [120] Packet Size: 0, Audio Pause Length: 150
00000149 4.91198602 [120] Media Catalog Number: 0x00000000000000000000000000000000
00000150 4.91202262 [120] ISRC: 0x00000000000000000000000000000000
00000151 4.91207793 [120] SubHeaderUCHAR0: 0x00, SubHeaderUCHAR1: 0x00
00000152 4.91211257 [120] SubHeaderUCHAR2: 0x00, SubHeaderUCHAR3: 0x00
00000153 4.91212514 [120] Vendor Specific: 0x00 0x00 0x00 0x00
00000154 4.91212514 [120]
00000155 4.91684893 [120]
00000156 4.91684893 [120] StarBurn_DumpCdvdWriteParametersPage(): WARNING! Size 50 less then 56!
00000157 4.91688804 [120]
00000158 4.91688804 [120] Write parameter page dump:
00000159 4.91688804 [120] Page Code: 0x05, PSBit (Page Saveable): 0
00000160 4.91692827 [120] Page Length: 50 UCHARs, Write Type: 0x02, Test Write: No, Reserved2_1: 0x00
00000161 4.91697436 [120] BUP (Buffer Underrun Protection) Enabled: No
00000162 4.91699671 [120] Track Mode: 0x04, Copy Allowed: No, FP (Is Fixed Packet): No
00000163 4.91704113 [120] Next Session: 0x00, Data Block Type: 0x08, Reserved4: 0x00
00000164 4.91707605 [120] Host Application Code: 0x00, Session Format: 0x00
00000165 4.91711097 [120] Packet Size: 0, Audio Pause Length: 150
00000166 4.91714813 [120] Media Catalog Number: 0x00000000000000000000000000000000
00000167 4.91719618 [120] ISRC: 0x00000000000000000000000000000000
00000168 4.91721853 [120] SubHeaderUCHAR0: 0x00, SubHeaderUCHAR1: 0x00
00000169 4.91725261 [120] SubHeaderUCHAR2: 0x00, SubHeaderUCHAR3: 0x00
00000170 4.91728725 [120] Vendor Specific: 0x00 0x00 0x00 0x00
00000171 4.91728725 [120]
00000172 4.91770127 [120]
00000173 4.91770127 [120] StarBurn_DumpCdvdWriteParametersPage(): WARNING! Size 50 less then 56!
00000174 4.91772697 [120]
00000175 4.91772697 [120] Write parameter page dump:
00000176 4.91772697 [120] Page Code: 0x05, PSBit (Page Saveable): 0
00000177 4.91778676 [120] Page Length: 50 UCHARs, Write Type: 0x02, Test Write: No, Reserved2_1: 0x00
00000178 4.91782224 [120] BUP (Buffer Underrun Protection) Enabled: No
00000179 4.91785660 [120] Track Mode: 0x04, Copy Allowed: No, FP (Is Fixed Packet): No
00000180 4.91789152 [120] Next Session: 0x00, Data Block Type: 0x08, Reserved4: 0x00
00000181 4.91792616 [120] Host Application Code: 0x00, Session Format: 0x00
00000182 4.91796304 [120] Packet Size: 0, Audio Pause Length: 150
00000183 4.91799935 [120] Media Catalog Number: 0x00000000000000000000000000000000
00000184 4.91803428 [120] ISRC: 0x00000000000000000000000000000000
00000185 4.91806864 [120] SubHeaderUCHAR0: 0x00, SubHeaderUCHAR1: 0x00
00000186 4.91810328 [120] SubHeaderUCHAR2: 0x00, SubHeaderUCHAR3: 0x00
00000187 4.91813876 [120] Vendor Specific: 0x00 0x00 0x00 0x00
00000188 4.91813876 [120]
00000189 4.91817452 [120]
00000190 4.91817452 [120] StarBurn_DumpCdvdWriteParametersPage(): WARNING! Size 50 less then 56!
00000191 4.91821167 [120]
00000192 4.91821167 [120] Write parameter page dump:
00000193 4.91821167 [120] Page Code: 0x05, PSBit (Page Saveable): 0
00000194 4.91824855 [120] Page Length: 50 UCHARs, Write Type: 0x03, Test Write: No, Reserved2_1: 0x00
00000195 4.91828375 [120] BUP (Buffer Underrun Protection) Enabled: No
00000196 4.91831839 [120] Track Mode: 0x04, Copy Allowed: No, FP (Is Fixed Packet): No
00000197 4.91835303 [120] Next Session: 0x00, Data Block Type: 0x01, Reserved4: 0x00
00000198 4.91838739 [120] Host Application Code: 0x00, Session Format: 0x00
00000199 4.91842455 [120] Packet Size: 0, Audio Pause Length: 150
00000200 4.91846115 [120] Media Catalog Number: 0x00000000000000000000000000000000
00000201 4.91850361 [120] ISRC: 0x00000000000000000000000000000000
00000202 4.91852316 [120] SubHeaderUCHAR0: 0x00, SubHeaderUCHAR1: 0x00
00000203 4.91855836 [120] SubHeaderUCHAR2: 0x00, SubHeaderUCHAR3: 0x00
00000204 4.91859273 [120] Vendor Specific: 0x00 0x00 0x00 0x00
00000205 4.91859273 [120]
00000206 4.92314079 [120]
00000207 4.92314079 [120] StarBurn_DumpCdvdWriteParametersPage(): WARNING! Size 50 less then 56!
00000208 4.92319247 [120]
00000209 4.92319247 [120] Write parameter page dump:
00000210 4.92319247 [120] Page Code: 0x05, PSBit (Page Saveable): 0
00000211 4.92322935 [120] Page Length: 50 UCHARs, Write Type: 0x03, Test Write: No, Reserved2_1: 0x00
00000212 4.92327377 [120] BUP (Buffer Underrun Protection) Enabled: No
00000213 4.92330897 [120] Track Mode: 0x04, Copy Allowed: No, FP (Is Fixed Packet): No
00000214 4.92334445 [120] Next Session: 0x00, Data Block Type: 0x01, Reserved4: 0x00
00000215 4.92337909 [120] Host Application Code: 0x00, Session Format: 0x00
00000216 4.92341624 [120] Packet Size: 0, Audio Pause Length: 150
00000217 4.92345284 [120] Media Catalog Number: 0x00000000000000000000000000000000
00000218 4.92348692 [120] ISRC: 0x00000000000000000000000000000000
00000219 4.92354922 [120] SubHeaderUCHAR0: 0x00, SubHeaderUCHAR1: 0x00
00000220 4.92358470 [120] SubHeaderUCHAR2: 0x00, SubHeaderUCHAR3: 0x00
00000221 4.92364169 [120] Vendor Specific: 0x00 0x00 0x00 0x00
00000222 4.92364169 [120]
00000223 4.92398671 [120]
00000224 4.92398671 [120] StarBurn_DumpCdvdWriteParametersPage(): WARNING! Size 50 less then 56!
00000225 4.92402498 [120]
00000226 4.92402498 [120] Write parameter page dump:
00000227 4.92402498 [120] Page Code: 0x05, PSBit (Page Saveable): 0
00000228 4.92406381 [120] Page Length: 50 UCHARs, Write Type: 0x03, Test Write: No, Reserved2_1: 0x00
00000229 4.92409790 [120] BUP (Buffer Underrun Protection) Enabled: No
00000230 4.92413254 [120] Track Mode: 0x04, Copy Allowed: No, FP (Is Fixed Packet): No
00000231 4.92418897 [120] Next Session: 0x00, Data Block Type: 0x01, Reserved4: 0x00
00000232 4.92422333 [120] Host Application Code: 0x00, Session Format: 0x00
00000233 4.92426021 [120] Packet Size: 0, Audio Pause Length: 150
00000234 4.92429624 [120] Media Catalog Number: 0x00000000000000000000000000000000
00000235 4.92433061 [120] ISRC: 0x00000000000000000000000000000000
00000236 4.92436497 [120] SubHeaderUCHAR0: 0x00, SubHeaderUCHAR1: 0x00
00000237 4.92439933 [120] SubHeaderUCHAR2: 0x00, SubHeaderUCHAR3: 0x00
00000238 4.92443481 [120] Vendor Specific: 0x00 0x00 0x00 0x00
00000239 4.92443481 [120]
00000240 4.92447085 [120]
00000241 4.92447085 [120] StarBurn_DumpCdvdWriteParametersPage(): WARNING! Size 50 less then 56!
00000242 4.92463483 [120]
00000243 4.92463483 [120] Write parameter page dump:
00000244 4.92463483 [120] Page Code: 0x05, PSBit (Page Saveable): 0
00000245 4.92468680 [120] Page Length: 50 UCHARs, Write Type: 0x03, Test Write: No, Reserved2_1: 0x00
00000246 4.92472228 [120] BUP (Buffer Underrun Protection) Enabled: No
00000247 4.92476893 [120] Track Mode: 0x04, Copy Allowed: No, FP (Is Fixed Packet): No
00000248 4.92496197 [120] Next Session: 0x00, Data Block Type: 0x03, Reserved4: 0x00
00000249 4.92499997 [120] Host Application Code: 0x00, Session Format: 0x00
00000250 4.92503768 [120] Packet Size: 0, Audio Pause Length: 150
00000251 4.92517457 [120] Media Catalog Number: 0x00000000000000000000000000000000
00000252 4.92521508 [120] ISRC: 0x00000000000000000000000000000000
00000253 4.92525000 [120] SubHeaderUCHAR0: 0x00, SubHeaderUCHAR1: 0x00
00000254 4.92528492 [120] SubHeaderUCHAR2: 0x00, SubHeaderUCHAR3: 0x00
00000255 4.92535029 [120] Vendor Specific: 0x00 0x00 0x00 0x00
00000256 4.92535029 [120]
00000257 5.06106698 [120]
00000258 5.06106698 [120] StarBurn_DumpCdvdWriteParametersPage(): WARNING! Size 50 less then 56!
00000259 5.06109715 [120]
00000260 5.06109715 [120] Write parameter page dump:
00000261 5.06109715 [120] Page Code: 0x05, PSBit (Page Saveable): 0
00000262 5.06126170 [120] Page Length: 50 UCHARs, Write Type: 0x03, Test Write: No, Reserved2_1: 0x00
00000263 5.06130081 [120] BUP (Buffer Underrun Protection) Enabled: No
00000264 5.06133517 [120] Track Mode: 0x04, Copy Allowed: No, FP (Is Fixed Packet): No
00000265 5.06139104 [120] Next Session: 0x00, Data Block Type: 0x03, Reserved4: 0x00
00000266 5.06142513 [120] Host Application Code: 0x00, Session Format: 0x00
00000267 5.06143770 [120] Packet Size: 0, Audio Pause Length: 150
00000268 5.06147401 [120] Media Catalog Number: 0x00000000000000000000000000000000
00000269 5.06151005 [120] ISRC: 0x00000000000000000000000000000000
00000270 5.06154413 [120] SubHeaderUCHAR0: 0x00, SubHeaderUCHAR1: 0x00
00000271 5.06174947 [120] SubHeaderUCHAR2: 0x00, SubHeaderUCHAR3: 0x00
00000272 5.06252834 [120] Vendor Specific: 0x00 0x00 0x00 0x00
00000273 5.06252834 [120]
00000274 5.06261913 [120]
00000275 5.06261913 [120] CStarBurn_CdvdBurnerGrabber::GetCdvdSpeeds(): ENTERed
00000276 5.10697225 [120]
00000277 5.10697225 [120] CStarBurn_CdvdBurnerGrabber::GetCdvdSpeeds(): Current Read 1410, Maximum Read 1410, Current Write 4226, Maximum Write 4226
00000278 5.10702282 [120]
00000279 5.10702282 [120] CStarBurn_CdvdBurnerGrabber::GetCdvdSpeeds(): EXITing with success
00000280 5.29990599 [120]
00000281 5.29990599 [120] SCSI port inquiry dump:
00000282 5.30000098 [120] SCSI ID: 7, Manager 'ROCKET', Identifier 'Port 001'
00000283 5.30001523 [120] Residual Count Supported: Yes, Number of SCSI Target(s) Supported: 15
00000284 5.30004931 [120] Single Transfer Size: 65536 UCHARs
00000285 5.30004931 [120]
00000286 5.30008758 [120]
00000287 5.30008758 [120] CStarBurn_ScsiTransportASPI::CStarBurn_ScsiTrasportASPI(): Symbolic name is '\\.\D:'
00000288 5.30352182 [120]
00000289 5.30352182 [120] SCSI device inquiry data dump:
00000290 5.30352182 [120] Device Type: 0x05, Removable: Yes
00000291 5.30357992 [120] SCSI Version: 0, Soft Reset Supported: No
00000292 5.30363580 [120] Command Queue Supported: No, Linked Commands Supported: No
00000293 5.30366988 [120] Sync Transfer Supported: No, 16-bit bus: No
00000294 5.30371178 [120] 32-bit bus: No, Relative Addressing Supported: No
00000295 5.30376878 [120] Vendor ID: 'QSI ', Product ID: 'CDRW/DVD SBW242U', Revision Level: 'US05'
00000296 5.30376878 [120]
00000297 5.30384337 [120]
00000298 5.30384337 [120] CStarBurn_ScsiDeviceGeneric::CStarBurn_ScsiDeviceGeneric(): 'QSI ' - 'CDRW/DVD SBW242U' - 'US05' sits at 1:0:0:0
00000299 5.30749299 [120]
00000300 5.30749299 [120] CDVD capabilities page dump:
00000301 5.30749299 [120] Page Code: 0x2A, Reserved1: 0x00, PSBit (Page Savable): 0
00000302 5.30757121 [120] Page Size in UCHARs: 56 UCHARs, CD-R Read: Yes, CD-E Read: Yes
00000303 5.30760585 [120] DVD-ROM Read: Yes, DVD-R Read: Yes, DVD-RAM Read: No, Reserved2: 0x00
00000304 5.30764133 [120] CD-R Write: Yes, CD-E Write: Yes, Test Write: Yes
00000305 5.30765446 [120] Reserved3: 0x00, DVD-R Write: No, DVD-RAM Write: No
00000306 5.30768911 [120] Reserved4: 0x00, Audio Play: Yes, Composite: No
00000307 5.30772347 [120] Digital Port One: No, Digital Port Two: No
00000308 5.30779610 [120] MODE2 Form1: Yes, MODE2 Form2: Yes
00000309 5.30782963 [120] Is Multi Session: Yes, CDDA: Yes, CDDAAccurate: Yes
00000310 5.30786343 [120] BUP (Buffer Underrun Protection) Supported: Yes
00000311 5.30787600 [120] RW Supported: Yes, RW Deinterleaved: No, C2Pointers: Yes
00000312 5.30790980 [120] ISRC: Yes, UPC: Yes, Read Bar Code Capable: No
00000313 5.30794417 [120] Lock: Yes, LockState: 0, Prevent Jumper: No
00000314 5.30799892 [120] Reserved5: 0x00, Eject: Yes, Loading Mechanism Type: 0x01
00000315 5.30803245 [120] Separate Volume: Yes, Separate Channel Mute: Yes
00000316 5.30806653 [120] Supports Disc Present: No, SW Slot Selection: No
00000317 5.30807910 [120] Side Change Capable: No, RW InLeadIn Readable: Yes, Reserved6: 0x00
00000318 5.30811290 [120] Maximum read speed: 1410 KBps
00000319 5.30814671 [120] Number Of Volume Level(s): 256, Buffer Size in KBs: 2048
00000320 5.30820090 [120] Current read speed: 1410 KBps
00000321 5.30823415 [120] Reserved7: 0x00
00000322 5.30826655 [120] BCK: No, RCK: No, LSBF: No, Length: 0x01
00000323 5.30827885 [120] Reserved8: 0x00
00000324 5.30831153 [120] Maximum write speed: 4226 KBps
00000325 5.30834506 [120] Current write speed: 4226 KBps
00000326 5.31574655 [120] Reserved9: 0x0001
00000327 5.31574655 [120]
00000328 5.32258010 [120]
00000329 5.32258010 [120] CStarBurn_CdvdBurnerGrabber::TestUnitReady(): ENTERed for 10 second(s)
00000330 5.33525797 [120]
00000331 5.33525797 [120] CStarBurn_CdvdBurnerGrabber::TestUnitReady(): EXITing with success
00000332 5.33858689 [120]
00000333 5.33858689 [120] CStarBurn_CdvdBurnerGrabber::GetBUP(): JustLink buffer underrun protection, supported status 0x01, enabled status 0x01
00000334 5.34663791 [120]
00000335 5.34663791 [120] CStarBurn_CdvdBurnerGrabber::GetInsertedDiscType(): ENTERed
00000336 5.35277836 [120]
00000337 5.35277836 [120] CStarBurn_CdvdBurnerGrabber::GetInsertedDiscType(): EXITing with success, disc type == 0x00000002
00000338 5.35302420 [120]
00000339 5.35302420 [120] CStarBurn_CdvdBurnerGrabber::SendOPC(): ENTERed
00000340 7.91247631 [120]
00000341 7.91247631 [120] CStarBurn_CdvdBurnerGrabber::SendOPC(): EXITing with success
00000342 7.91366584 [120] StarWave_UncompressedFileSupportedIs(): CreateFileA( '', GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL ) failed, status 3 ( 0x3 )
00000343 7.91774793 [120] CStarWave_SyncFileReader::Open(): fopen( '', 'rb' ) failed, status 2 ( 0x2 )
00000344 7.92158696 [120] CStarWave_SyncFileReader::Open(): <<< *** EXITing with failure, status 2 ( 0x2 )
00000345 7.92578805 [120] StarWave_CompressedFileReaderObjectCreate(): l__PSTARWAVE_COMPRESSED_FILE_READER_OBJECT->m__PCStarWave_SyncFileReader->Open( '' ) failed, status -2147024894 ( 0x80070002 )
00000346 7.92974889 [120] StarWave_CompressedFileSupportedIs(): StarWave_CompressedFileReaderObjectCreate( 0x00138634, '' ) failed, status -2147024894 ( 0x80070002 )
00000347 7.93361559 [120]
00000348 7.93361559 [120] CStarBurn_DiskFile::CStarBurn_DiskFile(): CreateFile( '' ) failed, status 3!!!
00000349 7.93585889 [120] CStarBurn_DiskFile::CStarBurn_DiskFile(): EXITing with failure, exception number 0x00000005, exception text 'CStarBurn_DiskFile::CStarBurn_DiskFile(): CreateFile( '' ) failed, status 3!!!'!!!


Top
 Profile  
 
 Post subject: Re: Still Can't get it to work
PostPosted: Wed Sep 22, 2004 1:37 pm 
Offline

Joined: Mon May 31, 2004 6:22 am
Posts: 134
Hi,

It seems that
Disk_Layout_Entry(Number_of_Tracks) is an array [0..Number_of_Tracks].
But you are initializing this array from 1 to Number_of_Tracks.
That is why you have got such error - "can't open a file".

Correct this : Disk_Layout_Entry(1 to Number_of_Tracks)

bbriggstkd wrote:
Public Type DAO_Disk_Layout
NumberOfEntries As Long
Disk_Layout_Entry(Number_of_Tracks) As DAO_Disk_Layout_Entry
End Type


For x = 1 To mvarFiles.Count
Disc_Layout.Disk_Layout_Entry(x).TrackName = mvarFiles.Item(x).FileName
Next x
Disc_Layout.NumberOfEntries = mvarFiles.Count

Number_of_tracks is set to 100

StarWave_UncompressedFileSupportedIs(): CreateFileA( '', GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL ) failed, status 3 ( 0x3 )


Top
 Profile  
 
 Post subject: Just to make sure I'm clear
PostPosted: Wed Sep 22, 2004 2:33 pm 
Offline

Joined: Mon Sep 06, 2004 1:45 pm
Posts: 118
I just want to restate this to make sure I understand. You are saying that I need to have a 1 based array instead of a 0 based array. Is that correct?


Top
 Profile  
 
 Post subject: Re: Just to make sure I'm clear
PostPosted: Wed Sep 22, 2004 2:50 pm 
Offline

Joined: Mon May 31, 2004 6:22 am
Posts: 134
bbriggstkd wrote:
I just want to restate this to make sure I understand. You are saying that I need to have a 1 based array instead of a 0 based array. Is that correct?


Yes, it should be either 1-based array or 0-based but with initalization of element with index 0 and with array ranges [0..99].


Top
 Profile  
 
 Post subject: Now I'm really confused
PostPosted: Wed Sep 22, 2004 7:52 pm 
Offline

Joined: Mon Sep 06, 2004 1:45 pm
Posts: 118
By default VB uses 0 based arrays [0..99]. That is what I have declared here. You are saying I need a 1 based array [1..100]. Am I correct.


Top
 Profile  
 
 Post subject: Still Not Working
PostPosted: Thu Sep 23, 2004 12:13 am 
Offline

Joined: Mon Sep 06, 2004 1:45 pm
Posts: 118
I'm still having problems. I found where I was not passing in the file names like I thought I was, so before it was trying to open a blank file name. I think I'm getting a different error message now.

Here is the debug info.

00000000 0.00000000 [3904]
00000001 0.00000000 [3904] WnASPI32 ASPI Layer for Windows NT/2000/XP/2003 Version 4.1.0 ( 0x20040910 )
00000002 0.00000000 [3904] Copyright (c) Rocket Division Software 2001-2004. All rights reserved.
00000003 0.00000000 [3904]
00000004 0.01125813 [3904]
00000005 0.01125813 [3904] StarBurn CD/DVD Burning, Grabbing and Mastering Toolkit for Windows 95/98/Me/NT/2000/XP/2003 Version 4.1.0 ( 0x20040910 )
00000006 0.01125813 [3904] Copyright (c) Rocket Division Software 2001-2004. All rights reserved.
00000007 0.01125813 [3904]
00000008 0.01125813 [3904]
00000009 0.01125813 [3904] This is FREE version of StarBurn SDK and it should be distributed with FREE software only!
00000010 0.01125813 [3904] If you've noticed somebody using it in non-FREE software please report software piracy to piracy@rocketdivison.com
00000011 3.42534400 [3904]
00000012 3.42534400 [3904] ** FREE ** ** FREE ** ** FREE ** ** FREE ** ** FREE ** ** FREE ** ** FREE ** ** FREE ** ** FREE **
00000013 3.42534400 [3904]
00000014 3.42715010 [3904]
00000015 3.42715010 [3904] StarWave Media Streaming Toolkit for Windows 95/98/Me/NT/2000/XP/2003 Version 4.1.0 ( 0x20040910 )
00000016 3.42715010 [3904] Copyright (c) Rocket Division Software 2001-2004. All rights reserved.
00000017 3.42715010 [3904]
00000018 3.44444587 [3904]
00000019 3.44444587 [3904] SCSI port inquiry dump:
00000020 3.44450566 [3904] SCSI ID: 7, Manager 'ROCKET', Identifier 'Port 001'
00000021 3.44454142 [3904] Residual Count Supported: Yes, Number of SCSI Target(s) Supported: 15
00000022 3.44457578 [3904] Single Transfer Size: 65536 UCHARs
00000023 3.44457578 [3904]
00000024 3.44461321 [3904]
00000025 3.44461321 [3904] CStarBurn_ScsiTransportASPI::CStarBurn_ScsiTrasportASPI(): Symbolic name is '\\.\D:'
00000026 3.44734764 [3904]
00000027 3.44734764 [3904] SCSI device inquiry data dump:
00000028 3.44734764 [3904] Device Type: 0x05, Removable: Yes
00000029 3.44740128 [3904] SCSI Version: 0, Soft Reset Supported: No
00000030 3.44743564 [3904] Command Queue Supported: No, Linked Commands Supported: No
00000031 3.44749235 [3904] Sync Transfer Supported: No, 16-bit bus: No
00000032 3.44753565 [3904] 32-bit bus: No, Relative Addressing Supported: No
00000033 3.44757253 [3904] Vendor ID: 'QSI ', Product ID: 'CDRW/DVD SBW242U', Revision Level: 'US05'
00000034 3.44757253 [3904]
00000035 3.44764097 [3904]
00000036 3.44764097 [3904] CStarBurn_ScsiDeviceGeneric::CStarBurn_ScsiDeviceGeneric(): 'QSI ' - 'CDRW/DVD SBW242U' - 'US05' sits at 1:0:0:0
00000037 3.45140318 [3904]
00000038 3.45140318 [3904] CDVD capabilities page dump:
00000039 3.45140318 [3904] Page Code: 0x2A, Reserved1: 0x00, PSBit (Page Savable): 0
00000040 3.45146408 [3904] Page Size in UCHARs: 56 UCHARs, CD-R Read: Yes, CD-E Read: Yes
00000041 3.45152247 [3904] DVD-ROM Read: Yes, DVD-R Read: Yes, DVD-RAM Read: No, Reserved2: 0x00
00000042 3.45155795 [3904] CD-R Write: Yes, CD-E Write: Yes, Test Write: Yes
00000043 3.45157108 [3904] Reserved3: 0x00, DVD-R Write: No, DVD-RAM Write: No
00000044 3.45160544 [3904] Reserved4: 0x00, Audio Play: Yes, Composite: No
00000045 3.45163952 [3904] Digital Port One: No, Digital Port Two: No
00000046 3.45167305 [3904] MODE2 Form1: Yes, MODE2 Form2: Yes
00000047 3.45172836 [3904] Is Multi Session: Yes, CDDA: Yes, CDDAAccurate: Yes
00000048 3.45176272 [3904] BUP (Buffer Underrun Protection) Supported: Yes
00000049 3.45177530 [3904] RW Supported: Yes, RW Deinterleaved: No, C2Pointers: Yes
00000050 3.45180938 [3904] ISRC: Yes, UPC: Yes, Read Bar Code Capable: No
00000051 3.45184430 [3904] Lock: Yes, LockState: 0, Prevent Jumper: No
00000052 3.45187894 [3904] Reserved5: 0x00, Eject: Yes, Loading Mechanism Type: 0x01
00000053 3.45193370 [3904] Separate Volume: Yes, Separate Channel Mute: Yes
00000054 3.45196778 [3904] Supports Disc Present: No, SW Slot Selection: No
00000055 3.45198007 [3904] Side Change Capable: No, RW InLeadIn Readable: Yes, Reserved6: 0x00
00000056 3.45201387 [3904] Maximum read speed: 1410 KBps
00000057 3.45204740 [3904] Number Of Volume Level(s): 256, Buffer Size in KBs: 2048
00000058 3.45208176 [3904] Current read speed: 1410 KBps
00000059 3.45213568 [3904] Reserved7: 0x00
00000060 3.45216836 [3904] BCK: No, RCK: No, LSBF: No, Length: 0x01
00000061 3.45218037 [3904] Reserved8: 0x00
00000062 3.45221334 [3904] Maximum write speed: 4226 KBps
00000063 3.45224658 [3904] Current write speed: 4226 KBps
00000064 3.45227955 [3904] Reserved9: 0x0001
00000065 3.45227955 [3904]
00000066 3.46753149 [3904]
00000067 3.46753149 [3904] CStarBurn_CdvdBurnerGrabber::GetSupportedMediaFormatsEx(): DVD+RW page size in UCHAR(s): 12
00000068 3.47419518 [3904]
00000069 3.47419518 [3904] CStarBurn_CdvdBurnerGrabber::GetSupportedMediaFormatsEx(): DVD+R page size in UCHAR(s): 12
00000070 3.48473647 [3904]
00000071 3.48473647 [3904] StarBurn_DumpCdvdWriteParametersPage(): WARNING! Size 50 less then 56!
00000072 3.48479541 [3904]
00000073 3.48479541 [3904] Write parameter page dump:
00000074 3.48479541 [3904] Page Code: 0x05, PSBit (Page Saveable): 0
00000075 3.48483564 [3904] Page Length: 50 UCHARs, Write Type: 0x03, Test Write: No, Reserved2_1: 0x00
00000076 3.48486973 [3904] BUP (Buffer Underrun Protection) Enabled: No
00000077 3.48491582 [3904] Track Mode: 0x04, Copy Allowed: No, FP (Is Fixed Packet): No
00000078 3.48493873 [3904] Next Session: 0x00, Data Block Type: 0x03, Reserved4: 0x00
00000079 3.48497337 [3904] Host Application Code: 0x00, Session Format: 0x00
00000080 3.48500717 [3904] Packet Size: 0, Audio Pause Length: 150
00000081 3.48504377 [3904] Media Catalog Number: 0x00000000000000000000000000000000
00000082 3.48508009 [3904] ISRC: 0x00000000000000000000000000000000
00000083 3.48512479 [3904] SubHeaderUCHAR0: 0x00, SubHeaderUCHAR1: 0x00
00000084 3.48514713 [3904] SubHeaderUCHAR2: 0x00, SubHeaderUCHAR3: 0x00
00000085 3.48518094 [3904] Vendor Specific: 0x00 0x00 0x00 0x00
00000086 3.48518094 [3904]
00000087 3.48521726 [3904]
00000088 3.48521726 [3904] StarBurn_DumpCdvdWriteParametersPage(): WARNING! Size 50 less then 56!
00000089 3.48525357 [3904]
00000090 3.48525357 [3904] Write parameter page dump:
00000091 3.48525357 [3904] Page Code: 0x05, PSBit (Page Saveable): 0
00000092 3.48529213 [3904] Page Length: 50 UCHARs, Write Type: 0x01, Test Write: No, Reserved2_1: 0x00
00000093 3.48533738 [3904] BUP (Buffer Underrun Protection) Enabled: No
00000094 3.48535973 [3904] Track Mode: 0x04, Copy Allowed: No, FP (Is Fixed Packet): No
00000095 3.48539409 [3904] Next Session: 0x00, Data Block Type: 0x08, Reserved4: 0x00
00000096 3.48542846 [3904] Host Application Code: 0x00, Session Format: 0x00
00000097 3.48546226 [3904] Packet Size: 0, Audio Pause Length: 150
00000098 3.48549830 [3904] Media Catalog Number: 0x00000000000000000000000000000000
00000099 3.48554551 [3904] ISRC: 0x00000000000000000000000000000000
00000100 3.48556758 [3904] SubHeaderUCHAR0: 0x00, SubHeaderUCHAR1: 0x00
00000101 3.48560166 [3904] SubHeaderUCHAR2: 0x00, SubHeaderUCHAR3: 0x00
00000102 3.48563602 [3904] Vendor Specific: 0x00 0x00 0x00 0x00
00000103 3.48563602 [3904]
00000104 3.48954267 [3904]
00000105 3.48954267 [3904] StarBurn_DumpCdvdWriteParametersPage(): WARNING! Size 50 less then 56!
00000106 3.48959630 [3904]
00000107 3.48959630 [3904] Write parameter page dump:
00000108 3.48959630 [3904] Page Code: 0x05, PSBit (Page Saveable): 0
00000109 3.48965721 [3904] Page Length: 50 UCHARs, Write Type: 0x01, Test Write: No, Reserved2_1: 0x00
00000110 3.48967089 [3904] BUP (Buffer Underrun Protection) Enabled: No
00000111 3.48970526 [3904] Track Mode: 0x04, Copy Allowed: No, FP (Is Fixed Packet): No
00000112 3.48974046 [3904] Next Session: 0x00, Data Block Type: 0x08, Reserved4: 0x00
00000113 3.48977538 [3904] Host Application Code: 0x00, Session Format: 0x00
00000114 3.48981924 [3904] Packet Size: 0, Audio Pause Length: 150
00000115 3.48987986 [3904] Media Catalog Number: 0x00000000000000000000000000000000
00000116 3.48989271 [3904] ISRC: 0x00000000000000000000000000000000
00000117 3.48992623 [3904] SubHeaderUCHAR0: 0x00, SubHeaderUCHAR1: 0x00
00000118 3.48996087 [3904] SubHeaderUCHAR2: 0x00, SubHeaderUCHAR3: 0x00
00000119 3.48999552 [3904] Vendor Specific: 0x00 0x00 0x00 0x00
00000120 3.48999552 [3904]
00000121 3.49038691 [3904]
00000122 3.49038691 [3904] StarBurn_DumpCdvdWriteParametersPage(): WARNING! Size 50 less then 56!
00000123 3.49084870 [3904]
00000124 3.49084870 [3904] Write parameter page dump:
00000125 3.49084870 [3904] Page Code: 0x05, PSBit (Page Saveable): 0
00000126 3.49088027 [3904] Page Length: 50 UCHARs, Write Type: 0x01, Test Write: No, Reserved2_1: 0x00
00000127 3.49091463 [3904] BUP (Buffer Underrun Protection) Enabled: No
00000128 3.49094871 [3904] Track Mode: 0x04, Copy Allowed: No, FP (Is Fixed Packet): No
00000129 3.49100179 [3904] Next Session: 0x00, Data Block Type: 0x08, Reserved4: 0x00
00000130 3.49103643 [3904] Host Application Code: 0x00, Session Format: 0x00
00000131 3.49108392 [3904] Packet Size: 0, Audio Pause Length: 150
00000132 3.49110627 [3904] Media Catalog Number: 0x00000000000000000000000000000000
00000133 3.49114259 [3904] ISRC: 0x00000000000000000000000000000000
00000134 3.49117639 [3904] SubHeaderUCHAR0: 0x00, SubHeaderUCHAR1: 0x00
00000135 3.49121020 [3904] SubHeaderUCHAR2: 0x00, SubHeaderUCHAR3: 0x00
00000136 3.49124372 [3904] Vendor Specific: 0x00 0x00 0x00 0x00
00000137 3.49124372 [3904]
00000138 3.49129177 [3904]
00000139 3.49129177 [3904] StarBurn_DumpCdvdWriteParametersPage(): WARNING! Size 50 less then 56!
00000140 3.49131608 [3904]
00000141 3.49131608 [3904] Write parameter page dump:
00000142 3.49131608 [3904] Page Code: 0x05, PSBit (Page Saveable): 0
00000143 3.49135379 [3904] Page Length: 50 UCHARs, Write Type: 0x02, Test Write: No, Reserved2_1: 0x00
00000144 3.49138759 [3904] BUP (Buffer Underrun Protection) Enabled: No
00000145 3.49142140 [3904] Track Mode: 0x04, Copy Allowed: No, FP (Is Fixed Packet): No
00000146 3.49145520 [3904] Next Session: 0x00, Data Block Type: 0x08, Reserved4: 0x00
00000147 3.49150018 [3904] Host Application Code: 0x00, Session Format: 0x00
00000148 3.49152253 [3904] Packet Size: 0, Audio Pause Length: 150
00000149 3.49155884 [3904] Media Catalog Number: 0x00000000000000000000000000000000
00000150 3.49159544 [3904] ISRC: 0x00000000000000000000000000000000
00000151 3.49162896 [3904] SubHeaderUCHAR0: 0x00, SubHeaderUCHAR1: 0x00
00000152 3.49166249 [3904] SubHeaderUCHAR2: 0x00, SubHeaderUCHAR3: 0x00
00000153 3.49172674 [3904] Vendor Specific: 0x00 0x00 0x00 0x00
00000154 3.49172674 [3904]
00000155 3.49630330 [3904]
00000156 3.49630330 [3904] StarBurn_DumpCdvdWriteParametersPage(): WARNING! Size 50 less then 56!
00000157 3.49633152 [3904]
00000158 3.49633152 [3904] Write parameter page dump:
00000159 3.49633152 [3904] Page Code: 0x05, PSBit (Page Saveable): 0
00000160 3.49637175 [3904] Page Length: 50 UCHARs, Write Type: 0x02, Test Write: No, Reserved2_1: 0x00
00000161 3.49640639 [3904] BUP (Buffer Underrun Protection) Enabled: No
00000162 3.49644969 [3904] Track Mode: 0x04, Copy Allowed: No, FP (Is Fixed Packet): No
00000163 3.49650556 [3904] Next Session: 0x00, Data Block Type: 0x08, Reserved4: 0x00
00000164 3.49654020 [3904] Host Application Code: 0x00, Session Format: 0x00
00000165 3.49655249 [3904] Packet Size: 0, Audio Pause Length: 150
00000166 3.49658881 [3904] Media Catalog Number: 0x00000000000000000000000000000000
00000167 3.49662513 [3904] ISRC: 0x00000000000000000000000000000000
00000168 3.49665865 [3904] SubHeaderUCHAR0: 0x00, SubHeaderUCHAR1: 0x00
00000169 3.49671369 [3904] SubHeaderUCHAR2: 0x00, SubHeaderUCHAR3: 0x00
00000170 3.49675922 [3904] Vendor Specific: 0x00 0x00 0x00 0x00
00000171 3.49675922 [3904]
00000172 3.49711318 [3904]
00000173 3.49711318 [3904] StarBurn_DumpCdvdWriteParametersPage(): WARNING! Size 50 less then 56!
00000174 3.49715257 [3904]
00000175 3.49715257 [3904] Write parameter page dump:
00000176 3.49715257 [3904] Page Code: 0x05, PSBit (Page Saveable): 0
00000177 3.49719084 [3904] Page Length: 50 UCHARs, Write Type: 0x02, Test Write: No, Reserved2_1: 0x00
00000178 3.49722493 [3904] BUP (Buffer Underrun Protection) Enabled: No
00000179 3.49728080 [3904] Track Mode: 0x04, Copy Allowed: No, FP (Is Fixed Packet): No
00000180 3.49731572 [3904] Next Session: 0x00, Data Block Type: 0x08, Reserved4: 0x00
00000181 3.49734980 [3904] Host Application Code: 0x00, Session Format: 0x00
00000182 3.49736265 [3904] Packet Size: 0, Audio Pause Length: 150
00000183 3.49739897 [3904] Media Catalog Number: 0x00000000000000000000000000000000
00000184 3.49743529 [3904] ISRC: 0x00000000000000000000000000000000
00000185 3.49749060 [3904] SubHeaderUCHAR0: 0x00, SubHeaderUCHAR1: 0x00
00000186 3.49752496 [3904] SubHeaderUCHAR2: 0x00, SubHeaderUCHAR3: 0x00
00000187 3.49756016 [3904] Vendor Specific: 0x00 0x00 0x00 0x00
00000188 3.49756016 [3904]
00000189 3.49757357 [3904]
00000190 3.49757357 [3904] StarBurn_DumpCdvdWriteParametersPage(): WARNING! Size 50 less then 56!
00000191 3.49761017 [3904]
00000192 3.49761017 [3904] Write parameter page dump:
00000193 3.49761017 [3904] Page Code: 0x05, PSBit (Page Saveable): 0
00000194 3.49764872 [3904] Page Length: 50 UCHARs, Write Type: 0x03, Test Write: No, Reserved2_1: 0x00
00000195 3.49770460 [3904] BUP (Buffer Underrun Protection) Enabled: No
00000196 3.49773952 [3904] Track Mode: 0x04, Copy Allowed: No, FP (Is Fixed Packet): No
00000197 3.49777444 [3904] Next Session: 0x00, Data Block Type: 0x01, Reserved4: 0x00
00000198 3.49778785 [3904] Host Application Code: 0x00, Session Format: 0x00
00000199 3.49782221 [3904] Packet Size: 0, Audio Pause Length: 150
00000200 3.49785881 [3904] Media Catalog Number: 0x00000000000000000000000000000000
00000201 3.49791636 [3904] ISRC: 0x00000000000000000000000000000000
00000202 3.49795100 [3904] SubHeaderUCHAR0: 0x00, SubHeaderUCHAR1: 0x00
00000203 3.49798564 [3904] SubHeaderUCHAR2: 0x00, SubHeaderUCHAR3: 0x00
00000204 3.49799821 [3904] Vendor Specific: 0x00 0x00 0x00 0x00
00000205 3.49799821 [3904]
00000206 3.50189926 [3904]
00000207 3.50189926 [3904] StarBurn_DumpCdvdWriteParametersPage(): WARNING! Size 50 less then 56!
00000208 3.50192888 [3904]
00000209 3.50192888 [3904] Write parameter page dump:
00000210 3.50192888 [3904] Page Code: 0x05, PSBit (Page Saveable): 0
00000211 3.50199956 [3904] Page Length: 50 UCHARs, Write Type: 0x03, Test Write: No, Reserved2_1: 0x00
00000212 3.50203531 [3904] BUP (Buffer Underrun Protection) Enabled: No
00000213 3.50204761 [3904] Track Mode: 0x04, Copy Allowed: No, FP (Is Fixed Packet): No
00000214 3.50208197 [3904] Next Session: 0x00, Data Block Type: 0x01, Reserved4: 0x00
00000215 3.50211633 [3904] Host Application Code: 0x00, Session Format: 0x00
00000216 3.50215013 [3904] Packet Size: 0, Audio Pause Length: 150
00000217 3.50220992 [3904] Media Catalog Number: 0x00000000000000000000000000000000
00000218 3.50224372 [3904] ISRC: 0x00000000000000000000000000000000
00000219 3.50225573 [3904] SubHeaderUCHAR0: 0x00, SubHeaderUCHAR1: 0x00
00000220 3.50228954 [3904] SubHeaderUCHAR2: 0x00, SubHeaderUCHAR3: 0x00
00000221 3.50232362 [3904] Vendor Specific: 0x00 0x00 0x00 0x00
00000222 3.50232362 [3904]
00000223 3.50272311 [3904]
00000224 3.50272311 [3904] StarBurn_DumpCdvdWriteParametersPage(): WARNING! Size 50 less then 56!
00000225 3.50278625 [3904]
00000226 3.50278625 [3904] Write parameter page dump:
00000227 3.50278625 [3904] Page Code: 0x05, PSBit (Page Saveable): 0
00000228 3.50282312 [3904] Page Length: 50 UCHARs, Write Type: 0x03, Test Write: No, Reserved2_1: 0x00
00000229 3.50285777 [3904] BUP (Buffer Underrun Protection) Enabled: No
00000230 3.50287034 [3904] Track Mode: 0x04, Copy Allowed: No, FP (Is Fixed Packet): No
00000231 3.50290470 [3904] Next Session: 0x00, Data Block Type: 0x01, Reserved4: 0x00
00000232 3.50293878 [3904] Host Application Code: 0x00, Session Format: 0x00
00000233 3.50299661 [3904] Packet Size: 0, Audio Pause Length: 150
00000234 3.50303265 [3904] Media Catalog Number: 0x00000000000000000000000000000000
00000235 3.50306645 [3904] ISRC: 0x00000000000000000000000000000000
00000236 3.50307846 [3904] SubHeaderUCHAR0: 0x00, SubHeaderUCHAR1: 0x00
00000237 3.50311255 [3904] SubHeaderUCHAR2: 0x00, SubHeaderUCHAR3: 0x00
00000238 3.50314635 [3904] Vendor Specific: 0x00 0x00 0x00 0x00
00000239 3.50314635 [3904]
00000240 3.50320418 [3904]
00000241 3.50320418 [3904] StarBurn_DumpCdvdWriteParametersPage(): WARNING! Size 50 less then 56!
00000242 3.50324105 [3904]
00000243 3.50324105 [3904] Write parameter page dump:
00000244 3.50324105 [3904] Page Code: 0x05, PSBit (Page Saveable): 0
00000245 3.50327821 [3904] Page Length: 50 UCHARs, Write Type: 0x03, Test Write: No, Reserved2_1: 0x00
00000246 3.50329162 [3904] BUP (Buffer Underrun Protection) Enabled: No
00000247 3.50332570 [3904] Track Mode: 0x04, Copy Allowed: No, FP (Is Fixed Packet): No
00000248 3.50336062 [3904] Next Session: 0x00, Data Block Type: 0x03, Reserved4: 0x00
00000249 3.50341650 [3904] Host Application Code: 0x00, Session Format: 0x00
00000250 3.50345337 [3904] Packet Size: 0, Audio Pause Length: 150
00000251 3.50348913 [3904] Media Catalog Number: 0x00000000000000000000000000000000
00000252 3.50350170 [3904] ISRC: 0x00000000000000000000000000000000
00000253 3.50353551 [3904] SubHeaderUCHAR0: 0x00, SubHeaderUCHAR1: 0x00
00000254 3.50356931 [3904] SubHeaderUCHAR2: 0x00, SubHeaderUCHAR3: 0x00
00000255 3.50365982 [3904] Vendor Specific: 0x00 0x00 0x00 0x00
00000256 3.50365982 [3904]
00000257 3.50824895 [3904]
00000258 3.50824895 [3904] StarBurn_DumpCdvdWriteParametersPage(): WARNING! Size 50 less then 56!
00000259 3.50828779 [3904]
00000260 3.50828779 [3904] Write parameter page dump:
00000261 3.50828779 [3904] Page Code: 0x05, PSBit (Page Saveable): 0
00000262 3.50832801 [3904] Page Length: 50 UCHARs, Write Type: 0x03, Test Write: No, Reserved2_1: 0x00
00000263 3.50836266 [3904] BUP (Buffer Underrun Protection) Enabled: No
00000264 3.50839730 [3904] Track Mode: 0x04, Copy Allowed: No, FP (Is Fixed Packet): No
00000265 3.50845512 [3904] Next Session: 0x00, Data Block Type: 0x03, Reserved4: 0x00
00000266 3.50848977 [3904] Host Application Code: 0x00, Session Format: 0x00
00000267 3.50852664 [3904] Packet Size: 0, Audio Pause Length: 150
00000268 3.50856268 [3904] Media Catalog Number: 0x00000000000000000000000000000000
00000269 3.50859648 [3904] ISRC: 0x00000000000000000000000000000000
00000270 3.50863001 [3904] SubHeaderUCHAR0: 0x00, SubHeaderUCHAR1: 0x00
00000271 3.50866409 [3904] SubHeaderUCHAR2: 0x00, SubHeaderUCHAR3: 0x00
00000272 3.50927394 [3904] Vendor Specific: 0x00 0x00 0x00 0x00
00000273 3.50927394 [3904]
00000274 3.50936390 [3904]
00000275 3.50936390 [3904] CStarBurn_CdvdBurnerGrabber::GetCdvdSpeeds(): ENTERed
00000276 3.51094818 [3904]
00000277 3.51094818 [3904] CStarBurn_CdvdBurnerGrabber::GetCdvdSpeeds(): Current Read 1410, Maximum Read 1410, Current Write 4226, Maximum Write 4226
00000278 3.51099455 [3904]
00000279 3.51099455 [3904] CStarBurn_CdvdBurnerGrabber::GetCdvdSpeeds(): EXITing with success
00000280 3.54038656 [3904]
00000281 3.54038656 [3904] SCSI port inquiry dump:
00000282 3.54047204 [3904] SCSI ID: 7, Manager 'ROCKET', Identifier 'Port 001'
00000283 3.54092685 [3904] Residual Count Supported: Yes, Number of SCSI Target(s) Supported: 15
00000284 3.54098775 [3904] Single Transfer Size: 65536 UCHARs
00000285 3.54098775 [3904]
00000286 3.54111794 [3904]
00000287 3.54111794 [3904] CStarBurn_ScsiTransportASPI::CStarBurn_ScsiTrasportASPI(): Symbolic name is '\\.\D:'
00000288 3.54448680 [3904]
00000289 3.54448680 [3904] SCSI device inquiry data dump:
00000290 3.54448680 [3904] Device Type: 0x05, Removable: Yes
00000291 3.54454658 [3904] SCSI Version: 0, Soft Reset Supported: No
00000292 3.54458095 [3904] Command Queue Supported: No, Linked Commands Supported: No
00000293 3.54461475 [3904] Sync Transfer Supported: No, 16-bit bus: No
00000294 3.54464883 [3904] 32-bit bus: No, Relative Addressing Supported: No
00000295 3.54471644 [3904] Vendor ID: 'QSI ', Product ID: 'CDRW/DVD SBW242U', Revision Level: 'US05'
00000296 3.54471644 [3904]
00000297 3.54479270 [3904]
00000298 3.54479270 [3904] CStarBurn_ScsiDeviceGeneric::CStarBurn_ScsiDeviceGeneric(): 'QSI ' - 'CDRW/DVD SBW242U' - 'US05' sits at 1:0:0:0
00000299 3.54852837 [3904]
00000300 3.54852837 [3904] CDVD capabilities page dump:
00000301 3.54852837 [3904] Page Code: 0x2A, Reserved1: 0x00, PSBit (Page Savable): 0
00000302 3.54858872 [3904] Page Size in UCHARs: 56 UCHARs, CD-R Read: Yes, CD-E Read: Yes
00000303 3.54862476 [3904] DVD-ROM Read: Yes, DVD-R Read: Yes, DVD-RAM Read: No, Reserved2: 0x00
00000304 3.54865940 [3904] CD-R Write: Yes, CD-E Write: Yes, Test Write: Yes
00000305 3.54871667 [3904] Reserved3: 0x00, DVD-R Write: No, DVD-RAM Write: No
00000306 3.54876109 [3904] Reserved4: 0x00, Audio Play: Yes, Composite: No
00000307 3.54879573 [3904] Digital Port One: No, Digital Port Two: No
00000308 3.54880858 [3904] MODE2 Form1: Yes, MODE2 Form2: Yes
00000309 3.54884294 [3904] Is Multi Session: Yes, CDDA: Yes, CDDAAccurate: Yes
00000310 3.54887786 [3904] BUP (Buffer Underrun Protection) Supported: Yes
00000311 3.54893457 [3904] RW Supported: Yes, RW Deinterleaved: No, C2Pointers: Yes
00000312 3.54897005 [3904] ISRC: Yes, UPC: Yes, Read Bar Code Capable: No
00000313 3.54900497 [3904] Lock: Yes, LockState: 0, Prevent Jumper: No
00000314 3.54901782 [3904] Reserved5: 0x00, Eject: Yes, Loading Mechanism Type: 0x01
00000315 3.54905218 [3904] Separate Volume: Yes, Separate Channel Mute: Yes
00000316 3.54908627 [3904] Supports Disc Present: No, SW Slot Selection: No
00000317 3.54914270 [3904] Side Change Capable: No, RW InLeadIn Readable: Yes, Reserved6: 0x00
00000318 3.54917790 [3904] Maximum read speed: 1410 KBps
00000319 3.54921198 [3904] Number Of Volume Level(s): 256, Buffer Size in KBs: 2048
00000320 3.54922483 [3904] Current read speed: 1410 KBps
00000321 3.54925808 [3904] Reserved7: 0x00
00000322 3.54929188 [3904] BCK: No, RCK: No, LSBF: No, Length: 0x01
00000323 3.54934636 [3904] Reserved8: 0x00
00000324 3.54938016 [3904] Maximum write speed: 4226 KBps
00000325 3.54941368 [3904] Current write speed: 4226 KBps
00000326 3.54942625 [3904] Reserved9: 0x0001
00000327 3.54942625 [3904]
00000328 3.56371159 [3904]
00000329 3.56371159 [3904] CStarBurn_CdvdBurnerGrabber::TestUnitReady(): ENTERed for 10 second(s)
00000330 3.57459090 [3904]
00000331 3.57459090 [3904] CStarBurn_CdvdBurnerGrabber::TestUnitReady(): EXITing with success
00000332 3.57818438 [3904]
00000333 3.57818438 [3904] CStarBurn_CdvdBurnerGrabber::GetBUP(): JustLink buffer underrun protection, supported status 0x01, enabled status 0x01
00000334 3.58636223 [3904]
00000335 3.58636223 [3904] CStarBurn_CdvdBurnerGrabber::GetInsertedDiscType(): ENTERed
00000336 3.59241580 [3904]
00000337 3.59241580 [3904] CStarBurn_CdvdBurnerGrabber::GetInsertedDiscType(): EXITing with success, disc type == 0x00000002
00000338 3.59268594 [3904]
00000339 3.59268594 [3904] CStarBurn_CdvdBurnerGrabber::SendOPC(): ENTERed
00000340 5.93351501 [3904]
00000341 5.93351501 [3904] CStarBurn_CdvdBurnerGrabber::SendOPC(): EXITing with success
00000342 5.93615278 [3904] StarWave_UncompressedFileSupportedIs(): CreateFileA( 'C:\TRACK01.WAV ', GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL ) failed, status 3 ( 0x3 )
00000343 5.94103468 [3904] CStarWave_SyncFileReader::Open(): fopen( 'C:\TRACK01.WAV ', 'rb' ) failed, status 2 ( 0x2 )
00000344 5.94673010 [3904] CStarWave_SyncFileReader::Open(): <<< *** EXITing with failure, status 2 ( 0x2 )
00000345 5.95156843 [3904] StarWave_CompressedFileReaderObjectCreate(): l__PSTARWAVE_COMPRESSED_FILE_READER_OBJECT->m__PCStarWave_SyncFileReader->Open( 'C:\TRACK01.WAV ' ) failed, status -2147024894 ( 0x80070002 )
00000346 5.95678278 [3904] StarWave_CompressedFileSupportedIs(): StarWave_CompressedFileReaderObjectCreate( 0x00138748, 'C:\TRACK01.WAV ' ) failed, status -2147024894 ( 0x80070002 )
00000347 5.96218039 [3904]
00000348 5.96218039 [3904] CStarBurn_DiskFile::CStarBurn_DiskFile(): CreateFile( 'c:\track01.wav ' ) failed, status 3!!!
00000349 5.96226811 [3904] CStarBurn_DiskFile::CStarBurn_DiskFile(): EXITing with failure, exception number 0x00000005, exception text 'CStarBurn_DiskFile::CStarBurn_DiskFile(): CreateFile( 'c:\track01.wav ' ) failed, status 3!!!'!!!


You had posted earlier that my wave files had a different size header than what you were expecting, is that the case here? I'll try to find some wave files that can be accepted.

I have another question. When I run my program I get a runtime error instead of your dll returning an error code. Am I doing something wrong? I've got On Error Resume Next and break on unhandled errors. I should be able to trap the error.


Top
 Profile  
 
 Post subject: Re: Still Not Working
PostPosted: Thu Sep 23, 2004 6:30 am 
Offline

Joined: Mon May 31, 2004 6:22 am
Posts: 134
Hi,

You see, C++ uses zero-terminated strings.
You need to finish you end of file name with 0.
Because you are passing 'C:\TRACK01.WAV '
with a lot of spaces after the name.

bbriggstkd wrote:
I'm still having problems. I found where I was not passing in the file names like I thought I was, so before it was trying to open a blank file name. I think I'm getting a different error message now.

StarWave_UncompressedFileSupportedIs(): CreateFileA( 'C:\TRACK01.WAV ', GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL ) failed, status 3 ( 0x3 )
00000343 5.94103468 [3904] CStarWave_SyncFileReader::Open(): fopen( 'C:\TRACK01.WAV ', 'rb' ) failed, status 2 ( 0x2 )


Top
 Profile  
 
 Post subject: Re: Now I'm really confused
PostPosted: Thu Sep 23, 2004 6:32 am 
Offline

Joined: Mon May 31, 2004 6:22 am
Posts: 134
bbriggstkd wrote:
By default VB uses 0 based arrays [0..99]. That is what I have declared here. You are saying I need a 1 based array [1..100]. Am I correct.


You have declared [0..100], but it was initialized from first element, not from 0-element.
You can use either [0..99] or [1..100].


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 89 posts ]  Go to page 1, 2, 3, 4, 5, 6  Next

All times are UTC


Who is online

Users browsing this forum: No registered users and 14 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
cron
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group