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 Development Framework / ODFDev / ODF / OS / FWOSMisc / FWVersn.h < prev    next >
Encoding:
Text File  |  1996-09-17  |  766 b   |  28 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                FWVersn.h
  4. //    Release Version:    $ ODF 2 $
  5. //
  6. //    Author:                Damon Cokenias
  7. //
  8. //    Copyright:    (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  9. //
  10. //========================================================================================
  11.  
  12. #ifndef FWVERSN_H
  13. #define FWVERSN_H
  14.  
  15. #ifndef SLVERSN_H
  16. #include "SLVersn.h"
  17. #endif
  18.  
  19. void FW_UnpackVersion (FW_Version version, char& major, char& minor, char& fix,
  20.         char& internal, FW_EVersionStage& stage);
  21.     // Extract the components of an FW_Version
  22.  
  23. FW_Version FW_PackVersion (char major, char minor, char fix, char internal,
  24.         FW_EVersionStage stage);
  25.     // Build an FW_Version given the five components
  26.  
  27. #endif
  28.