X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=images%2Fobject.h;h=4f03166d485c508348bc247fe18e8fa01b648b0e;hb=97c0f0673d3bf8f426afb784e8b419c8931977cb;hp=26d850ba43ca39057ae4c40d4118c8f0492d543b;hpb=caa88a0e3b694ddb2a518b9b620355c2631735d2;p=libucw.git diff --git a/images/object.h b/images/object.h index 26d850ba..4f03166d 100644 --- a/images/object.h +++ b/images/object.h @@ -12,13 +12,13 @@ #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