IStorage.cs 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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("0000000b-0000-0000-C000-000000000046"), InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  8. public interface IStorage
  9. {
  10. void CreateStream(string pwcsName, int grfMode, int reserved1, int reserved2, out IStreamRef ppstm);
  11. void OpenStream(string pwcsName, IntPtr reserved1, int grfMode, int reserved2, out IStreamRef ppstm);
  12. void CreateStorage(string pwcsName, int grfMode, int reserved1, int reserved2, out IStorage ppstg);
  13. void OpenStorage(string pwcsName, IStorage pstgPriority, int grfMode, IntPtr snbExclude, int reserved, out IStorage ppstg);
  14. void CopyTo(int ciidExclude, IntPtr rgiidExclude, IntPtr snbExclude, IStorage pstgDest);
  15. void MoveElementTo(string pwcsName, IStorage pstgDest, string pwcsNewName, int grfFlags);
  16. void Commit(int grfCommitFlags);
  17. void Revert();
  18. void EnumElements(int reserved1, IntPtr reserved2, int reserved3, out IEnumStatStg ppenum);
  19. void DestroyElement(string pwcsName);
  20. void RenameElement(string pwcsOldName, string pwcsNewName);
  21. void SetElementTimes(string pwcsName, FILETIME pctime, FILETIME patime, FILETIME pmtime);
  22. void SetClass(Guid clsid);
  23. void SetStateBits(int grfStateBits, int grfMask);
  24. void Stat(out STATSTG pstatstg, int grfStatFlag);
  25. }
  26. }