update device name instead of record
[mTask.git] / client / sds.h
index ab67bc8..4179f47 100644 (file)
@@ -3,12 +3,11 @@
 
 #include <stdbool.h>
 
-#define MAXSDSS 100
-
 struct sds {
        int id;
-       int value;
        bool used;
+       char type;
+       int value;
 };
 
 void sds_init(void);