Hello,
Unfortunatelly the Personal license does not include the custom examples writing and these examples go far beyound the standard product support as you can imagine. Please take a look at the routine that using the StarBurn_CdvdBurnerGrabber_TrackAtOnceFromMemory:
// Create stream to read from file
FileReadStream := TFileStream.Create(
(TTrack(ProgressForm.FFilesList[I])).FilePath,
fmOpenRead and fmShareExclusive
);
// Read and check header
CheckCdAudioFile(FileReadStream, MemoryBuffer);
MemoryBuffer := TMemoryStream.Create;
// Copy from source stream to destination stream
MemoryBuffer.CopyFrom(FileReadStream, FileReadStream.Size - FileReadStream.Position);
l__EXCEPTION_NUMBER :=
StarBurn_CdvdBurnerGrabber_TrackAtOnceFromMemory(
l__PVOID__CdvdBurnerGrabber,
PCHAR( @l__CHAR__ExceptionText[1] ),
sizeof( l__CHAR__ExceptionText ),
l__ULONG__Status,
@l__CDB_FAILURE_INFORMATION,
MemoryBuffer.Memory,
MemoryBuffer.Size,
FALSE,
TestMode,
TRUE,
WRITE_REPORT_DELAY_IN_SECONDS,
BUFFER_STATUS_REPORT_DELAY_IN_SECONDS,
TRUE
);
MemoryBuffer.Free;
FileReadStream.Free;
I am sure this will get you going pretty well. Please let me know if not and I'll try to assign the developer to prepare more meaningful demo as soon as we'll get the pair of free hands here (we're busy preparing new version of the StarBurn at the time).
Regards,
Alexander Orlovsky
|