home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / odtlktv4.zip / ODTLKT / TOOLKIT / IDL / LINKSPCB.IDL < prev    next >
Text File  |  1995-12-13  |  3KB  |  75 lines

  1. /********************************************************************/
  2. /*  Licensed Materials - Property of IBM                            */
  3. /*                                                                  */
  4. /*                                                                  */
  5. /* Copyright (C) International Business Machines Corp., 1994.       */
  6. /* Copyright (C) Apple Computer, Inc., 1994                         */
  7. /*                                                                  */
  8. /*  US Government Users Restricted Rights -                         */
  9. /*  Use, duplication, or disclosure restricted                      */
  10. /*  by GSA ADP Schedule Contract with IBM Corp.                     */
  11. /*                                                                  */
  12. /*                                                                  */
  13. /********************************************************************/
  14.  
  15.  
  16. #ifndef _LINKSPCB_
  17. #define _LINKSPCB_
  18.  
  19. #ifndef _ODOBJECT_
  20. #include "ODObject.idl"
  21. #endif
  22.  
  23. //==============================================================================
  24. // Theory of Operation
  25. //==============================================================================
  26.  
  27. //==============================================================================
  28. // Classes defined in this interface
  29. //==============================================================================
  30.  
  31. interface  ODBaseLinkSpec;
  32.  
  33. //==============================================================================
  34. // Classes used by this interface
  35. //==============================================================================
  36.  
  37. interface  ODStorageUnit;
  38. interface  ODDraft;
  39. interface  ODPart;
  40.  
  41. //==============================================================================
  42. // ODBaseLinkSpec
  43. //==============================================================================
  44.  
  45. interface ODBaseLinkSpec :  ODObject
  46. {
  47.         void WriteLinkSpec(in ODStorageUnit su);
  48.  
  49.         void ReadLinkSpec(in ODStorageUnit su);
  50.  
  51.  
  52. #ifdef __SOMIDL__
  53.         implementation
  54.         {
  55.                 functionprefix = ODBaseLinkSpec;
  56.                 override:
  57.                         somInit,
  58.                         somUninit;
  59.                 releaseorder:
  60.                         WriteLinkSpec,
  61.                         ReadLinkSpec,
  62.                         reserved1,
  63.                         reserved2,
  64.                         reserved3,
  65.                         reserved4;
  66.  
  67.                 majorversion = 1; minorversion = 0;
  68.  
  69.         };
  70. #endif // __SOMIDL__
  71.  
  72. };
  73.  
  74. #endif // _LINKSPCB_
  75.