]> mj.ucw.cz Git - libucw.git/blobdiff - images/object.h
XTypes: Added support to configuration and option parser.
[libucw.git] / images / object.h
index 26d850ba43ca39057ae4c40d4118c8f0492d543b..4f03166d485c508348bc247fe18e8fa01b648b0e 100644 (file)
 #endif
 
 struct image_obj_info {
-  uns cols;
-  uns rows;
-  uns colors;
+  uint cols;
+  uint rows;
+  uint colors;
   enum image_format thumb_format;
-  uns thumb_cols;
-  uns thumb_rows;
-  uns thumb_size;
+  uint thumb_cols;
+  uint thumb_rows;
+  uint thumb_size;
   byte *thumb_data;
 };
 
@@ -26,10 +26,10 @@ struct odes;
 struct mempool;
 struct image_signature;
 
-uns get_image_obj_info(struct image_obj_info *ioi, struct odes *o);
-uns get_image_obj_thumb(struct image_obj_info *ioi, struct odes *o, struct mempool *pool);
+uint get_image_obj_info(struct image_obj_info *ioi, struct odes *o);
+uint get_image_obj_thumb(struct image_obj_info *ioi, struct odes *o, struct mempool *pool);
 struct image *read_image_obj_thumb(struct image_obj_info *ioi, struct fastbuf *fb, struct image_io *io, struct mempool *pool);
 void put_image_obj_signature(struct odes *o, struct image_signature *sig);
-uns get_image_obj_signature(struct image_signature *sig, struct odes *o);
+uint get_image_obj_signature(struct image_signature *sig, struct odes *o);
 
 #endif