You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
440 B
C
16 lines
440 B
C
// Copyright 2007 - 2021, Alan Antonuk and the rabbitmq-c contributors.
|
|
// SPDX-License-Identifier: mit
|
|
|
|
#ifndef AMQP_TCP_SOCKET_H
|
|
#define AMQP_TCP_SOCKET_H
|
|
|
|
#ifdef _MSC_VER
|
|
# pragma message("warning: amqp_tcp_socket.h is deprecated, use rabbitmq-c/tcp_socket.h instead.")
|
|
#else
|
|
# warning "amqp_tcp_socket.h is deprecated, use rabbitmq-c/tcp_socket.h instead."
|
|
#endif
|
|
|
|
#include <rabbitmq-c/tcp_socket.h>
|
|
|
|
#endif /* AMQP_TCP_SOCKET_H */
|