]> sigrok.org Git - libsigrok.git/commitdiff
libsigrok.h: Add some missing enum names for consistency.
authorUwe Hermann <redacted>
Sun, 4 May 2014 17:58:56 +0000 (19:58 +0200)
committerUwe Hermann <redacted>
Sun, 4 May 2014 18:53:53 +0000 (20:53 +0200)
libsigrok.h

index 552e1075e1d35ed1dd56f06f4e6e5df6a466c353..4a81b96d371b1ce265da25b133894b84556a78ae 100644 (file)
@@ -63,7 +63,7 @@ extern "C" {
  */
 
 /** Status/error codes returned by libsigrok functions. */
-enum {
+enum sr_error_code {
        SR_OK                =  0, /**< No error. */
        SR_ERR               = -1, /**< Generic/unspecified error. */
        SR_ERR_MALLOC        = -2, /**< Malloc/calloc/realloc error. */
@@ -864,7 +864,7 @@ struct sr_dev_inst {
 };
 
 /** Types of device instance, struct sr_dev_inst.type */
-enum {
+enum sr_dev_inst_type {
        /** Device instance type for USB devices. */
        SR_INST_USB = 10000,
        /** Device instance type for serial port devices. */
@@ -874,7 +874,7 @@ enum {
 };
 
 /** Device instance status, struct sr_dev_inst.status */
-enum {
+enum sr_dev_inst_status {
        /** The device instance was not found. */
        SR_ST_NOT_FOUND = 10000,
        /** The device instance was found, but is still booting. */