home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / som30tk.zip / som30os2.zip / include / sctdef.idl < prev    next >
Text File  |  1996-12-24  |  2KB  |  66 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/sctdef.idl 2.10 5/9/96 15:31:30 [12/24/96 07:39:51]
  14.  
  15.  
  16. #ifndef sctdef_idl
  17. #define sctdef_idl
  18.  
  19. #include <sccommon.idl>
  20. interface SOMTTypedefEntryC : SOMTEntryC
  21. {
  22. readonly attribute SOMTEntryC somtTypedefType;
  23. // The type of the typedef. This does not include pointer stars or
  24. // array declarators.   These must be obtained by examining each
  25. // of the declarators.
  26.  
  27. SOMTCommonEntryC somtGetFirstDeclarator();
  28. // The first declarator for this typedef.
  29. // Declarators of struct members will be instances of SOMTDataEntryC, 
  30. // while declarators of typedefs will be instances of SOMTUserDefinedTypeEntryC.
  31.  
  32. SOMTCommonEntryC somtGetNextDeclarator();
  33. // The next declarator for this typedef, relative to the previous 
  34. // call to this method or somtGetFirstDeclarator.
  35. // Declarators of struct members will be instances of SOMTDataEntryC, 
  36. // while declarators of typedefs will be instances of SOMTUserDefinedTypeEntryC.
  37.  
  38. #ifdef __SOMIDL__
  39.   implementation {
  40.     releaseorder: _get_somtTypedefType, 
  41.           somtGetFirstDeclarator, somtGetNextDeclarator;
  42.   
  43.     //# Class Modifiers
  44.     majorversion = 2;
  45.     minorversion = 2; // 1->2 when override _get_somtTypeCode
  46.     filestem = sctdef;
  47. #ifdef _WIN32
  48.     dllname = "some.dll";
  49. #endif
  50.     callstyle = oidl;
  51.   
  52.     //# Method Modifiers
  53.     somtSetSymbolsOnEntry: override;
  54.     somDumpSelfInt: override;
  55.   
  56.     //# Attribute Modifiers
  57.     somtTypedefType: nodata;
  58.     _get_somtTypeCode: override;
  59.  
  60.   };
  61. #endif /* __SOMIDL__ */
  62. };
  63.  
  64.  
  65. #endif  /* sctdef_idl */
  66.