Browse Source

lib/srdb1: new col type DB1_UNKNOWN

Ovidiu Sas 11 years ago
parent
commit
1378ccf131
1 changed files with 2 additions and 1 deletions
  1. 2 1
      lib/srdb1/db_val.h

+ 2 - 1
lib/srdb1/db_val.h

@@ -56,7 +56,8 @@ typedef enum {
 	DB1_STR,        /**< represents a string of 'str' type        */
 	DB1_DATETIME,   /**< represents date and time                 */
 	DB1_BLOB,       /**< represents a large binary object         */
-	DB1_BITMAP      /**< an one-dimensional array of 32 flags     */
+	DB1_BITMAP,     /**< an one-dimensional array of 32 flags     */
+	DB1_UNKNOWN     /**< represents an unknown type               */
 } db_type_t;