summaryrefslogtreecommitdiff
path: root/librabbitmq/amqp_framing.h
diff options
context:
space:
mode:
Diffstat (limited to 'librabbitmq/amqp_framing.h')
-rw-r--r--librabbitmq/amqp_framing.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/librabbitmq/amqp_framing.h b/librabbitmq/amqp_framing.h
index 1179012..e392dcc 100644
--- a/librabbitmq/amqp_framing.h
+++ b/librabbitmq/amqp_framing.h
@@ -788,12 +788,14 @@ AMQP_CALL amqp_channel_flow(amqp_connection_state_t state, amqp_channel_t channe
* @param [in] type type
* @param [in] passive passive
* @param [in] durable durable
+ * @param [in] auto_delete auto_delete
+ * @param [in] internal internal
* @param [in] arguments arguments
* @returns amqp_exchange_declare_ok_t
*/
AMQP_PUBLIC_FUNCTION
amqp_exchange_declare_ok_t *
-AMQP_CALL amqp_exchange_declare(amqp_connection_state_t state, amqp_channel_t channel, amqp_bytes_t exchange, amqp_bytes_t type, amqp_boolean_t passive, amqp_boolean_t durable, amqp_table_t arguments);
+AMQP_CALL amqp_exchange_declare(amqp_connection_state_t state, amqp_channel_t channel, amqp_bytes_t exchange, amqp_bytes_t type, amqp_boolean_t passive, amqp_boolean_t durable, amqp_boolean_t auto_delete, amqp_boolean_t internal, amqp_table_t arguments);
/**
* amqp_exchange_delete
*