home *** CD-ROM | disk | FTP | other *** search
- /*
- File: Packages.h
-
- Copyright: © 1984-1994 by Apple Computer, Inc.
- All rights reserved.
-
- Version: Universal Interfaces 2.0a3 ETO #16, MPW prerelease. Friday, November 11, 1994.
-
- Bugs?: If you find a problem with this file, send the file and version
- information (from above) and the problem description to:
-
- Internet: apple.bugs@applelink.apple.com
- AppleLink: APPLE.BUGS
-
- */
-
- #ifndef __PACKAGES__
- #define __PACKAGES__
-
-
- #ifndef __TYPES__
- #include <Types.h>
- #endif
- /* #include <ConditionalMacros.h> */
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- #if GENERATINGPOWERPC
- #pragma options align=mac68k
- #endif
-
- #ifdef __CFM68K__
- #pragma lib_export on
- #endif
-
-
- enum {
- listMgr = 0, /* list manager */
- dskInit = 2, /* Disk Initializaton */
- stdFile = 3, /* Standard File */
- flPoint = 4, /* Floating-Point Arithmetic */
- trFunc = 5, /* Transcendental Functions */
- intUtil = 6, /* International Utilities */
- bdConv = 7, /* Binary/Decimal Conversion */
- editionMgr = 11 /* Edition Manager */
- };
-
- extern pascal void InitPack(short packID)
- ONEWORDINLINE(0xA9E5);
- extern pascal void InitAllPacks(void)
- ONEWORDINLINE(0xA9E6);
-
- #ifdef __CFM68K__
- #pragma lib_export off
- #endif
-
- #if GENERATINGPOWERPC
- #pragma options align=reset
- #endif
-
- #ifdef __cplusplus
- }
- #endif
-
- #endif /* __PACKAGES__ */
-