You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
411 B

  1. using System;
  2. using System.Runtime.InteropServices;
  3. namespace Apewer.Internals.Interop
  4. {
  5. /// <summary></summary>
  6. [StructLayout(LayoutKind.Sequential)]
  7. class SecurityAttributes
  8. {
  9. /// <summary></summary>
  10. public int length;
  11. /// <summary></summary>
  12. public IntPtr lpSecurityDescriptor;
  13. /// <summary></summary>
  14. public bool bInheritHandle;
  15. }
  16. }