GetIconFromSuite
GetIconFromSuite Obtain a specified icon from an icon family
#include <Icons.h> Finder Interface
OSErr GetIconFromSuite (theIconData, theSuite, theType );
Handle *theIconData ; receives handle to icon
Handle theSuite ; icon family that contains the icon
ResType theType ; location of the icon in the family
returns Error Code; 0 = no error
GetIconFromSuite returns a handle to the pixel data of the family member
of theSuite specified by theType. If you intend to dispose of this handle, be
sure to call AddIconToSuite with a NIL handle to zero out the family entry.

Notes: This routine is not currently documented in MPW header files (hence, it is
not in any THINK C or THINK Pascal header file either). The information
given above comes from Macintosh Technical Note #306. This tech. note
also gives the inline glue for the call as follows:
pascal OSErr GetIconFromSuite (Handle *theIconData, Handle theSuite,
ResType theType) = {0x303C, 0x0609, 0xABC9};