summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuy Sagnes <guy.sagnes@continental-corporation.com>2014-07-31 10:09:06 +0200
committerGuy Sagnes <guy.sagnes@continental-corporation.com>2014-07-31 10:09:06 +0200
commitbe6ce3adeb0ea79775fa113d2e3dc1633e68c51a (patch)
treec44794db36ecd69aa4f714a2bd0905ae71683f3e
parent8779f2dc2801bc273e0251a3aaff867ab07ed6f2 (diff)
downloadpersistence-common-object-be6ce3adeb0ea79775fa113d2e3dc1633e68c51a.tar.gz
Revert "Extended enum type PersistencePolicy_e with values for default data and configurable default data"
The interface change was only provided for test purpose. The extension of the enumerator in not in scope of the RCT definition and is removed. This reverts commit adf7dfb37ea4dcf8d48af5c503b7b7b8877cc455. Signed-off-by: Guy Sagnes <guy.sagnes@continental-corporation.com>
-rw-r--r--inc/protected/persComRct.h12
1 files changed, 4 insertions, 8 deletions
diff --git a/inc/protected/persComRct.h b/inc/protected/persComRct.h
index 9c0fc15..79e8fa4 100644
--- a/inc/protected/persComRct.h
+++ b/inc/protected/persComRct.h
@@ -17,7 +17,6 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* Date Author Reason
-* 2014.07.17 ihuerner 5.0.0.0 : Update of PersistencePolicy_e, added PersistencePolicy_cd and PersistencePolicy_c
* 2013.04.02 uidl9757 5.0.0.0 CSP_WZ#3321: Update of PersistenceConfigurationKey_s.permission
* 2013.03.21 uidl9757 4.0.0.0 CSP_WZ#2798: Update of PersistenceConfigurationKey_s
* 2013.01.23 uidl9757 3.0.0.0 CSP_WZ#2060: CoC_SSW:Persistence: common interface to be used by both PCL and PAS
@@ -42,7 +41,7 @@ extern "C"
/** \defgroup PERS_RCT_IF_VERSION Interface version
* \{
*/
-#define PERS_COM_RESOURCE_CONFIG_TABLE_INTERFACE_VERSION (0x05010000U)
+#define PERS_COM_RESOURCE_CONFIG_TABLE_INTERFACE_VERSION (0x05000000U)
/** \} */ /* end of PERS_RCT_IF_VERSION */
@@ -69,13 +68,10 @@ typedef enum PersistencePolicy_e_
{
PersistencePolicy_wc = 0, /**< the data is managed write cached */
PersistencePolicy_wt, /**< the data is managed write through */
- /** insert new entries here ... */
-
- /** make sure this are the last ones, add new enums only before this */
- PersistencePolicy_cd, /**< configurable default data */
- PersistencePolicy_d, /**< default data */
PersistencePolicy_na, /**< the data is not applicable */
- PersistencePolicy_LastEntry /**< last entry */
+
+ /** insert new entries here ... */
+ PersistencePolicy_LastEntry /**< last entry */
} PersistencePolicy_e;