diff options
Diffstat (limited to 'include/android/configuration.h')
-rw-r--r-- | include/android/configuration.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/android/configuration.h b/include/android/configuration.h index 331072238b..05f43407fb 100644 --- a/include/android/configuration.h +++ b/include/android/configuration.h @@ -645,10 +645,14 @@ int32_t AConfiguration_getScreenLong(AConfiguration* config); */ void AConfiguration_setScreenLong(AConfiguration* config, int32_t screenLong); +#if __ANDROID_API__ >= 30 /** * Return the current ACONFIGURATION_SCREENROUND_* set in the configuration. + * + * Available since API level 30. */ -int32_t AConfiguration_getScreenRound(AConfiguration* config); +int32_t AConfiguration_getScreenRound(AConfiguration* config) __INTRODUCED_IN(30); +#endif /** * Set the current screen round in the configuration. |