GetLabel
GetLabel Get color and string used in the lable menu of the Finder
#include <Icons.h> Finder Interface
OSErr GetLabel (labelNumber, labelColor, labelString );
short labelNumber ; number of label
RGBColor *labelColor ; receives label color
Str255 labelString ; receives label string from Finder menu
returns Error Code; 0 = no error
GetLabel returns the actual color and string used in the label menu of the
Finder and in the labels control panel. in labelColor and labelString
respectively. This information is useful case you wish to include the label text
or color when displaying a file's icon in your application.

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 GetLabel ( short labelNumber, RGBColor labelColor,
Str255 labelString) = {0x303C, 0x061F, 0xABC9};