9 #ifndef LIBREALSENSE_RS2_H
10 #define LIBREALSENSE_RS2_H
25 #define RS2_API_MAJOR_VERSION 2
26 #define RS2_API_MINOR_VERSION 40
27 #define RS2_API_PATCH_VERSION 0
28 #define RS2_API_BUILD_VERSION 0
31 #define STRINGIFY(arg) #arg
33 #ifndef VAR_ARG_STRING
34 #define VAR_ARG_STRING(arg) STRINGIFY(arg)
41 #define RS2_API_VERSION (((RS2_API_MAJOR_VERSION) * 10000) + ((RS2_API_MINOR_VERSION) * 100) + (RS2_API_PATCH_VERSION))
43 #define RS2_API_VERSION_STR (VAR_ARG_STRING(RS2_API_MAJOR_VERSION.RS2_API_MINOR_VERSION.RS2_API_PATCH_VERSION))
44 #define RS2_API_FULL_VERSION_STR (VAR_ARG_STRING(RS2_API_MAJOR_VERSION.RS2_API_MINOR_VERSION.RS2_API_PATCH_VERSION.RS2_API_BUILD_VERSION))
const char * rs2_get_full_log_message(rs2_log_message const *msg, rs2_error **error)
const unsigned char * rs2_get_raw_data(const rs2_raw_data_buffer *buffer, rs2_error **error)
void rs2_log_to_console(rs2_log_severity min_severity, rs2_error **error)
unsigned rs2_get_log_message_line_number(rs2_log_message const *msg, rs2_error **error)
void rs2_log_to_file(rs2_log_severity min_severity, const char *file_path, rs2_error **error)
const char * rs2_get_raw_log_message(rs2_log_message const *msg, rs2_error **error)
void rs2_log_to_callback_cpp(rs2_log_severity min_severity, rs2_log_callback *callback, rs2_error **error)
void rs2_log_to_callback(rs2_log_severity min_severity, rs2_log_callback_ptr callback, void *arg, rs2_error **error)
float rs2_depth_frame_get_distance(const rs2_frame *frame_ref, int x, int y, rs2_error **error)
rs2_time_t rs2_get_time(rs2_error **error)
const char * rs2_get_log_message_filename(rs2_log_message const *msg, rs2_error **error)
int rs2_get_raw_data_size(const rs2_raw_data_buffer *buffer, rs2_error **error)
int rs2_get_api_version(rs2_error **error)
void rs2_delete_raw_data(const rs2_raw_data_buffer *buffer)
void rs2_log(rs2_log_severity severity, const char *message, rs2_error **error)
Exposes RealSense context functionality for C compilers.
Exposes RealSense device functionality for C compilers.
Exposes RealSense frame functionality for C compilers.
Exposes sensor options functionality for C compilers.
Exposes RealSense processing-block functionality for C compilers.
Exposes record and playback functionality for C compilers.
Exposes RealSense sensor functionality for C compilers.
Exposes RealSense structs.
rs2_log_severity
Severity of the librealsense logger.
Definition: rs_types.h:147
struct rs2_log_message rs2_log_message
Definition: rs_types.h:251
double rs2_time_t
Definition: rs_types.h:292
struct rs2_error rs2_error
Definition: rs_types.h:250
struct rs2_raw_data_buffer rs2_raw_data_buffer
Definition: rs_types.h:252
struct rs2_frame rs2_frame
Definition: rs_types.h:253
void(* rs2_log_callback_ptr)(rs2_log_severity, rs2_log_message const *, void *arg)
Definition: rs_types.h:284
Definition: rs_types.hpp:56