|
|
@@ -63,21 +63,23 @@ enum res_init_types {
|
|
|
MESSAGE_RES_INIT
|
|
|
};
|
|
|
|
|
|
+#define MESSAGE_REQ_LIB_ACTIVATEPOLL 0
|
|
|
+#define MESSAGE_RES_LIB_ACTIVATEPOLL 0
|
|
|
+
|
|
|
enum req_clm_types {
|
|
|
- MESSAGE_REQ_CLM_TRACKSTART,
|
|
|
+ MESSAGE_REQ_CLM_TRACKSTART = 1,
|
|
|
MESSAGE_REQ_CLM_TRACKSTOP,
|
|
|
MESSAGE_REQ_CLM_NODEGET
|
|
|
};
|
|
|
|
|
|
enum res_clm_types {
|
|
|
- MESSAGE_RES_CLM_TRACKCALLBACK,
|
|
|
+ MESSAGE_RES_CLM_TRACKCALLBACK = 1,
|
|
|
MESSAGE_RES_CLM_NODEGET,
|
|
|
MESSAGE_RES_CLM_NODEGETCALLBACK
|
|
|
};
|
|
|
|
|
|
enum req_amf_types {
|
|
|
- MESSAGE_REQ_AMF_ACTIVATEPOLL,
|
|
|
- MESSAGE_REQ_AMF_COMPONENTREGISTER,
|
|
|
+ MESSAGE_REQ_AMF_COMPONENTREGISTER = 1,
|
|
|
MESSAGE_REQ_AMF_COMPONENTUNREGISTER,
|
|
|
MESSAGE_REQ_AMF_READINESSSTATEGET,
|
|
|
MESSAGE_REQ_AMF_HASTATEGET,
|
|
|
@@ -91,8 +93,7 @@ enum req_amf_types {
|
|
|
};
|
|
|
|
|
|
enum res_amf_types {
|
|
|
- MESSAGE_RES_AMF_ACTIVATEPOLL,
|
|
|
- MESSAGE_RES_AMF_COMPONENTREGISTER,
|
|
|
+ MESSAGE_RES_AMF_COMPONENTREGISTER = 1,
|
|
|
MESSAGE_RES_AMF_COMPONENTUNREGISTER,
|
|
|
MESSAGE_RES_AMF_READINESSSTATEGET,
|
|
|
MESSAGE_RES_AMF_HASTATEGET,
|
|
|
@@ -110,7 +111,7 @@ enum res_amf_types {
|
|
|
};
|
|
|
|
|
|
enum req_lib_ckpt_checkpoint_types {
|
|
|
- MESSAGE_REQ_CKPT_CHECKPOINT_CHECKPOINTOPEN,
|
|
|
+ MESSAGE_REQ_CKPT_CHECKPOINT_CHECKPOINTOPEN = 1,
|
|
|
MESSAGE_REQ_CKPT_CHECKPOINT_CHECKPOINTOPENASYNC,
|
|
|
MESSAGE_REQ_CKPT_CHECKPOINT_CHECKPOINTUNLINK,
|
|
|
MESSAGE_REQ_CKPT_CHECKPOINT_CHECKPOINTRETENTIONDURATIONSET,
|
|
|
@@ -127,17 +128,17 @@ enum req_lib_ckpt_checkpoint_types {
|
|
|
};
|
|
|
|
|
|
enum req_lib_ckpt_sectioniterator_types {
|
|
|
- MESSAGE_REQ_CKPT_SECTIONITERATOR_SECTIONITERATORINITIALIZE,
|
|
|
+ MESSAGE_REQ_CKPT_SECTIONITERATOR_SECTIONITERATORINITIALIZE = 1,
|
|
|
MESSAGE_REQ_CKPT_SECTIONITERATOR_SECTIONITERATORNEXT
|
|
|
};
|
|
|
|
|
|
enum res_lib_ckpt_types {
|
|
|
- MESSAGE_RES_CKPT_CHECKPOINTOPENASYNC,
|
|
|
+ MESSAGE_RES_CKPT_CHECKPOINTOPENASYNC = 1,
|
|
|
MESSAGE_RES_CKPT_CHECKPOINTSYNCHRONIZEASYNC
|
|
|
};
|
|
|
|
|
|
enum res_lib_ckpt_checkpoint_types {
|
|
|
- MESSAGE_RES_CKPT_CHECKPOINT_CHECKPOINTOPEN,
|
|
|
+ MESSAGE_RES_CKPT_CHECKPOINT_CHECKPOINTOPEN = 1,
|
|
|
MESSAGE_RES_CKPT_CHECKPOINT_CHECKPOINTUNLINK,
|
|
|
MESSAGE_RES_CKPT_CHECKPOINT_CHECKPOINTRETENTIONDURATIONSET,
|
|
|
MESSAGE_RES_CKPT_CHECKPOINT_ACTIVECHECKPOINTSET,
|
|
|
@@ -152,7 +153,7 @@ enum res_lib_ckpt_checkpoint_types {
|
|
|
};
|
|
|
|
|
|
enum res_lib_ckpt_sectioniterator_types {
|
|
|
- MESSAGE_RES_CKPT_SECTIONITERATOR_SECTIONITERATORINITIALIZE,
|
|
|
+ MESSAGE_RES_CKPT_SECTIONITERATOR_SECTIONITERATORINITIALIZE = 1,
|
|
|
MESSAGE_RES_CKPT_SECTIONITERATOR_SECTIONITERATORNEXT
|
|
|
};
|
|
|
|
|
|
@@ -438,11 +439,11 @@ struct res_amf_componentcapabilitymodelget {
|
|
|
SaErrorT error;
|
|
|
};
|
|
|
|
|
|
-struct req_amf_activatepoll {
|
|
|
+struct req_lib_activatepoll {
|
|
|
struct message_header header;
|
|
|
};
|
|
|
|
|
|
-struct res_amf_activatepoll {
|
|
|
+struct res_lib_activatepoll {
|
|
|
struct message_header header;
|
|
|
};
|
|
|
|