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
367 B
C
16 lines
367 B
C
// Copyright 2007 - 2021, Alan Antonuk and the rabbitmq-c contributors.
|
|
// SPDX-License-Identifier: mit
|
|
|
|
#ifndef AMQP_H
|
|
#define AMQP_H
|
|
|
|
#ifdef _MSC_VER
|
|
# pragma message("warning: amqp.h is deprecated, use rabbitmq-c/amqp.h instead.")
|
|
#else
|
|
# warning "amqp.h is deprecated, use rabbitmq-c/amqp.h instead."
|
|
#endif
|
|
|
|
#include <rabbitmq-c/amqp.h>
|
|
|
|
#endif /* AMQP_H */
|