home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 April: Mac OS SDK / Dev.CD Apr 98 SDK1.toast / Development Kits (Disc 1) / Apple Shared Library Manager / ASLM Examples / FunctionSetInfo / Sources / MathFSetSub.exp < prev    next >
Encoding:
Text File  |  1996-11-19  |  749 b   |  32 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        MathFSetSub.exp
  3.  
  4.     Contains:    Exports file for the MathFSetSub function set.
  5.  
  6.     Copyright:    © 1993 by Apple Computer, Inc., all rights reserved.
  7.  
  8. */
  9.  
  10.  
  11. #include "MathFSet.h"
  12.  
  13. #define kMathFSetSubID "appl:math$Sub,1.1"
  14.  
  15. Library
  16. {
  17.     id = "appl:math$Sub";
  18.     version = 1.1;
  19.     memory = client;
  20. };
  21.  
  22. // When we export the function set, we need to specify the interfaceID so users will
  23. // know it has the "Math" function set interface. We also need to put "extern"
  24. // in front of the functions we export so they will also be exported by name which
  25. // allows users to get the address of the functions by calling GetFunctionPointer().
  26.  
  27. FunctionSet MathFSetSub
  28. {
  29.     interfaceID= kMathFSetInterfaceID;
  30.     exports = extern MathFunction1, extern MathFunction2;
  31. };
  32.