1.2.4.4 DLL_STATUS Enum

C

typedef enum
{
    DLL_STATUS_UNINITIALIZED = SYS_STATUS_UNINITIALIZED,
    DLL_STATUS_READY = SYS_STATUS_READY,
} DLL_STATUS;

Summary

Defines the status of the DLL module.

Description

This enumeration defines the status of the DLL module:
  • DLL_STATUS_UNINITIALIZED: DLL module has not been initialized.
  • DLL_STATUS_READY: DLL module is ready to be used.

Remarks

None.