home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1994 August: Tool Chest / Dev.CD Aug 94.toast / Tool Chest / Developer Utilities / Installer 4.0GM SDK / Installer 4.0 / DeveloperInterfaces / CIncludes / SetupFunctionHeader.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-02-10  |  751 b   |  40 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        SetupFunctionHeader.h
  3.  
  4.     Contains:    xxx put contents here xxx
  5.  
  6.     Written by:    Kevin Aitken
  7.  
  8.     Copyright:    © 1993 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     Change History (most recent first):
  11.  
  12.          <3>     7/12/93    rdm        Added #ifndef __SetupFunctionHeader__.
  13.          <2>     6/21/93    KBA        Added fCallBackProcPtr field to EnvironmentSetupPB struct.
  14.          <1>      4/1/93    KBA        first checked in
  15.  
  16. */
  17.  
  18. #ifndef __SetupFunctionHeader__
  19. #define __SetupFunctionHeader__
  20.  
  21. #ifndef __Files__
  22. #include <Files.h>
  23. #endif
  24.  
  25. #ifndef __Types__
  26. #include <Types.h>
  27. #endif
  28.  
  29.  
  30. typedef  struct {
  31.     ProcPtr            fCallBackProcPtr;
  32.     FSSpec            fTargetFSSpec;
  33.     short            fSystemVRefNum;
  34. } EnvironmentSetupPB, *EnvironmentSetupPBPtr;
  35.  
  36. long    EnvironmentSetupFunction( EnvironmentSetupPBPtr );
  37.  
  38.  
  39. #endif
  40.