IStream.cs 1.0 KB

123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Runtime.InteropServices;
  5. namespace Biff8Excel.COM
  6. {
  7. [ComImport, Guid("0000000c-0000-0000-C000-000000000046"), InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  8. public interface IStreamRef
  9. {
  10. void Read([Out, MarshalAs(UnmanagedType.LPArray, SizeParamIndex = 1)] byte[] pv, int cb, ref IntPtr pcbRead);
  11. void Write([MarshalAs(UnmanagedType.LPArray, SizeParamIndex = 1)] byte[] pv, int cb, ref IntPtr pcbWritten);
  12. void Seek(long dlibMove, int dwOrigin, ref IntPtr plibNewPosition);
  13. void SetSize(long libNewSize);
  14. void CopyTo(IStreamRef pstm, long cb, IntPtr pcbRead, IntPtr pcbWritten);
  15. void Commit(int grfCommitFlags);
  16. void Revert();
  17. void LockRegion(long libOffset, long cb, int dwLockType);
  18. void UnlockRegion(long libOffset, long cb, int dwLockType);
  19. void Stat(out STATSTG pstatstg, int grfStatFlag);
  20. void Clone(out IStreamRef ppstm);
  21. }
  22. }