Lines Matching refs:wtl
1485 WMFTRACK *wtl=NULL;
1490 wtl = (WMFTRACK *) malloc(sizeof(WMFTRACK));
1491 if(!wtl)return(4);
1492 wtl->buf = malloc(initsize); // no need to zero the memory
1493 if(!wtl->buf){
1494 free(wtl);
1499 free(wtl->buf);
1500 free(wtl);
1503 wtl->fp = fp;
1504 wtl->allocated = initsize;
1505 wtl->used = 0;
1506 wtl->records = 0;
1507 wtl->PalEntries = 0;
1508 wtl->chunk = chunksize;
1509 wtl->largest = 0; /* only used by WMF */
1510 wtl->sumObjects = 0; /* only used by WMF */
1512 *wt=wtl;
1524 WMFTRACK *wtl;
1526 wtl=*wt;
1527 if(!wtl)return(2);
1528 free(wtl->buf);
1529 free(wtl);