INITCOMMONCONTROLSEX.cs 317 B

123456789101112131415
  1. using System;
  2. using System.Runtime.InteropServices;
  3. namespace LYFZ.OtherExpansion.Win32.Struct
  4. {
  5. public struct INITCOMMONCONTROLSEX
  6. {
  7. public int dwSize;
  8. public int dwICC;
  9. public INITCOMMONCONTROLSEX(int flags)
  10. {
  11. this.dwSize = Marshal.SizeOf(typeof(INITCOMMONCONTROLSEX));
  12. this.dwICC = flags;
  13. }
  14. }
  15. }