diff options
author | Unsung <unsung.lee@samsung.com> | 2024-09-26 16:31:00 +0900 |
---|---|---|
committer | Unsung <unsung.lee@samsung.com> | 2024-09-26 16:31:03 +0900 |
commit | cab9f6640e0cb45f2043015ff12d6a9e52e660d5 (patch) | |
tree | c20078d30e3fd714367f3362881a921457e9c9b5 | |
parent | afc60d6c98c8253fc068b760688494bf48e44677 (diff) | |
download | libstorage-accepted/tizen_unified.tar.gz libstorage-accepted/tizen_unified.tar.bz2 libstorage-accepted/tizen_unified.zip |
storage-exapnd: Add # in the comment to make the link in the HTMLtizen_9.0_m2_releaseaccepted/tizen/unified/x/asan/20241014.000158accepted/tizen/unified/x/20241001.153944accepted/tizen/unified/toolchain/20241004.101821accepted/tizen/unified/20241004.041834accepted/tizen/unified/20241001.004121accepted/tizen/9.0/unified/20241030.233731tizen_9.0tizenaccepted/tizen_unified_x_asanaccepted/tizen_unified_xaccepted/tizen_unified_toolchainaccepted/tizen_unifiedaccepted/tizen_9.0_unified
Add # before writing type in the comment to make the link
in the HTML documentation.
Change-Id: Ife45abedd289ee20234d2db155c0ee451cbc06a3
Signed-off-by: Unsung <unsung.lee@samsung.com>
-rw-r--r-- | include/storage-expand.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/storage-expand.h b/include/storage-expand.h index c5f719b..b081423 100644 --- a/include/storage-expand.h +++ b/include/storage-expand.h @@ -163,7 +163,7 @@ typedef enum { /** * @brief Gets the absolute path to the each directory of the given storage. - * @details Gets absolute path among several directories defined in the storage_directory_e. + * @details Gets absolute path among several directories defined in the #storage_directory_e. * @since_tizen 2.3 * @remarks Files saved on the internal/external storage are readable or writable by all applications.\n * When an application is uninstalled, the files written by that application are not removed from the internal/external storage.\n @@ -195,7 +195,7 @@ int storage_get_directory(int storage_id, storage_directory_e type, char **path) /** * @brief Gets the type (such as internal or external) of the given storage. - * @details Gets the storage type among defined in the storage_type_e using storage_id. + * @details Gets the storage type among defined in the #storage_type_e using storage_id. * @since_tizen 2.3 * @remarks Determines whether it is an internal or external storage using the input storage_id. * @param[in] storage_id The storage device @@ -219,7 +219,7 @@ int storage_get_type(int storage_id, storage_type_e *type); /** * @brief Gets the current mounted state of storage corresponding to the specified id. - * @details Gets the storage mounted state among defined in the storage_state_e using storage_id. + * @details Gets the storage mounted state among defined in the #storage_state_e using storage_id. * @since_tizen 2.3 * @remarks Determines whether it is an internal or external storage using the input storage_id. * @param[in] storage_id The storage device @@ -445,8 +445,8 @@ int storage_get_available_space(int storage_id, unsigned long long *bytes); /** * @brief Gets the type and the kind of external device for the given storage id. - * @details Gets the external storage type defined in storage_type_e and kind - * defined in storage_dev_e using storage_id. + * @details Gets the external storage type defined in #storage_type_e and kind + * defined in #storage_dev_e using storage_id. * @since_tizen 5.0 * @remarks Works solely on external storages, not internal storages. * If @a type is #STORAGE_TYPE_INTERNAL, this function returns #STORAGE_ERROR_INVALID_PARAMETER and @a dev is unchanged. |