MKI_ApplicationIsDisabled (Application) New in Version 2025.0

www.CAD6.com

C++ Syntax

bool

MKI_ApplicationIsDisabled( void )

 

Determines whether the application is currently disabled (i.e. either application locked, license expired, or license outdated) or not.

 

For information on which type of application is currently running, use MKI_GetApplicationType().

 

Return Value

Returns true if the application is currently disabled, i.e. any data saving or exporting should be disabled or crippled.

 

Comment

This procedure is a kind of macro that executes steps similar to the following code segment:

 

int nState = MKI_GetApplicationState();

return( nState == MKI_APPSTATE_LOCKED ||

        nState == MKI_APPSTATE_EXPIRED ||

        nState == MKI_APPSTATE_OUTDATED );

 

CAD6interface 2025.0 - Copyright 2025 Malz++Kassner® GmbH