Extend mbus_record with storage number, tariff and device

This commit is contained in:
Stefan Wahren
2013-11-07 00:31:03 +01:00
parent 58778ba9bc
commit e1ca652bf0

View File

@ -143,6 +143,9 @@ typedef struct _mbus_record {
char *unit; /**< Quantity unit (e.g. Wh) */ char *unit; /**< Quantity unit (e.g. Wh) */
char *function_medium; /**< Quantity medium or function (e.g. Electricity) */ char *function_medium; /**< Quantity medium or function (e.g. Electricity) */
char *quantity; /**< Quantity type (e.g. Energy) */ char *quantity; /**< Quantity type (e.g. Energy) */
int device; /**< Quantity device */
long tariff; /**< Quantity tariff */
long storage_number; /**< Quantity storage number */
} mbus_record; } mbus_record;
/** /**