I am wrinting a campact console program to erase RW disc.
I think the minimal codes should just like this:
EXCEPTION_NUMBER ExceptionNumber = StarBurn_UpStartEx(....);
if (ExceptionNumber != EN_SUCCESS) {......}
ExceptionNumber = StarBurn_CdvdBurnerGrabber_CreateEx(....);
if (ExceptionNumber != EN_SUCCESS) {......}
ExceptionNumber = StarBurn_CdvdBurnerGrabber_TestUnitReady(....);
if (ExceptionNumber != EN_SUCCESS) {......}
ExceptionNumber = StarBurn_CdvdBurnerGrabber_Blank(.....);
if (ExceptionNumber != EN_SUCCESS) {......}
StarBurn_Destroy(...);
StarBurn_DownShut();
These codes work fine on CDRW & DVD-RW but crash on DVD+RW & BDRE, why it happened? And why is crash not exception error returned from SDK?