home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / odtlktv4.zip / ODTLKT / TOOLKIT / IDL / ODRECORD.IDL < prev    next >
Text File  |  1995-12-13  |  2KB  |  57 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. #ifndef _ODRECORD_
  16. #define _ODRECORD_
  17.  
  18. #ifndef _ODDSCLST_
  19. #include "ODDesLst.idl"
  20. #endif
  21.  
  22. //==============================================================================
  23. // Classes defined in this interface
  24. //==============================================================================
  25.  
  26. interface  ODRecord;
  27.  
  28. //==============================================================================
  29. // Classes used by this interface
  30. //==============================================================================
  31.  
  32. interface  ODDescList;
  33.  
  34. //==============================================================================
  35. // ODRecord
  36. //==============================================================================
  37.  
  38. interface ODRecord : ODDescList
  39. {
  40.   void InitODRecord();
  41. #ifdef  __SOMIDL__
  42.   implementation
  43.   {
  44.       functionprefix = ODRecord;
  45.     override:
  46.       somInit,
  47.       somUninit;
  48.     releaseorder:
  49.       somInit,
  50.       somUninit,
  51.       InitODRecord;
  52.   };
  53. #endif
  54. };
  55.  
  56. #endif  //  _ODRECORD_
  57.