home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / opendc12.zip / od124os2.exe / od12otk1.exe / include / SUCursor.idl < prev    next >
Text File  |  1997-04-02  |  3KB  |  88 lines

  1. /* @(#)Z 1.4 com/src/storage/idl/SUCursor.idl, odstorage, od96os2, odos29712d 97/03/21 17:20:13 (96/10/29 09:33:02) */
  2. //#====START_GENERATED_PROLOG======================================
  3. //#
  4. //#
  5. //#   COMPONENT_NAME: odstorage
  6. //#
  7. //#   CLASSES: none
  8. //#
  9. //#   ORIGINS: 82,27
  10. //#
  11. //#
  12. //#   (C) COPYRIGHT International Business Machines Corp. 1995,1996
  13. //#   All Rights Reserved
  14. //#   Licensed Materials - Property of IBM
  15. //#   US Government Users Restricted Rights - Use, duplication or
  16. //#   disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  17. //#       
  18. //#   IBM DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  19. //#   ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  20. //#   PURPOSE. IN NO EVENT SHALL IBM BE LIABLE FOR ANY SPECIAL, INDIRECT OR
  21. //#   CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
  22. //#   USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
  23. //#   OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE
  24. //#   OR PERFORMANCE OF THIS SOFTWARE.
  25. //#
  26. //#====END_GENERATED_PROLOG========================================
  27. //#
  28.  
  29. //#    Copyright:    (r) 1993-1994 by Apple Computer, Inc., all rights reserved.
  30.  
  31. #ifndef _SUCURSOR_
  32. #define _SUCURSOR_
  33.  
  34. #ifndef _ODOBJECT_
  35. #include "ODObject.idl"
  36. #endif
  37.  
  38. //==============================================================================
  39. // Classes defined in this interface
  40. //==============================================================================
  41. interface  ODStorageUnitCursor;
  42.  
  43. //==============================================================================
  44. // Classes used by this interface
  45. //==============================================================================
  46. interface    ODStorageUnit;
  47.  
  48. //==============================================================================
  49. // ODStorageUnitCursor
  50. //==============================================================================
  51.  
  52. interface ODStorageUnitCursor : ODObject
  53. {
  54.  
  55.     void GetProperty(out ODPropertyName propertyName);
  56.     
  57.     void GetValueType(out ODValueType valueType);
  58.                     
  59.     void GetValueIndex(out ODValueIndex valueIndex);
  60.  
  61.      void SetProperty(in ODPropertyName propertyName);
  62.     
  63.     void SetValueType(in ODValueType valueType);
  64.     
  65.     void SetValueIndex(in ODValueIndex valueIndex);
  66.     
  67. #ifdef __SOMIDL__
  68.     implementation
  69.     {
  70.     majorversion = 1; minorversion = 0;
  71.       functionprefix = ODStorageUnitCursor;
  72.     override:
  73.         somUninit;
  74.     releaseorder:
  75.         reserved1,
  76.         GetProperty,
  77.         GetValueType,
  78.         GetValueIndex,
  79.         SetProperty,
  80.         SetValueType,
  81.         SetValueIndex;
  82.     };
  83.  
  84. #endif
  85. };
  86.  
  87. #endif  // _SUCURSOR_
  88.