home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / tolkit45.zip / os2tk45 / som / include / mia.idl < prev    next >
Text File  |  1999-02-22  |  1KB  |  58 lines

  1. //
  2. //   COMPONENT_NAME: somp
  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. //#  @(#) 2.9 src/somp/mia.idl, somp, som2.1 12/26/95 16:58:00 [7/30/96 14:46:55]
  14.  
  15.  
  16.  
  17. #ifndef mia_idl
  18. #define mia_idl
  19.  
  20. #include <somobj.idl>
  21. #include <somp.idl>
  22. #include <somperrd.idl>
  23.  
  24. interface SOMPMediaInterfaceAbstract : SOMObject
  25.  
  26. // This is the abstract class definition for an interface to
  27. // some media.
  28.  
  29. {
  30.    void sompOpen() raises (SOMPError::sompException);
  31. // Open the media interface.
  32.  
  33.    void sompClose() raises (SOMPError::sompException);
  34. // Close the media interface.
  35.  
  36. #ifdef __SOMIDL__
  37.  
  38. implementation
  39. {
  40.     callstyle=idl;
  41.     dllname="somp.dll";
  42.  
  43.     majorversion = 2;
  44.     minorversion = 1;
  45.  
  46.     releaseorder: sompOpen, sompClose;
  47.  
  48. // Class Modifiers
  49.    filestem = mia;
  50.  
  51. // Method Modifiers
  52.  
  53. };
  54. #endif /* __SOMIDL__ */
  55. };
  56.  
  57. #endif  /* mia_idl */
  58.