home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / odtlktv4.zip / ODTLKT / TOOLKIT / IDL / ODSTOR.IDL < prev    next >
Text File  |  1995-12-13  |  2KB  |  72 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 _STORAGE_
  17. #define _STORAGE_
  18.  
  19. #ifndef _ODSTORB_
  20. #include "ODStorB.idl"
  21. #endif
  22.  
  23. //==============================================================================
  24. // Classes defined in this interface
  25. //==============================================================================
  26.  
  27. interface   ODStorageSystem;
  28.  
  29. //==============================================================================
  30. // Classes used in this interface
  31. //==============================================================================
  32.  
  33. interface   ODSession;
  34. interface   ODContainer;
  35.  
  36. //==============================================================================
  37. // Implementation Types
  38. //==============================================================================
  39.  
  40.  
  41. //==============================================================================
  42. // ODStorageSystem
  43. //==============================================================================
  44.  
  45. interface ODStorageSystem : ODBaseStorageSystem   
  46. {
  47.  
  48. #ifdef __SOMIDL__
  49.   implementation
  50.   {
  51.       functionprefix = ODStorageSystem;
  52.  
  53.     override:
  54.       somInit,
  55.       somUninit,
  56.       Purge,
  57.       GetSession,
  58.       AcquireContainer,
  59.       CreateContainer,
  60.       NeedSpace,
  61.       CreateTypeList,
  62.       CreatePlatformTypeList;
  63.  
  64.     releaseorder:
  65.       GetHeap;
  66.  
  67.   };
  68. #endif
  69. };
  70.  
  71. #endif  // _STORAGE_
  72.