You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Basically, I'm trying to wrap a file with some functions that have variadic parameters:
AMQP_PUBLIC_FUNCTION
amqp_rpc_reply_t
AMQP_CALL amqp_login(amqp_connection_state_t state, char const *vhost,
int channel_max, int frame_max, int heartbeat,
amqp_sasl_method_enum sasl_method, ...);
However, the generated code fails to expose the variadic nature of the calls:
amqp_rpc_reply_t amqp_login(amqp_connection_state_t state, char* vhost,
int channel_max, int frame_max, int heartbeat,
amqp_sasl_method_enum sasl_method)
(I added line breaks for readability)
At the moment, I just manually added , ..., but that's somewhat sub-optimal.
The text was updated successfully, but these errors were encountered:
Basically, I'm trying to wrap a file with some functions that have variadic parameters:
However, the generated code fails to expose the variadic nature of the calls:
(I added line breaks for readability)
At the moment, I just manually added
, ...
, but that's somewhat sub-optimal.The text was updated successfully, but these errors were encountered: