ILockBytes.cs 696 B

123456789101112131415161718
  1. using System;
  2. using System.Runtime.InteropServices;
  3. using System.Runtime.InteropServices.ComTypes;
  4. namespace LYFZ.OtherExpansion.SkinControl
  5. {
  6. [Guid("0000000a-0000-0000-C000-000000000046"), InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
  7. [ComImport]
  8. public interface ILockBytes
  9. {
  10. int ReadAt(ulong ulOffset, IntPtr pv, uint cb, out IntPtr pcbRead);
  11. int WriteAt(ulong ulOffset, IntPtr pv, uint cb, out IntPtr pcbWritten);
  12. int Flush();
  13. int SetSize(ulong cb);
  14. int LockRegion(ulong libOffset, ulong cb, uint dwLockType);
  15. int UnlockRegion(ulong libOffset, ulong cb, uint dwLockType);
  16. int Stat(out System.Runtime.InteropServices.ComTypes.STATSTG pstatstg, uint grfStatFlag);
  17. }
  18. }