home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1995 February: Tool Chest / Dev.CD Feb 95 / Dev.CD Feb 95.toast / New System Software Extensions / ASLM SDK v1.1.2 / ASLM Examples / ExampleLibrary / Sources / ExampleLibrary.exp < prev    next >
Encoding:
Text File  |  1994-11-21  |  731 b   |  39 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        ExampleLibrary.exp
  3.  
  4.     Contains:    Export declarations for ExampleLibrary
  5.  
  6.     Copyright:    © 1992-1993 by Apple Computer, Inc., all rights reserved.
  7.  
  8. */
  9.  
  10. #include <Version.h>
  11. #include "ExampleClass.h"
  12. #include <LibraryManager.h>
  13.  
  14. #define kExampleLibID    "appl$ExampleLibrary,1.1"
  15.  
  16. Library
  17. {
  18.     id = kExampleLibID;
  19.     version = 1.1;
  20.     memory = client;
  21.     flags=segunload;
  22. };
  23.  
  24. Class TExampleClass
  25. {
  26.     flags = newobject;
  27. };
  28.  
  29. FunctionSet ExampleFSet
  30. {
  31.     id = kExampleFunctionSet;
  32. // 
  33. // We could use the following export line, but we want all exported
  34. // functions from the library to be exported, so we say nothing!
  35. //
  36. //    exports = Hello, extern HelloC, pascal extern HelloPascal, Goodbye,
  37. //             pascal GoodbyePascal, TExampleClass::Test;
  38. };
  39.