Searched defs:Use (Results 1 - 1 of 1) sorted by relevance

/inkscape/src/libuemf/
H A Dupmf.c497 \param Size Number of bytes to allocate for Data (may be >Use if padding is present)
498 \param Use Number of data bytes in Data (whether or not Data is actually copied)
508 U_PSEUDO_OBJ *U_PO_create(char *Data, size_t Size, size_t Use, uint32_t Type){ argument
509 if(Use>Size)return(NULL);
516 po->Used = Use;
518 if(Data){ memcpy(po->Data, Data, Use); } /* if Use < Size uninitialized bytes will be present! */

Completed in 76 milliseconds