예제 #1
0
 static extern int rcl_service_server_is_available(ref rcl_node_t node, ref rcl_client_t client, ref byte is_available);
예제 #2
0
 static extern int rcl_get_topic_names_and_types(ref rcl_node_t node, ref rcl_topic_names_and_types_t topic_names_and_types);
예제 #3
0
 static extern int rcl_count_publishers(ref rcl_node_t node, string topic_name, ref IntPtr count);
예제 #4
0
 public rcl_subscription_base(Node _node, rosidl_message_type_support_t _type_support, string _topic_name, rcl_subscription_options_t _options)
 {
     native_node = _node.NativeNode;
 }
예제 #5
0
 static extern int rcl_count_subscribers(ref rcl_node_t node, string topic_name, ref IntPtr count);
예제 #6
0
 extern static int rcl_subscription_init(ref rcl_subscription_t subscription, ref rcl_node_t node, ref rosidl_message_type_support_t typesupport, string topic_name, ref rcl_subscription_options_t options);
예제 #7
0
 extern static int rcl_subscription_fini(ref rcl_subscription_t subscription, ref rcl_node_t node);
예제 #8
0
파일: Publisher.cs 프로젝트: dhood/rclcs
 extern static int rcl_publisher_init(ref rcl_publisher_t publisher, ref rcl_node_t node, ref rosidl_message_type_support_t type_support, string topic_name, ref rcl_publisher_options_t options);
예제 #9
0
파일: Publisher.cs 프로젝트: dhood/rclcs
 extern static int rcl_publisher_fini(ref rcl_publisher_t publisher, ref rcl_node_t node);
예제 #10
0
 static extern bool rcl_node_is_valid(ref rcl_node_t node);
예제 #11
0
 static extern IntPtr rcl_node_get_name(ref rcl_node_t node);
예제 #12
0
 static extern int rcl_node_fini(ref rcl_node_t node);
예제 #13
0
 static extern int rcl_node_init(ref rcl_node_t node, [MarshalAs(UnmanagedType.LPStr)] string name, [MarshalAs(UnmanagedType.LPStr)] string namespace_, ref rcl_node_options_t options);
예제 #14
0
 static extern int rcl_node_get_domain_id(ref rcl_node_t node, ref UIntPtr domain_id);
예제 #15
0
 extern static int rcl_service_fini(ref rcl_service_t service, ref rcl_node_t node);
예제 #16
0
 extern static int rcl_service_init(ref rcl_service_t service, ref rcl_node_t node, ref rosidl_service_type_support_t type_support, string topic_name, ref rcl_service_options_t options);