DLM Server

Server Is Initialized

dlm_ServerIsInitialized()

Access function for initialization state of the module.

Syntax
#include "dlmsrv.h"

DlmBoolean dlm_ServerIsInitialized
    (
        void
    );
Description

dlm_ServerIsInitialized() is the access function for initialization state of the module.

Return Values

dlm_ServerIsInitialized() returns TRUE if the module is initialized, FALSE otherwise.

See Also

dlm_ServerInitialize()
dlm_ServerUninitialize()

Example
if (dlm_ServerIsInitialized())
{
    dlm_SrvUninitialize();
}