@@ -36,7 +36,7 @@ extern "C"
36
36
37
37
/// Create a rosidl_message_type_support_t from a TypeDescription message
38
38
rmw_ret_t
39
- rmw_dynamic_message_type_support_handle_init (
39
+ rmw_dynamic_message_type_support_handle_create (
40
40
rosidl_dynamic_typesupport_serialization_support_t * serialization_support ,
41
41
bool middleware_supports_type_discovery ,
42
42
const rosidl_type_hash_t * type_hash ,
@@ -66,7 +66,7 @@ rmw_dynamic_message_type_support_handle_init(
66
66
// RMW_CHECK_ARGUMENT_FOR_NULL(type_description_sources, RMW_RET_INVALID_ARGUMENT);
67
67
68
68
return rmw_convert_rcutils_ret_to_rmw_ret (
69
- rosidl_dynamic_message_type_support_handle_init (
69
+ rosidl_dynamic_message_type_support_handle_create (
70
70
serialization_support , type_hash , type_description , type_description_sources , ts ));
71
71
}
72
72
@@ -90,7 +90,7 @@ rmw_init_dynamic_message_type_from_description(
90
90
rosidl_dynamic_typesupport_dynamic_type_t * * ts )
91
91
{
92
92
return rmw_convert_rcutils_ret_to_rmw_ret (
93
- rosidl_dynamic_typesupport_dynamic_type_init_from_description (
93
+ rosidl_dynamic_typesupport_dynamic_type_create_from_description (
94
94
serialization_support , type_description , ts ));
95
95
}
96
96
@@ -100,7 +100,7 @@ rmw_init_dynamic_message_from_dynamic_message_type(
100
100
rosidl_dynamic_typesupport_dynamic_data_t * * cloned_dynamic_message_type )
101
101
{
102
102
return rmw_convert_rcutils_ret_to_rmw_ret (
103
- rosidl_dynamic_typesupport_dynamic_data_init_from_dynamic_type (
103
+ rosidl_dynamic_typesupport_dynamic_data_create_from_dynamic_type (
104
104
dynamic_message_type , cloned_dynamic_message_type ));
105
105
}
106
106
0 commit comments