Subversion Repositories filter_foundry

Compare Revisions

Regard whitespace Rev 208 → Rev 209

/trunk/make_mac.c
42,6 → 42,7
long origsize,newsize,parm_type,parm_id;
OSErr e = noErr;
Str255 title;
long event_id;
 
#ifdef MACMACHO
FSRef inref,outref;
81,7 → 82,7
origsize = GetHandleSize(hpipl);
SetHandleSize(hpipl,origsize+0x300); /* some slop for fixup to work with */
HLock(hpipl);
newsize = fixpipl((PIPropertyList*) *hpipl,origsize,title);
newsize = fixpipl((PIPropertyList*) *hpipl,origsize,title,&event_id);
HUnlock(hpipl);
SetHandleSize(hpipl,newsize);
 
94,7 → 95,7
if( (h = Get1Resource(typeAETE,AETE_ID)) ){
SetHandleSize(h,4096);
HLock(h);
newsize = aete_generate((unsigned char*)*h, &gdata->parm);
newsize = aete_generate((unsigned char*)*h, &gdata->parm, event_id);
HUnlock(h);
SetHandleSize(h,newsize);