REOBJECT.cs 457 B

1234567891011121314151617181920
  1. using System;
  2. using System.Drawing;
  3. using System.Runtime.InteropServices;
  4. namespace LYFZ.OtherExpansion.SkinControl
  5. {
  6. [StructLayout(LayoutKind.Sequential)]
  7. public class REOBJECT
  8. {
  9. public int cbStruct = Marshal.SizeOf(typeof(REOBJECT));
  10. public int cp;
  11. public Guid clsid;
  12. public IntPtr poleobj;
  13. public IStorage pstg;
  14. public IOleClientSite polesite;
  15. public Size sizel;
  16. public uint dvAspect;
  17. public uint dwFlags;
  18. public uint dwUser;
  19. }
  20. }