IStorage.cs 1.5 KB

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Runtime.InteropServices;
  3. using System.Runtime.InteropServices.ComTypes;
  4. namespace LYFZ.OtherExpansion.SkinControl
  5. {
  6. [Guid("0000000b-0000-0000-C000-000000000046"), InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  7. [ComImport]
  8. public interface IStorage
  9. {
  10. int CreateStream(string pwcsName, uint grfMode, uint reserved1, uint reserved2, out IStream ppstm);
  11. int OpenStream(string pwcsName, IntPtr reserved1, uint grfMode, uint reserved2, out IStream ppstm);
  12. int CreateStorage(string pwcsName, uint grfMode, uint reserved1, uint reserved2, out IStorage ppstg);
  13. int OpenStorage(string pwcsName, IStorage pstgPriority, uint grfMode, IntPtr snbExclude, uint reserved, out IStorage ppstg);
  14. int CopyTo(uint ciidExclude, Guid rgiidExclude, IntPtr snbExclude, IStorage pstgDest);
  15. int MoveElementTo(string pwcsName, IStorage pstgDest, string pwcsNewName, uint grfFlags);
  16. int Commit(uint grfCommitFlags);
  17. int Revert();
  18. int EnumElements(uint reserved1, IntPtr reserved2, uint reserved3, out IEnumSTATSTG ppenum);
  19. int DestroyElement(string pwcsName);
  20. int RenameElement(string pwcsOldName, string pwcsNewName);
  21. int SetElementTimes(string pwcsName, System.Runtime.InteropServices.ComTypes.FILETIME pctime, System.Runtime.InteropServices.ComTypes.FILETIME patime, System.Runtime.InteropServices.ComTypes.FILETIME pmtime);
  22. int SetClass(Guid clsid);
  23. int SetStateBits(uint grfStateBits, uint grfMask);
  24. int Stat(out System.Runtime.InteropServices.ComTypes.STATSTG pstatstg, uint grfStatFlag);
  25. }
  26. }