| ELZED | Documentation | The Details | API |
| lzDestroyPrivateContextThe lzDestroyPrivateContext function destroys the named private context. bool lzDestroyPrivateContext( | const char* szContextName | | // name of the target context |
);
ParametersszContextName | | The name of the private context to be destroyed.
If the named context exists in the current thread, its resources will be destroyed and the context will no longer be available. The primary context will be in effect for the current thread unless replaced through a call to lzSetContext.
If the named private context does not exist within the current thread, this function has no effect. |
Return Value | Returns TRUE if the named private context is destroyed, FALSE if not. |
Remarks | Once a context is destroyed, its name is available for re-use. |
Versions | Introduced in Elzed 1.1.0 Modified in Elzed 2.4.0 -- Context name parameter (char*) is now declared const. | | This page describes the version of lzDestroyPrivateContext active in Elzed 2.5.0 (190: 2.5.0) |
See Also |
| |