mac-rom/Interfaces/PInterfaces/PickerIntf.p
Elliot Nunn 4325cdcc78 Bring in CubeE sources
Resource forks are included only for .rsrc files. These are DeRezzed into their data fork. 'ckid' resources, from the Projector VCS, are not included.

The Tools directory, containing mostly junk, is also excluded.
2017-12-26 09:52:23 +08:00

43 lines
894 B
OpenEdge ABL

{
File: PickerIntf.p
As of MPW 3.0, interface files were reorganized to more closely
match "Inside Macintosh" reference books and be more consistant
from language to language.
Interfaces for the Color Picker are now found in Picker.p.
This file, which includes Picker.p, is provided for compatibility
with old sources.
Pascal Interface to the Macintosh Libraries
Copyright Apple Computer, Inc. 1988
All Rights Reserved
}
{$IFC UNDEFINED UsingIncludes}
{$SETC UsingIncludes := 0}
{$ENDC}
{$IFC NOT UsingIncludes}
UNIT PickerIntf;
INTERFACE
{$ENDC}
{$IFC UNDEFINED UsingPickerIntf}
{$SETC UsingPickerIntf := 1}
{$I+}
{$SETC PickerIntfIncludes := UsingIncludes}
{$SETC UsingIncludes := 1}
{$IFC UNDEFINED UsingPicker}
{$I $$Shell(PInterfaces)Picker.p}
{$ENDC}
{$SETC UsingIncludes := PickerIntfIncludes}
{$ENDC} { UsingPickerIntf }
{$IFC NOT UsingIncludes}
END.
{$ENDC}