home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / som30tk.zip / som30os2.zip / include / scstruct.idl < prev    next >
Text File  |  1996-12-24  |  2KB  |  64 lines

  1. //
  2. //   COMPONENT_NAME: some
  3. //
  4. //   ORIGINS: 27
  5. //
  6. //
  7. //    25H7912  (C)  COPYRIGHT International Business Machines Corp. 1992,1994,1996 
  8. //   All Rights Reserved
  9. //   Licensed Materials - Property of IBM
  10. //   US Government Users Restricted Rights - Use, duplication or
  11. //   disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  12. //
  13. //#  @(#) somc/scstruct.idl 2.9 5/9/96 15:31:28 [12/24/96 07:39:51]
  14.  
  15.  
  16. #ifndef scstruct_idl
  17. #define scstruct_idl
  18.  
  19. #include <scentry.idl>
  20.  
  21. interface SOMTTypedefEntryC;
  22.  
  23. interface SOMTStructEntryC : SOMTEntryC
  24. {
  25.   SOMTTypedefEntryC somtGetFirstMember();
  26.   // The first member of the struct.
  27.   SOMTTypedefEntryC somtGetNextMember();
  28.   // The next member of the struct, relative to the previous call
  29.   // to this method or somtGetFirstMember.
  30.  
  31.   readonly attribute SOMTClassEntryC somtStructClass;
  32.   // The class in which the structure was defined.
  33.  
  34.   readonly attribute boolean somtIsException;
  35.   // Whether the structure is really an exception.
  36. #ifdef __SOMIDL__
  37.   implementation {
  38.     releaseorder: _get_somtStructClass, _get_somtIsException,
  39.         somtGetFirstMember, somtGetNextMember;
  40.   
  41.     //# Class Modifiers
  42.     majorversion = 2;
  43.     minorversion = 1;
  44.     filestem = scstruct;
  45. #ifdef _WIN32
  46.     dllname = "some.dll";
  47. #endif
  48.     callstyle = oidl;
  49.   
  50.     //# Method Modifiers
  51.     somDumpSelfInt: override;
  52.     somtSetSymbolsOnEntry: override;
  53.   
  54.     //# Attribute Modifiers
  55.     somtIsException: nodata;
  56.     somtStructClass: nodata;
  57.  
  58.   };
  59. #endif /* __SOMIDL__ */
  60. };
  61.  
  62.  
  63. #endif  /* scstruct_idl */
  64.