.. _program_listing_file_include_rosidl_runtime_c_service_type_support_struct.h: Program Listing for File service_type_support_struct.h ====================================================== |exhale_lsh| :ref:`Return to documentation for file ` (``include/rosidl_runtime_c/service_type_support_struct.h``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp // Copyright 2015-2016 Open Source Robotics Foundation, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #ifndef ROSIDL_RUNTIME_C__SERVICE_TYPE_SUPPORT_STRUCT_H_ #define ROSIDL_RUNTIME_C__SERVICE_TYPE_SUPPORT_STRUCT_H_ #include "rosidl_runtime_c/visibility_control.h" #include "rosidl_typesupport_interface/macros.h" #ifdef __cplusplus extern "C" { #endif typedef struct rosidl_service_type_support_t rosidl_service_type_support_t; typedef const rosidl_service_type_support_t * (* rosidl_service_typesupport_handle_function)( const rosidl_service_type_support_t *, const char *); struct rosidl_service_type_support_t { const char * typesupport_identifier; const void * data; rosidl_service_typesupport_handle_function func; }; ROSIDL_GENERATOR_C_PUBLIC const rosidl_service_type_support_t * get_service_typesupport_handle( const rosidl_service_type_support_t * handle, const char * identifier); ROSIDL_GENERATOR_C_PUBLIC const rosidl_service_type_support_t * get_service_typesupport_handle_function( const rosidl_service_type_support_t * handle, const char * identifier); /* * \param PkgName Name of the package that contains the service * \param SrvSubfolder name of the subfolder (for example: srv) * \param SrvName service name * \return a rosidl_service_type_support_t struct if founded, otherwise NULL. */ #define ROSIDL_GET_SRV_TYPE_SUPPORT(PkgName, SrvSubfolder, SrvName) \ ROSIDL_TYPESUPPORT_INTERFACE__SERVICE_SYMBOL_NAME( \ rosidl_typesupport_c, PkgName, SrvSubfolder, SrvName)() #ifdef __cplusplus } #endif #endif // ROSIDL_RUNTIME_C__SERVICE_TYPE_SUPPORT_STRUCT_H_