home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / tolkit45.zip / os2tk45 / som / include / fmib.idl < prev    next >
Text File  |  1999-02-22  |  1KB  |  63 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/fmib.idl, somp, som2.1 12/26/95 16:55:10 [7/30/96 14:46:50]
  14.  
  15.  
  16. #ifndef fmib_idl
  17. #define fmib_idl
  18.  
  19. #include <fmi.idl>
  20. #include <somp.idl>
  21. interface SOMPBinaryFileMedia : SOMPAsciiMediaInterface
  22.  
  23. // The SOMPBinaryFileMedia class provides an interface to the file
  24. // system which writes numbers in binary.
  25.  
  26. {
  27. #ifdef __SOMIDL__
  28.  
  29. implementation
  30. {
  31.    callstyle=idl;
  32.    dllname="somp.dll";
  33.  
  34. // Class Modifiers
  35.    majorversion = 2;
  36.    minorversion = 1;
  37.    filestem = fmib;
  38.  
  39. // Method Modifiers
  40.    sompWriteOctet: override;
  41.    sompWriteShort: override;
  42.    sompWriteUnsignedShort: override;
  43.    sompWriteLong: override;
  44.    sompWriteUnsignedLong: override;
  45.    sompWriteDouble: override;
  46.    sompWriteFloat: override;
  47.    sompWriteString: override;
  48.    sompReadOctet: override;
  49.    sompReadShort: override;
  50.    sompReadUnsignedShort: override;
  51.    sompReadLong: override;
  52.    sompReadUnsignedLong: override;
  53.    sompReadDouble: override;
  54.    sompReadFloat: override;
  55.    sompReadString: override;
  56.    sompReadStringToBuffer: override;
  57.  
  58. };
  59. #endif /* __SOMIDL__ */
  60. };
  61.  
  62. #endif  /* fmib_idl */
  63.