mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-22 21:55:41 +01:00
Fix platform setup/teardown feature and comments
Fixed the platform setup/teardown feature, by fixing it for doxygen and adding it as a feature in 'version_features.c'.
This commit is contained in:
parent
d3be27a92a
commit
a95d630197
@ -326,8 +326,6 @@ int mbedtls_platform_setup( mbedtls_platform_context *ctx );
|
|||||||
*
|
*
|
||||||
* \param ctx mbed TLS context
|
* \param ctx mbed TLS context
|
||||||
*
|
*
|
||||||
* \return 0 if successful
|
|
||||||
*
|
|
||||||
* \note This function should be called after every other mbed TLS module has
|
* \note This function should be called after every other mbed TLS module has
|
||||||
* been correctly freed using the appropriate free function.
|
* been correctly freed using the appropriate free function.
|
||||||
* Its implementation is platform specific, and by default, unless
|
* Its implementation is platform specific, and by default, unless
|
||||||
|
@ -69,6 +69,9 @@ static const char *features[] = {
|
|||||||
#if defined(MBEDTLS_PLATFORM_NV_SEED_ALT)
|
#if defined(MBEDTLS_PLATFORM_NV_SEED_ALT)
|
||||||
"MBEDTLS_PLATFORM_NV_SEED_ALT",
|
"MBEDTLS_PLATFORM_NV_SEED_ALT",
|
||||||
#endif /* MBEDTLS_PLATFORM_NV_SEED_ALT */
|
#endif /* MBEDTLS_PLATFORM_NV_SEED_ALT */
|
||||||
|
#if defined(MBEDTLS_PLATFORM_SETUP_TEARDOWN_ALT)
|
||||||
|
"MBEDTLS_PLATFORM_SETUP_TEARDOWN_ALT",
|
||||||
|
#endif /* MBEDTLS_PLATFORM_SETUP_TEARDOWN_ALT */
|
||||||
#if defined(MBEDTLS_DEPRECATED_WARNING)
|
#if defined(MBEDTLS_DEPRECATED_WARNING)
|
||||||
"MBEDTLS_DEPRECATED_WARNING",
|
"MBEDTLS_DEPRECATED_WARNING",
|
||||||
#endif /* MBEDTLS_DEPRECATED_WARNING */
|
#endif /* MBEDTLS_DEPRECATED_WARNING */
|
||||||
|
Loading…
Reference in New Issue
Block a user