summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Antonuk <alan.antonuk@gmail.com>2016-11-10 20:59:54 -0800
committerAlan Antonuk <alan.antonuk@gmail.com>2016-11-10 20:59:54 -0800
commit29d45f297089e3c9a34a8f02c72d95848e3ec01c (patch)
tree72728cd0bae86ea0ef625323ef70661c1bdb79d4
parenta45fe6f30ba0bc24da0c6c46ff3c2dc270cf2b6d (diff)
downloadrabbitmq-c-missing_call.tar.gz
Fix: add ABI AMQP_CALL decorator on public functionsmissing_call
amqp_get_socket, amqp_get_server_properties, amqp_get_client_properites were missing AMQP_CALL decorator.
-rw-r--r--librabbitmq/amqp.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/librabbitmq/amqp.h b/librabbitmq/amqp.h
index d58f9b4..7f031d2 100644
--- a/librabbitmq/amqp.h
+++ b/librabbitmq/amqp.h
@@ -2408,6 +2408,7 @@ amqp_socket_get_sockfd(amqp_socket_t *self);
*/
AMQP_PUBLIC_FUNCTION
amqp_socket_t *
+AMQP_CALL
amqp_get_socket(amqp_connection_state_t state);
/**
@@ -2422,6 +2423,7 @@ amqp_get_socket(amqp_connection_state_t state);
*/
AMQP_PUBLIC_FUNCTION
amqp_table_t *
+AMQP_CALL
amqp_get_server_properties(amqp_connection_state_t state);
/**
@@ -2438,6 +2440,7 @@ amqp_get_server_properties(amqp_connection_state_t state);
*/
AMQP_PUBLIC_FUNCTION
amqp_table_t *
+AMQP_CALL
amqp_get_client_properties(amqp_connection_state_t state);
AMQP_END_DECLS