StartupInput.cs 305 B

12345678910111213141516
  1. using System;
  2. using System.Runtime.InteropServices;
  3. namespace Standard;
  4. [StructLayout(LayoutKind.Sequential)]
  5. internal class StartupInput
  6. {
  7. public int GdiplusVersion = 1;
  8. public IntPtr DebugEventCallback;
  9. public bool SuppressBackgroundThread;
  10. public bool SuppressExternalCodecs;
  11. }