home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 July: Mac OS SDK / Dev.CD Jul 97 SDK1.toast / Development Kits (Disc 1) / Apple Shared Library Manager / ASLM Examples / Sample INIT / Sources / ShowINITLibrary.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-11-19  |  857 b   |  31 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        ShowINITLibrary.h
  3.  
  4.     Contains:    Interface file for everything that the ShowINITLibrary exports
  5.                 including the ShowInit routine.
  6.  
  7.     Copyright:    © 1993 by Apple Computer, Inc., all rights reserved.
  8.  
  9. */
  10.  
  11. #ifndef __SHOWINITLIBRARY__
  12. #define __SHOWINITLIBRARY__
  13.  
  14. #ifndef __TYPES__
  15. #include <Types.h>
  16. #endif
  17.  
  18. /*————————————————————————————————————————————————————————————————————————————————————
  19.     DEFINITIONS AND CONSTANTS
  20. ————————————————————————————————————————————————————————————————————————————————————*/
  21.  
  22. #define kINITLibID                "slm:samp$ShowInitLibrary"
  23. #define kShowInitFunctionSet     "slm:samp$ShowInitFunctionSet,1.1"
  24.  
  25. /*————————————————————————————————————————————————————————————————————————————————————
  26.     Function Set
  27. ————————————————————————————————————————————————————————————————————————————————————*/
  28.  
  29. void    ShowInit( short iconID );
  30.  
  31. #endif