home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / som30tk.zip / som30os2.zip / include / scpass.idl < prev    next >
Text File  |  1996-12-24  |  2KB  |  67 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/scpass.idl 2.8 5/9/96 15:31:22 [12/24/96 07:39:50]
  14.  
  15.  
  16. #ifndef scpass_idl
  17. #define scpass_idl
  18.  
  19. #include <scentry.idl>
  20. interface SOMTPassthruEntryC : SOMTEntryC
  21. {
  22.   readonly attribute string somtPassthruBody;
  23.   // The source content text of this passthru entry without
  24.   // any modification. Newlines that were present in the source will
  25.   // still be present.
  26.  
  27.   readonly attribute string somtPassthruLanguage;
  28.   // Returns the name of the language for which this passthru entry
  29.   // is intended. Language names are always all upper case.
  30.  
  31.   readonly attribute string somtPassthruTarget;
  32.   // Returns the target for this passthru entry.
  33.  
  34.   boolean somtIsBeforePassthru();
  35.   // Returns 1 (true) if this passthru entry is to be put at the
  36.   // beginning of the file or 0 (false) if this passthru entry is to
  37.   // go later in the file.
  38.  
  39. #ifdef __SOMIDL__
  40.   implementation {
  41.     releaseorder: _get_somtPassthruBody,_get_somtPassthruTarget,
  42.         _get_somtPassthruLanguage, somtIsBeforePassthru;
  43.   
  44.     //# Class Modifiers
  45.     majorversion = 2;
  46.     minorversion = 1;
  47.     filestem = scpass;
  48. #ifdef _WIN32
  49.     dllname = "some.dll";
  50. #endif
  51.     callstyle = oidl;
  52.   
  53.     //# Method Modifiers
  54.     somtSetSymbolsOnEntry: override;
  55.     somDumpSelfInt: override;
  56.   
  57.     //# Attribute Modifiers
  58.     somtPassthruTarget: nodata;
  59.     somtPassthruLanguage: nodata;
  60.     somtPassthruBody: nodata;
  61.   };
  62. #endif /* __SOMIDL__ */
  63. };
  64.  
  65.  
  66. #endif  /* scpass_idl */
  67.