mirror of
https://github.com/ReneLergner/WPinternals.git
synced 2026-06-14 03:16:40 +10:00
14 lines
208 B
C#
14 lines
208 B
C#
using System;
|
|
|
|
namespace WPinternalsSDK
|
|
{
|
|
internal struct SECURITY_ATTRIBUTES
|
|
{
|
|
public int nLength;
|
|
|
|
public IntPtr lpSecurityDescriptor;
|
|
|
|
public int bInheritHandle;
|
|
}
|
|
}
|