home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Dream 48
/
Amiga_Dream_48.iso
/
Atari
/
c
/
libs
/
gemfast
/
gemfut15.lzh
/
AESUTRS3.C
< prev
next >
Wrap
C/C++ Source or Header
|
1989-08-26
|
740b
|
29 lines
/**************************************************************************
*
* AESFAST PD utilties.
*
* Resource-related utilities 3...
* rsc_treefix
*************************************************************************/
#include <gemfast.h>
/*-------------------------------------------------------------------------
* rsc_treefix - Do object x/y fixup for all objects in a tree.
*-----------------------------------------------------------------------*/
void
rsc_treefix(ptree)
register OBJECT *ptree;
{
register int objcounter;
objcounter = -1;
do {
objcounter++;
rsrc_obfix(ptree, objcounter);
} while (!(ptree[objcounter].ob_flags & LASTOB));
}