home *** CD-ROM | disk | FTP | other *** search
/ QuickTime 2.0 Developer Kit / QuickTime 2.0 Developer Kit.iso / mac / MAC / Programming Stuff / Interfaces / PInterfaces / Packages.p < prev    next >
Encoding:
Text File  |  1994-11-11  |  1.5 KB  |  73 lines  |  [TEXT/MPS ]

  1. {
  2.      File:        Packages.p
  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. {$IFC UNDEFINED UsingIncludes}
  18. {$SETC UsingIncludes := 0}
  19. {$ENDC}
  20.  
  21. {$IFC NOT UsingIncludes}
  22.  UNIT Packages;
  23.  INTERFACE
  24. {$ENDC}
  25.  
  26. {$IFC UNDEFINED __PACKAGES__}
  27. {$SETC __PACKAGES__ := 1}
  28.  
  29. {$I+}
  30. {$SETC PackagesIncludes := UsingIncludes}
  31. {$SETC UsingIncludes := 1}
  32.  
  33.  
  34. {$IFC UNDEFINED __TYPES__}
  35. {$I Types.p}
  36. {$ENDC}
  37. {    ConditionalMacros.p                                            }
  38.  
  39. {$PUSH}
  40. {$ALIGN MAC68K}
  41. {$LibExport+}
  42.  
  43. CONST
  44.     listMgr                        = 0;                            { list manager }
  45.     dskInit                        = 2;                            { Disk Initializaton }
  46.     stdFile                        = 3;                            { Standard File }
  47.     flPoint                        = 4;                            { Floating-Point Arithmetic }
  48.     trFunc                        = 5;                            { Transcendental Functions }
  49.     intUtil                        = 6;                            { International Utilities }
  50.     bdConv                        = 7;                            { Binary/Decimal Conversion }
  51.     editionMgr                    = 11;                            { Edition Manager }
  52.  
  53.  
  54. PROCEDURE InitPack(packID: INTEGER);
  55.     {$IFC NOT GENERATINGCFM}
  56.     INLINE $A9E5;
  57.     {$ENDC}
  58. PROCEDURE InitAllPacks;
  59.     {$IFC NOT GENERATINGCFM}
  60.     INLINE $A9E6;
  61.     {$ENDC}
  62.  
  63. {$ALIGN RESET}
  64. {$POP}
  65.  
  66. {$SETC UsingIncludes := PackagesIncludes}
  67.  
  68. {$ENDC} {__PACKAGES__}
  69.  
  70. {$IFC NOT UsingIncludes}
  71.  END.
  72. {$ENDC}
  73.