Skip to content

Commit

Permalink
visibility macro
Browse files Browse the repository at this point in the history
  • Loading branch information
Bret Ambrose committed Mar 4, 2024
1 parent 4e240eb commit 3361455
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions include/aws/mqtt/request-response/request_response_client.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,29 +31,29 @@ AWS_EXTERN_C_BEGIN
/*
* Create a new request-response client that uses an MQTT311 client.
*/
struct aws_mqtt_request_response_client *aws_mqtt_request_response_client_new_from_mqtt311_client(
AWS_MQTT_API struct aws_mqtt_request_response_client *aws_mqtt_request_response_client_new_from_mqtt311_client(
struct aws_allocator *allocator,
struct aws_mqtt_client_connection *client,
const struct aws_mqtt_request_response_client_options *options);

/*
* Create a new request-response client that uses an MQTT5 client.
*/
struct aws_mqtt_request_response_client *aws_mqtt_request_response_client_new_from_mqtt5_client(
AWS_MQTT_API struct aws_mqtt_request_response_client *aws_mqtt_request_response_client_new_from_mqtt5_client(
struct aws_allocator *allocator,
struct aws_mqtt5_client *client,
const struct aws_mqtt_request_response_client_options *options);

/*
* Add a reference to a request-response client
*/
struct aws_mqtt_request_response_client *aws_mqtt_request_response_client_acquire(
AWS_MQTT_API struct aws_mqtt_request_response_client *aws_mqtt_request_response_client_acquire(
struct aws_mqtt_request_response_client *client);

/*
* Remove a reference to a request-response client
*/
struct aws_mqtt_request_response_client *aws_mqtt_request_response_client_release(
AWS_MQTT_API struct aws_mqtt_request_response_client *aws_mqtt_request_response_client_release(
struct aws_mqtt_request_response_client *client);

AWS_EXTERN_C_END
Expand Down

0 comments on commit 3361455

Please sign in to comment.