STGMEDIUM.cs 231 B

123456789101112
  1. using System;
  2. using System.Runtime.InteropServices;
  3. namespace LYFZ.OtherExpansion.SkinControl
  4. {
  5. [ComVisible(false)]
  6. public struct STGMEDIUM
  7. {
  8. public int tymed;
  9. public IntPtr unionmember;
  10. public IntPtr pUnkForRelease;
  11. }
  12. }