diff options
author | Lennart Poettering <lennart@poettering.net> | 2009-03-01 20:28:58 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2009-03-01 20:28:58 +0100 |
commit | e00833399f8ccbaca8bda14b6cffa13cfde91865 (patch) | |
tree | 99e880452e03c77dcc4c57976d84ec517d40437f /src/pulse | |
parent | abdffe9cbed4be26fe05bb1b47213e12eb547c25 (diff) |
introduce seperate vendor/product id fields
Diffstat (limited to 'src/pulse')
-rw-r--r-- | src/pulse/proplist.h | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/src/pulse/proplist.h b/src/pulse/proplist.h index fa44c426..15711c9a 100644 --- a/src/pulse/proplist.h +++ b/src/pulse/proplist.h @@ -150,8 +150,17 @@ PA_C_DECL_BEGIN /** For devices: serial number if applicable. e.g. "4711-0815-1234" */ #define PA_PROP_DEVICE_SERIAL "device.serial" -/** For devices: vendor/product ID if applicable. e.g. 1274:1371 */ -#define PA_PROP_DEVICE_VENDOR_PRODUCT_ID "device.vendor_product_id" +/** For devices: vendor ID if applicable. e.g. 1274 */ +#define PA_PROP_DEVICE_VENDOR_ID "device.vendor.id" + +/** For devices: vendor name if applicable. e.g. "Foocorp Heavy Industries" */ +#define PA_PROP_DEVICE_VENDOR_NAME "device.vendor.name" + +/** For devices: product ID if applicable. e.g. 4565 */ +#define PA_PROP_DEVICE_PRODUCT_ID "device.product.id" + +/** For devices: product name if applicable. e.g. "SuperSpeakers 2000 Pro" */ +#define PA_PROP_DEVICE_PRODUCT_NAME "device.product.name" /** For devices: device class. One of "sound", "modem", "monitor", "filter" */ #define PA_PROP_DEVICE_CLASS "device.class" |