From 81d61227e3a8d48c1dcc04f945a0888a7fdfdace Mon Sep 17 00:00:00 2001 From: Szczepan Zalega Date: Sat, 19 Sep 2020 16:25:40 +0200 Subject: Deprecate old setters for UV ro/rw attribute Use DEPRECATED macro on noop calls for NK Storage v0.51+ Update Travis CI config Fixes #182 --- NK_C_API.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'NK_C_API.h') diff --git a/NK_C_API.h b/NK_C_API.h index 5341c08..68fb56c 100644 --- a/NK_C_API.h +++ b/NK_C_API.h @@ -837,7 +837,9 @@ extern "C" { * @param user_pin 20 characters User PIN * @return command processing error code */ - NK_C_API int NK_set_unencrypted_read_only(const char *user_pin); + //[[deprecated("Use NK_set_unencrypted_read_only_admin instead")]] + DEPRECATED + NK_C_API int NK_set_unencrypted_read_only(const char *user_pin); /** * Make unencrypted volume read-write. @@ -849,7 +851,9 @@ extern "C" { * @param user_pin 20 characters User PIN * @return command processing error code */ - NK_C_API int NK_set_unencrypted_read_write(const char *user_pin); + //[[deprecated("Use NK_set_unencrypted_read_write_admin instead")]] + DEPRECATED + NK_C_API int NK_set_unencrypted_read_write(const char *user_pin); /** * Make unencrypted volume read-only. -- cgit v1.2.1