home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / wpentk.zip / WBPENTK4.DSK / IDMRECO.IDL < prev    next >
Text File  |  1994-10-07  |  1KB  |  55 lines

  1. //
  2. //  idmreco.idl
  3. //
  4. //  CLASS: IDMRecoResult
  5. //
  6. //  CLASS HIERARCHY:
  7. //
  8. //     SOMObject
  9. //       └── IDMResult
  10. //             └── IDMRecoResult
  11. //
  12. //  DESCRIPTION:
  13. //
  14. //     Input Data Reco Result class.
  15. //
  16. #ifndef __IDMRECO_IDL__
  17. #define __IDMRECO_IDL__
  18.  
  19. #include <somcls.idl>
  20.  
  21. #include <idmres.idl>
  22.  
  23. interface IDMRecoResult : IDMResult
  24. {
  25.  
  26.   ULONG idmresGetRecoTrigger ();
  27.  
  28.  
  29.   #ifdef __SOMIDL__
  30.   implementation
  31.   {
  32.     releaseorder: idmresGetRecoTrigger,
  33.                   idmresGetSomethingToReco,
  34.                   idmresSetSomethingToReco,
  35.                   idmresGetRecoState,
  36.                   idmresSetRecoState;
  37.  
  38.     functionprefix = IDMReco_;
  39.     filestem       = idmreco;
  40.     majorversion   = 0;
  41.     minorversion   = 0;
  42.  
  43.     // Method Modifiers
  44.     idmresInitIdmResult: override;
  45.  
  46.     // Passthru sections
  47. #include "passthru.idl"
  48.  
  49.  
  50.   };    /* implementation section  */
  51.   #endif  /* ifdef __SOMIDL__      */
  52. };      /* interface section       */
  53.  
  54. #endif  /* ifdef __IDMRECO_IDL__ */
  55.