FORMATETC.cs 272 B

1234567891011121314
  1. using System;
  2. using System.Runtime.InteropServices;
  3. namespace LYFZ.OtherExpansion.SkinControl
  4. {
  5. [ComVisible(false)]
  6. public struct FORMATETC
  7. {
  8. public CLIPFORMAT cfFormat;
  9. public IntPtr ptd;
  10. public DVASPECT dwAspect;
  11. public int lindex;
  12. public TYMED tymed;
  13. }
  14. }