Hi All,
I am using the Starburn SDK and the latest Starburn Evolution library. I am successfully able to write to CD and DVDs. The problem I am seeing is my code indicates receipt of only the following callback numbers:
CN_FILE_TREE_PROGRESS_ADD,
CN_FILE_TREE_PROGRESS_REMOVE,
and an occasional CN_FILE_TREE_PROGRESS_NAME_COLLISION.
I used TRACE outputs to dbgview and/or MS visual studio trace output.
I am expecting to also receive CN_CDVD_WRITE_PROGRESS during execution of: StarBurn_CdvdBurnerGrabber_TrackAtOnceFromTree (
DevInfo.pCdvdBurnerGrabber,
(PCHAR) (&m_ExceptionText),
sizeof(m_ExceptionText),
&m_SystemError,
&m_FailureInformation,
m_pISOTreeToBurn,
FALSE,
FALSE,
TRUE,
WRITE_REPORT_DELAY_IN_SECONDS,
BUFFER_STATUS_REPORT_DELAY_IN_SECONDS);
WRITE_REPORT_DELAY_IN_SECONDS = 1
BUFFER_STATUS_REPORT_DELAY_IN_SECONDS = 5
I suspect I am fighting an issue where I need my progress bar updated in a different thread...
Any advice?
Thank you,