home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 January: Mac OS SDK / Dev.CD Jan 97 SDK2.toast / Development Kits (Disc 2) / OpenDoc / OpenDoc Development / Debugging Support / OpenDoc™ Source Code / Storage / StorInit.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-28  |  715 b   |  34 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        StorInit.cpp
  3.  
  4.     Contains:    Init routines for the Storage shared library
  5.  
  6.     Owned by:    Vincent Lo
  7.  
  8.     Copyright:    © 1994 - 1995 by Apple Computer, Inc., all rights reserved.
  9.  
  10.     Change History (most recent first):
  11.  
  12.          <4>     5/26/95    VL        1251403: Multithreading naming support.
  13.          <3>     1/12/95    jpa        Don't use obsolete Toolbox names [1211211].
  14.                                     Don't export cfm init [1210936]
  15.          <2>     9/29/94    RA        1189812: Mods for 68K build.
  16.          <1>     7/19/94    VL        first checked in
  17.  
  18.     To Do:
  19.     In Progress:
  20. */
  21.  
  22.  
  23. #ifndef __USERSRCM__
  24. #include "UseRsrcM.h"
  25. #endif
  26.  
  27. extern "C" pascal OSErr StorageCFMInit( CFragInitBlockPtr );
  28.  
  29. pascal OSErr StorageCFMInit (CFragInitBlockPtr initBlkPtr)
  30. {
  31.     return InitLibraryResources(initBlkPtr);
  32. }
  33.  
  34.