1
0
mirror of git://sigrok.org/libserialport synced 2023-08-10 21:13:24 +03:00

Rename sp_get_signals() parameter to avoid name clash with Qt headers.

This commit is contained in:
Aurelien Jacobs 2014-08-20 17:40:22 +02:00
parent 900904638b
commit f3ccf157cb

View File

@ -1196,13 +1196,13 @@ void sp_free_event_set(struct sp_event_set *event_set);
* the sp_signal enum. * the sp_signal enum.
* *
* @param port Pointer to port structure. * @param port Pointer to port structure.
* @param signals Pointer to variable to receive result. * @param signal_mask Pointer to variable to receive result.
* *
* @return SP_OK upon success, a negative error code otherwise. * @return SP_OK upon success, a negative error code otherwise.
* *
* @since 0.1.0 * @since 0.1.0
*/ */
enum sp_return sp_get_signals(struct sp_port *port, enum sp_signal *signals); enum sp_return sp_get_signals(struct sp_port *port, enum sp_signal *signal_mask);
/** /**
* Put the port transmit line into the break state. * Put the port transmit line into the break state.