home *** CD-ROM | disk | FTP | other *** search
/ QuickTime 2.0 Developer Kit / QuickTime 2.0 Developer Kit.iso / mac / MAC / Programming Stuff / Interfaces / CIncludes / Packages.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-11-11  |  1.4 KB  |  68 lines  |  [TEXT/MPS ]

  1. /*
  2.      File:        Packages.h
  3.  
  4.      Copyright:    © 1984-1994 by Apple Computer, Inc.
  5.                  All rights reserved.
  6.  
  7.      Version:    Universal Interfaces 2.0a3  ETO #16, MPW prerelease.  Friday, November 11, 1994. 
  8.  
  9.      Bugs?:        If you find a problem with this file, send the file and version
  10.                  information (from above) and the problem description to:
  11.  
  12.                      Internet:    apple.bugs@applelink.apple.com
  13.                      AppleLink:    APPLE.BUGS
  14.  
  15. */
  16.  
  17. #ifndef __PACKAGES__
  18. #define __PACKAGES__
  19.  
  20.  
  21. #ifndef __TYPES__
  22. #include <Types.h>
  23. #endif
  24. /*    #include <ConditionalMacros.h>                                */
  25.  
  26. #ifdef __cplusplus
  27. extern "C" {
  28. #endif
  29.  
  30. #if GENERATINGPOWERPC
  31. #pragma options align=mac68k
  32. #endif
  33.  
  34. #ifdef __CFM68K__
  35. #pragma lib_export on
  36. #endif
  37.  
  38.  
  39. enum {
  40.     listMgr                        = 0,                            /* list manager */
  41.     dskInit                        = 2,                            /* Disk Initializaton */
  42.     stdFile                        = 3,                            /* Standard File */
  43.     flPoint                        = 4,                            /* Floating-Point Arithmetic */
  44.     trFunc                        = 5,                            /* Transcendental Functions */
  45.     intUtil                        = 6,                            /* International Utilities */
  46.     bdConv                        = 7,                            /* Binary/Decimal Conversion */
  47.     editionMgr                    = 11                            /* Edition Manager */
  48. };
  49.  
  50. extern pascal void InitPack(short packID)
  51.  ONEWORDINLINE(0xA9E5);
  52. extern pascal void InitAllPacks(void)
  53.  ONEWORDINLINE(0xA9E6);
  54.  
  55. #ifdef __CFM68K__
  56. #pragma lib_export off
  57. #endif
  58.  
  59. #if GENERATINGPOWERPC
  60. #pragma options align=reset
  61. #endif
  62.  
  63. #ifdef __cplusplus
  64. }
  65. #endif
  66.  
  67. #endif /* __PACKAGES__ */
  68.