Since i posted i have set up a little test
procedure TForm1.Button1Click(Sender: TObject);
var starburn1 : pointer;
starburn2 : pointer;
SystemError : cardinal;
ExceptionText : array [0..255] of char;
FailInfo : CDB_FAILURE_INFORMATION;
begin
StarBurn_UpStart;
StarBurn_CDVDBurnerGrabber_Create(starburn1, ExceptionText, sizeof(exceptiontext), SystemError, @FailInfo, @StarBurnCallBack, nil, 0,0,0,0,0);
StarBurn_CDVDBurnerGrabber_Create(starburn2, ExceptionText, sizeof(exceptiontext), SystemError, @FailInfo, @StarBurnCallBack, nil, 0,0,1,0,0);
StarBurn_destroy(StarBurn1);
if StarBurn1=nil then
begin
showmessage('StarBurn1 is NIL');
end
else
begin
showmessage('Starburn1 is OK');
end;
if StarBurn2=nil then
begin
showmessage('StarBurn2 is NIL');
end
else
begin
showmessage('Starburn2 is OK');
end;
Starburn_DownShut;
end;
this code works as expected, so i will go over my other code, and get back to you on this.........watch this space
i know that you said setting the address to all zores is bad, but thats the address of my drive!
Thanks
Vertuas
|