Update .gitignore
[b43-tools.git] / fwcutter / fwcutter.h
index 2e47073cc7db47def23717b6e33fce13303f659e..4a887b632459376834def552d193e4fc4673812f 100644 (file)
@@ -9,6 +9,9 @@
 #define fwcutter_stringify(x)  fwcutter_stringify_1(x)
 #define FWCUTTER_VERSION       fwcutter_stringify(FWCUTTER_VERSION_)
 
+#undef ARRAY_SIZE
+#define ARRAY_SIZE(array)      (sizeof(array) / sizeof((array)[0]))
+
 typedef uint16_t be16_t; /* Big-endian 16bit */
 typedef uint32_t be32_t; /* Big-endian 32bit */
 
@@ -65,6 +68,7 @@ struct extract {
 
 struct file {
        const char *name;
+       const char *id;
        const char *ucode_version;
        const char *md5;
        const struct extract *extract;