diff --git a/global/resource_management/include/resourcemanager/resmgr_common.h b/global/resource_management/include/resourcemanager/resmgr_common.h index 13b49689ca2ea6f28f16fc2ac7e9a3919dc27b5b..2b32c305218f3781130fff6d65ee06dfe3168a98 100644 --- a/global/resource_management/include/resourcemanager/resmgr_common.h +++ b/global/resource_management/include/resourcemanager/resmgr_common.h @@ -152,7 +152,12 @@ typedef struct ResourceManager_Configuration { char* locale; /** Indicates the device type. */ ResourceManager_DeviceType deviceType; - /** Indicates the screen density. */ + /** + * Indicates the screen density. + * + * @deprecated since 20 + * @useinstead screenDensityDpi + */ ScreenDensity screenDensity; /** Indicates the color mode. */ ResourceManager_ColorMode colorMode; @@ -162,6 +167,12 @@ typedef struct ResourceManager_Configuration { uint32_t mnc; /** Reserved attributes. */ uint32_t reserved[20]; + /** + * Indicates the screen density dpi. + * + * @since 20 + */ + ScreenDensity screenDensityDpi; } ResourceManager_Configuration; #ifdef __cplusplus };