home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / som30tk.zip / som30os2.zip / include / scusrtyp.idl < prev    next >
Text File  |  1996-12-24  |  1KB  |  58 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/scusrtyp.idl 2.8 5/9/96 15:31:36 [12/24/96 07:39:53]
  14.  
  15.  
  16. #ifndef scusrtyp_idl
  17. #define scusrtyp_idl
  18.  
  19. #include <sccommon.idl>
  20. interface SOMTUserDefinedTypeEntryC : SOMTCommonEntryC
  21. {
  22.  
  23.   readonly attribute SOMTTypedefEntryC somtOriginalTypedef;
  24.   // The typedef that defined the user-defined type.
  25.  
  26.   readonly attribute SOMTEntryC somtBaseTypeObj;
  27.   // The object representing the base type 
  28.   // (eg. short, float, unsigned long) of a user-defined type, 
  29.   // skipping over any intermediate user-defined types.
  30.  
  31. #ifdef __SOMIDL__
  32.   implementation {
  33.     releaseorder: _get_somtOriginalTypedef, _get_somtBaseTypeObj;
  34.   
  35.     //# Class Modifiers
  36.     majorversion = 2;
  37.     minorversion = 1;
  38.     filestem = scusrtyp;
  39. #ifdef _WIN32
  40.     dllname = "some.dll";
  41. #endif
  42.     callstyle = oidl;
  43.   
  44.     //# Method Modifiers
  45.     somtSetSymbolsOnEntry: override;
  46.     somDumpSelfInt: override;
  47.     _get_somtTypeObj: override;
  48.   
  49.     //# attribute modifiers
  50.     somtOriginalTypedef: nodata;
  51.     somtBaseTypeObj: nodata;
  52.   };
  53. #endif /* __SOMIDL__ */
  54. };
  55.  
  56.  
  57. #endif  /* scusrtyp_idl */
  58.