StarBurn SDK (Software Development Kit)
ContentsIndexHome
PreviousUpNext
StarBurn_DownShut Function
C++
__stdcall STARBURN_IMPEX_API EXCEPTION_NUMBER StarBurn_DownShut(IN VOID);

Execution status. EN_SUCCESS if uninitialization process completed successfuly.

This function uninitializes burning toolkit. It's expected to be called after very last function call before exiting from StarBurn client application. It's a good idea to gather the trash before exiting. Starting from build 4.2.6 it's *REQUIRED* to call this function, it does not matter what build (static Vs. dynamic) of StarBurn is used.

See samples for details how and when call StarBurn_DownShut() function.

See samples for details how and when call StarBurn_DownShut() function.

This example just uninitializes toolkit. 

 

// Somewhere in the data region
EXCEPTION_NUMBER l__EXCEPTION_NUMBER = EN_SUCCESS;

// Try to uninitialize toolkit
l__EXCEPTION_NUMBER =
StarBurn_DownShut();

// Check for success
if ( l__EXCEPTION_NUMBER != EN_SUCCESS )
{
// Handle error here...
}