<?xml version="1.0"?>
<doc>
    <assembly>
        <name>JetBrains.Platform.Interop</name>
    </assembly>
    <members>
        <member name="F:JetBrains.Interop.Linux.OpenFlags.O_RDONLY">
            <summary>
            Open for reading only
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Linux.OpenFlags.O_WRONLY">
            <summary>
            Open for writing only
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Linux.OpenFlags.O_RDWR">
            <summary>
            Open for reading and writing
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Linux.OpenFlags.O_ACCMODE">
            <summary>
            Mask for file access modes
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Linux.OpenFlags.O_CREAT">
            <summary>
            Create file if it does not exist
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Linux.OpenFlags.O_EXCL">
            <summary>
            Exclusive use flag
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Linux.OpenFlags.O_NOCTTY">
            <summary>
            Do not assign controlling terminal
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Linux.OpenFlags.O_TRUNC">
            <summary>
            Truncate flag
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Linux.OpenFlags.O_APPEND">
            <summary>
            Set append mode
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Linux.OpenFlags.O_NONBLOCK">
            <summary>
            Non-blocking mode
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Linux.OpenFlags.O_SYNC">
            <summary>
            Write according to synchronised I/O file integrity completion
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Linux.OpenFlags.O_DSYNC">
            <summary>
            Write according to synchronised I/O data integrity completion
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Linux.OpenFlags.O_RSYNC">
            <summary>
            Synchronised read I/O operations
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Linux.OpenFlags.O_DIRECTORY">
            <summary>
            Fail if file is a non-directory file
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Linux.OpenFlags.O_NOFOLLOW">
            <summary>
            Do not follow symbolic links
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Linux.OpenFlags.O_CLOEXEC">
            <summary>
            Close the file descriptor upon execution of an exec family function
            </summary>
        </member>
        <member name="F:JetBrains.Interop.MacOsX.OpenFlags.O_RDWR">
            <summary>
            Open for reading and writing
            </summary>
        </member>
        <member name="F:JetBrains.Interop.MacOsX.OpenFlags.O_CREAT">
            <summary>
            Create file if it does not exist
            </summary>
        </member>
        <member name="F:JetBrains.Interop.MacOsX.OpenFlags.O_EXCL">
            <summary>
            Exclusive use flag
            </summary>
        </member>
        <member name="T:JetBrains.Interop.MacOsX.LibSystemCDylib.Helpers">
            <summary>
              Wrappers for the functions in this DyLib.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Unix.LOCK.LOCK_SH">
            <summary>
            Shared file lock
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Unix.LOCK.LOCK_EX">
            <summary>
            Exclusive file lock
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Unix.LOCK.LOCK_NB">
            <summary>
            Don't block	when locking
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Unix.LOCK.LOCK_UN">
            <summary>
            Unlock file
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Unix.UnixFileModes.S_ISUID">
            <summary>
            Set user ID on execution
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Unix.UnixFileModes.S_ISGID">
            <summary>
            Set group ID on execution
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Unix.UnixFileModes.S_ISVTX">
            <summary>
            Save swapped text after use (sticky).
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Unix.UnixFileModes.S_IRUSR">
            <summary>
            Read by owner
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Unix.UnixFileModes.S_IWUSR">
            <summary>
            Write by owner
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Unix.UnixFileModes.S_IXUSR">
            <summary>
            Execute by owner
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Unix.UnixFileModes.S_IRGRP">
            <summary>
            Read by group
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Unix.UnixFileModes.S_IWGRP">
            <summary>
            Write by group
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Unix.UnixFileModes.S_IXGRP">
            <summary>
            Execute by group
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Unix.UnixFileModes.S_IROTH">
            <summary>
            Read by other
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Unix.UnixFileModes.S_IWOTH">
            <summary>
            Write by other
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Unix.UnixFileModes.S_IXOTH">
            <summary>
            Execute by other
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Unix.UnixFileModes.S_IRWXG">
            <summary>
            Read, write, execute by group
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Unix.UnixFileModes.S_IRWXU">
            <summary>
            Read, write, execute by user
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Unix.UnixFileModes.S_IRWXO">
            <summary>
            Read, write, execute by other
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Unix.UnixFileModes.ACCESSPERMS">
            <summary>
            0777
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Unix.UnixFileModes.ALLPERMS">
            <summary>
            07777
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Unix.UnixFileModes.DEFFILEMODE">
            <summary>
            0666
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Unix.UnixFileModes.S_IFMT">
            <summary>
            Bits which determine file type
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Unix.UnixFileModes.S_IFDIR">
            <summary>
            Directory
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Unix.UnixFileModes.S_IFCHR">
            <summary>
            Character device
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Unix.UnixFileModes.S_IFBLK">
            <summary>
            Block device
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Unix.UnixFileModes.S_IFREG">
            <summary>
            Regular file
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Unix.UnixFileModes.S_IFIFO">
            <summary>
            FIFO
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Unix.UnixFileModes.S_IFLNK">
            <summary>
            Symbolic link
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Unix.UnixFileModes.S_IFSOCK">
            <summary>
            Socket
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Unix.UnixFileModes.rw_r__r__">
            <summary>
            Alias for 0644
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Unix.UnixFileModes.rwxr_xr_x">
            <summary>
            Alias for 0755
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Advapi32Dll">
            <summary>
            User32.dll functions.
            Must be 64bit-safe.
            </summary>
            <remarks>
            IMPORTANT! Rules for authoring the class (v1.1):
            (1) All the function declarations MUST be 64-bit aware.
            (2) When copypasting from older declarations, you MUST check against the MSDN help or header declaration, 
               and you MUST ensure that each parameter has a proper size.
            (3) Call the Wide version of the functions (UCS-2-LE) unless there's a strong reason for calling the ANSI version 
               (such a reason MUST be indicated in XmlDoc). <c>CharSet = CharSet.Unicode</c>.
            (4) ExactSpelling MUST be TRUE. Add the "…W" suffix wherever needed.
            (5) SetLastError SHOULD be considered individually for each function. Setting it to <c>True</c> allows to report the errors,
               but slows down the execution of critical members.
            (6) These properties MUST be explicitly set on DllImport attributes of EACH import: 
               CharSet, PreserveSig, SetLastError, ExactSpelling.
            (7) CLR names MUST be used for types instead of C# ones, eg "Int32" not "int" and "Int64" not "long".
               This greately improves the understanding of the parameter sizes.
            (8) Sign of the types MUST be favored, eg "DWORD" is "UInt32" not "Int32".
            (9) Unsafe pointer types should be used for explicit and implicit pointers rather than IntPtr. 
               This way we outline the unsafety of the native calls, and also make it more clear for the 64bit transition.
               Eg "HANDLE" is "void*". If the rule forces you to mark some assembly as unsafe, it's an indication a managed utility
               incapsulating the call and the handle should be provided in one of the already-unsafe assemblies.
            (A) Same rules must apply to members of the structures.
            (B) All of the structures MUST have the [StructLayout(LayoutKind.Sequential)], [NoReorder] attributes, as appropriate.
            </remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Advapi32Dll.RegCreateKeyExW(System.Void*,System.String,System.UInt32,System.String,System.UInt32,System.UInt32,System.Void*,System.Void**,System.UInt32*)">
            <remarks>samDesired is of type REGSAM which is ACCESS_FLAGS which is a DWORD</remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Advapi32Dll.RegDeleteKeyExW(System.Void*,System.String,System.UInt32,System.UInt32)">
            <remarks>samDesired is of type REGSAM which is ACCESS_FLAGS which is a DWORD</remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Advapi32Dll.RegOpenKeyExW(System.Void*,System.String,System.UInt32,System.UInt32,System.Void**)">
            <remarks>samDesired is of type REGSAM which is ACCESS_FLAGS which is a DWORD</remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Advapi32Dll.RegLoadAppKeyW(System.String,System.Void**,System.UInt32,System.UInt32,System.UInt32)">
            <summary>
              <para>Loads the specified registry hive as an application hive.</para>
              <para>Unlike RegLoadKey, RegLoadAppKey does not load the hive under HKEY_LOCAL_MACHINE or HKEY_USERS. Instead, the hive is loaded under a special root that cannot be enumerated. As a result, there is no way to enumerate hives currently loaded by RegLoadAppKey. All operations on hives loaded by RegLoadAppKey have to be performed relative to the handle returned in phkResult.</para>
              <para>If two processes are required to perform operations on the same hive, each process must call RegLoadAppKey to retrieve a handle. During the RegLoadAppKey operation, the registry will verify if the file has already been loaded. If it has been loaded, the registry will return a handle to the previously loaded hive rather than re-loading the hive. </para>
              <para>All keys inside the hive must have the same security descriptor, otherwise the function will fail. This security descriptor must grant the caller the access specified by the samDesired parameter or the function will fail. You cannot use the RegSetKeySecurity function on any key inside the hive.</para>
              <para>In Windows 8 and later, each process can call RegLoadAppKey to load multiple hives. In Windows 7 and earlier, each process can load only one hive using RegLoadAppKey at a time.</para>
              <para>Any hive loaded using RegLoadAppKey is automatically unloaded when all handles to the keys inside the hive are closed using RegCloseKey.</para>
              <para>To compile an application that uses this function, define _WIN32_WINNT as 0x0600 or later. For more information, see Using the Windows Headers.</para>
            </summary>
            <remarks>samDesired is of type REGSAM which is ACCESS_FLAGS which is a DWORD</remarks>
            <since>NT 6.0</since>
            <param name="lpFile">The name of the hive file. This hive must have been created with the RegSaveKey or RegSaveKeyEx function. If the file does not exist, an empty hive file is created with the specified name.</param>
            <param name="phkResult">
              <para>Pointer to the handle for the root key of the loaded hive.</para>
              <para>The only way to access keys in the hive is through this handle. The registry will prevent an application from accessing keys in this hive using an absolute path to the key. As a result, it is not possible to navigate to this hive through the registry's namespace.</para>
            </param>
            <param name="samDesired">A mask that specifies the access rights requested for the returned root key. For more information, see Registry Key Security and Access Rights.</param>
            <param name="dwOptions">If this parameter is <see cref="F:JetBrains.Interop.WinApi.Constants.RegLoadAppKeyFlags.REG_PROCESS_APPKEY" />, the hive cannot be loaded again while it is loaded by the caller. This prevents access to this registry hive by another caller.</param>
            <param name="Reserved">This parameter is reserved.</param>
            <returns>
              <para>If the function succeeds, the return value is ERROR_SUCCESS.</para>
              <para>If the function fails, the return value is a nonzero error code defined in Winerror.h. You can use the FormatMessage function with the FORMAT_MESSAGE_FROM_SYSTEM flag to get a generic description of the error.</para>
            </returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Advapi32Dll.AdjustTokenPrivileges(System.Void*,System.Int32,JetBrains.Interop.WinApi.TOKEN_PRIVILEGES*,System.UInt32,JetBrains.Interop.WinApi.TOKEN_PRIVILEGES*,System.UInt32*)">
            <summary>
            
            </summary>
            <param name="TokenHandle"></param>
            <param name="DisableAllPrivileges"></param>
            <param name="NewState"></param>
            <param name="BufferLength">bytes</param>
            <param name="PreviousState"></param>
            <param name="ReturnLength">bytes</param>
            <returns></returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Advapi32Dll.CredRead(System.String,JetBrains.Interop.Windows.Declarations.Structures.CRED_TYPE,System.Int32,System.IntPtr@)">
            <summary>
            The CredRead function reads a credential from the user's credential set.
            The credential set used is the one associated with the logon session of the current token.
            The token must not have the user's SID disabled.
            </summary>
            <param name="target">Pointer to a null-terminated string that contains the name of the credential to read.</param>
            <param name="type">Type of the credential to read. Type must be one of the CRED_TYPE* defined types.</param>
            <param name="reservedFlag">Currently reserved and must be zero.</param>
            <param name="credentialPtr">Pointer to a single allocated block buffer to return the credential. Any pointers contained within the buffer are pointers to locations within this single allocated block. The single returned buffer must be freed by calling CredFree.</param>
            <returns>The function returns TRUE on success and FALSE on failure. The GetLastError function can be called to get a more specific status code. The following status codes can be returned:
            <list type="bullet|Table">
              <item>
                <term>ERROR_NOT_FOUND</term>
                <description>No credential exists with the specified TargetName.</description>
              </item>
              <item>
                <term>ERROR_NO_SUCH_LOGON_SESSION</term>
                <description>The logon session does not exist or there is no credential set associated with this logon session. Network logon sessions do not have an associated credential set.</description>
              </item>
              <item>
                <term>ERROR_INVALID_FLAGS</term>
                <description>A flag that is not valid was specified for the Flags parameter.</description>
              </item>
            </list>
            </returns>
            <remarks>
            If the value of the Type member of the CREDENTIAL structure specified by the Credential parameter is CRED_TYPE_DOMAIN_EXTENDED, a namespace must be specified in the target name.
            This function can return only one credential of the specified type.
            </remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Advapi32Dll.CredDelete(System.String,JetBrains.Interop.Windows.Declarations.Structures.CRED_TYPE,System.Int32)">
            <summary>
            The CredDelete function deletes a credential from the user's credential set. The credential set used is the one associated with the logon session of the current token.
            The token must not have the user's SID disabled.
            </summary>
            <param name="target">Pointer to a null-terminated string that contains the name of the credential to read.</param>
            <param name="type">Type of the credential to read. Type must be one of the CRED_TYPE* defined types.</param>
            <param name="reservedFlag">Currently reserved and must be zero.</param>
            <returns></returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Advapi32Dll.CredWrite(JetBrains.Interop.Windows.Declarations.Structures.CREDENTIAL@,System.UInt32)">
            <summary>
            TThe CredWrite function creates a new credential or modifies an existing credential in the user's credential set.
            The new credential is associated with the logon session of the current token.
            The token must not have the user's security identifier (SID) disabled.
            </summary>
            <param name="userCredential">A pointer to the CREDENTIAL structure to be written.</param>
            <param name="flags">Flags that control the function's operation. The following flag is defined.
            <list type="bullet|Table">
              <item>
                <term>CRED_PRESERVE_CREDENTIAL_BLOB</term>
                <description>The credential BLOB from an existing credential is preserved with the same credential name and credential type. The CredentialBlobSize of the passed in Credential structure must be zero.</description>
              </item>
            </list>
            </param>
            <returns>
            If the function succeeds, the function returns TRUE.
            If the function fails, it returns FALSE.
            Call the GetLastError function to get a more specific status code.
            The following status codes can be returned.
            Other smart card errors can be returned when writing a CRED_TYPE_CERTIFICATE credential.
            <list type="bullet|Table">
              <item>
                <term>ERROR_NO_SUCH_LOGON_SESSION</term>
                <description>The logon session does not exist or there is no credential set associated with this logon session. Network logon sessions do not have an associated credential set.</description>
              </item>
              <item>
                <term>ERROR_INVALID_PARAMETER</term>
                <description>Certain fields cannot be changed in an existing credential. This error is returned if a field does not match the value in a protected field of the existing credential.</description>
              </item>
              <item>
                <term>ERROR_INVALID_FLAGS</term>
                <description>A value that is not valid was specified for the Flags parameter.</description>
              </item>
              <item>
                <term>ERROR_BAD_USERNAME</term>
                <description>The UserName member of the passed in Credential structure is not valid. For a description of valid user name syntax, see the definition of that member.</description>
              </item>
              <item>
                <term>ERROR_NOT_FOUND</term>
                <description>CRED_PRESERVE_CREDENTIAL_BLOB was specified and there is no existing credential by the same TargetName and Type.</description>
              </item>
              <item>
                <term>SCARD_E_NO_READERS_AVAILABLE</term>
                <description>The CRED_TYPE_CERTIFICATE credential being written requires the smart card reader to be available.</description>
              </item>
              <item>
                <term>SCARD_E_NO_SMARTCARD or SCARD_W_REMOVED_CARD</term>
                <description>A CRED_TYPE_CERTIFICATE credential being written requires the smart card to be inserted.</description>
              </item>
              <item>
                <term>SCARD_W_WRONG_CHV</term>
                <description>The wrong PIN was supplied for the CRED_TYPE_CERTIFICATE credential being written.</description>
              </item> 
            </list>
            </returns>
            <remarks>
            This function creates a credential if a credential with the specified TargetName and Type does not exist.
            If a credential with the specified TargetName and Type exists, the new specified credential replaces the existing one.
            When this function writes a CRED_TYPE_CERTIFICATE credential, the Credential->CredentialBlob member specifies the PIN protecting the private key of the certificate specified by the Credential->UserName member.
            The credential manager does not maintain the PIN. Rather, the PIN is passed to the cryptographic service provider (CSP) indicated on the certificate for later use by the CSP and the authentication packages.
            The CSP defines the lifetime of the PIN. Most CSPs flush the PIN when the smart card removal from the smart card reader.
            If the value of the Type member of the CREDENTIAL structure specified by the Credential parameter is CRED_TYPE_DOMAIN_EXTENDED, a namespace must be specified in the target name.
            This function does not support writing to target names that contain wildcards.
            </remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Advapi32Dll.CredFree(System.IntPtr)">
            <summary>
            The CredFree function frees a buffer returned by any of the credentials management functions.
            </summary>
            <param name="cred">Pointer to the buffer to be freed.</param>
            <returns></returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Advapi32Dll.CredEnumerate(System.String,System.Int32,System.Int32@,System.IntPtr@)">
            <summary>
            The CredEnumerate function enumerates the credentials from the user's credential set. The credential set used is the one associated with the logon session of the current token.
            The token must not have the user's SID disabled.
            </summary>
            <param name="filter">Pointer to a null-terminated string that contains the filter for the returned credentials. Only credentials with a TargetName matching the filter will be returned. The filter specifies a name prefix followed by an asterisk. For instance, the filter "FRED*" will return all credentials with a TargetName beginning with the string "FRED".
            If NULL is specified, all credentials will be returned.</param>
            <param name="flag">The value of this parameter can be zero or more of the following values combined with a bitwise-OR operation.
            CRED_ENUMERATE_ALL_CREDENTIALS 0x1 -- This function enumerates all of the credentials in the user's credential set. The target name of each credential is returned in the "namespace:attribute=target" format. If this flag is set and the Filter parameter is not NULL, the function fails and returns ERROR_INVALID_FLAGS.  </param>
            <param name="count">Count of the credentials returned in the Credentials array.</param>
            <param name="pCredentials">Pointer to an array of pointers to credentials. The returned credential is a single allocated block. Any pointers contained within the buffer are pointers to locations within this single allocated block. The single returned buffer must be freed by calling CredFree.</param>
            <returns></returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Advapi32Dll.AllocateAndInitializeSid(JetBrains.Interop.Windows.Declarations.Structures.SID_IDENTIFIER_AUTHORITY@,System.Byte,System.UInt32,System.UInt32,System.UInt32,System.UInt32,System.UInt32,System.UInt32,System.UInt32,System.UInt32,JetBrains.Interop.Windows.Wrappers.SafeSidHandle@)">
            <summary>
            The AllocateAndInitializeSid function allocates and initializes a security identifier (SID) with up to eight subauthorities.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Advapi32Dll.GetLengthSid(JetBrains.Interop.Windows.Wrappers.SafeSidHandle)">
            <summary>
            The GetLengthSid function returns the length, in bytes, of a valid security identifier (SID).
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Advapi32Dll.FreeSid(System.IntPtr)">
            <summary>
            The FreeSid function frees a security identifier (SID) previously allocated by using the AllocateAndInitializeSid function.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Advapi32Dll.InitializeAcl(JetBrains.Interop.Windows.Declarations.Structures.ACL*,System.UInt32,System.UInt32)">
            <summary>
            The InitializeAcl function initializes a new ACL structure.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Advapi32Dll.AddAccessAllowedAce(JetBrains.Interop.Windows.Declarations.Structures.ACL*,System.UInt32,JetBrains.Interop.WinApi.AccessRights,JetBrains.Interop.Windows.Wrappers.SafeSidHandle)">
            <summary>
            The AddAccessAllowedAce function adds an access-allowed access control entry (ACE) to an access control list (ACL). The access is granted to a specified security identifier (SID).
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Advapi32Dll.AddMandatoryAce(JetBrains.Interop.Windows.Declarations.Structures.ACL*,System.UInt32,System.UInt32,System.UInt32,JetBrains.Interop.Windows.Wrappers.SafeSidHandle)">
            <summary>
            The AddMandatoryAce function adds a SYSTEM_MANDATORY_LABEL_ACE access control entry (ACE) to the specified system access control list (SACL).
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Advapi32Dll.InitializeSecurityDescriptor(JetBrains.Interop.Windows.Declarations.Structures.SECURITY_DESCRIPTOR*,System.UInt32)">
            <summary>
            The InitializeSecurityDescriptor function initializes a new security descriptor.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Advapi32Dll.SetSecurityDescriptorDacl(JetBrains.Interop.Windows.Declarations.Structures.SECURITY_DESCRIPTOR*,System.Boolean,JetBrains.Interop.Windows.Declarations.Structures.ACL*,System.Boolean)">
            <summary>
            The SetSecurityDescriptorDacl function sets information in a discretionary access control list (DACL). If a DACL is already present in the security descriptor, the DACL is replaced.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Advapi32Dll.SetSecurityDescriptorSacl(JetBrains.Interop.Windows.Declarations.Structures.SECURITY_DESCRIPTOR*,System.Boolean,JetBrains.Interop.Windows.Declarations.Structures.ACL*,System.Boolean)">
            <summary>
            The SetSecurityDescriptorSacl function sets information in a system access control list (SACL). If there is already a SACL present in the security descriptor, it is replaced.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Advapi32Dll.StartTraceW(System.Int64@,System.String,System.Void*)">
            <summary>
            The StartTrace function registers and starts an event tracing session.
            </summary>
            <param name="sessionHandle">Handle to the event tracing session. Do not use this handle if the function fails. Do not compare the session handle to INVALID_HANDLE_VALUE; the session handle is 0 if the handle is not valid.</param>
            <param name="sessionName">Null-terminated string that contains the name of the event tracing session. The session name is limited to 1,024 characters, is case-insensitive, and must be unique. This function copies the session name that you provide to the offset that the LoggerNameOffset member of properties points to.</param>
            <param name="properties">Pointer to an EVENT_TRACE_PROPERTIES structure that specifies the behavior of the session. The following are key members of the structure to set: Wnode.BufferSize, Wnode.Guid, Wnode.ClientContext, Wnode.Flags, LogFileMode, LogFileNameOffset, LoggerNameOffset.</param>
            <returns>If the function succeeds, the return value is ERROR_SUCCESS. If the function fails, the return value is one of the system error codes. </returns>
            <remarks>Sechost.dll on Windows 8.1 and Windows Server 2012 R2</remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Advapi32Dll.ControlTraceW(System.Int64,System.String,System.Void*,System.UInt32)">
            <summary>
            The ControlTrace function flushes, queries, updates, or stops the specified event tracing session.
            </summary>
            <param name="sessionHandle">Handle to an event tracing session, or NULL. You must specify SessionHandle if SessionName is NULL. However, ETW ignores the handle if SessionName is not NULL. The handle is returned by the StartTrace function.</param>
            <param name="sessionName">Name of an event tracing session, or NULL. You must specify SessionName if SessionHandle is NULL.</param>
            <param name="properties">Pointer to an initialized EVENT_TRACE_PROPERTIES structure. This structure should be zeroed out before it is used.</param>
            <param name="controlCode">Requested control function.</param>
            <returns>If the function succeeds, the return value is ERROR_SUCCESS. If the function fails, the return value is one of the system error codes.</returns>
            <remarks>Sechost.dll on Windows 8.1 and Windows Server 2012 R2</remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Advapi32Dll.OpenTraceW(System.Void*)">
            <summary>
            The OpenTrace function opens a real-time trace session or log file for consuming.
            </summary>
            <param name="logfile">Pointer to an EVENT_TRACE_LOGFILE structure. The structure specifies the source from which to consume events (from a log file or the session in real time) and specifies the callbacks the consumer wants to use to receive the events.</param>
            <returns>
            <para>If the function succeeds, it returns a handle to the trace. If the function fails, it returns INVALID_PROCESSTRACE_HANDLE.</para>
            <para>If your code base supports Windows 7 and Windows Vista, and also supports earlier operating systems such as Windows XP and Windows Server 2003, do not use INVALID_PROCESSTRACE_HANDLE. Instead, determine the operating system on which you are running and compare the return value to the following values.</para>
            <para>Operating system                    Application     Return value to compare</para>
            <para>Windows 7 and Windows Vista         32-bit          0x00000000FFFFFFFF</para>
            <para>Windows 7 and Windows Vista         64-bit          0XFFFFFFFFFFFFFFFF</para>
            <para>Windows XP and Windows Server 2003  32- or 64-bit   0XFFFFFFFFFFFFFFFF</para>
            </returns>
            <remarks>Sechost.dll on Windows 8.1 and Windows Server 2012 R2</remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Advapi32Dll.ProcessTrace(System.UInt64[],System.UInt32,System.IntPtr,System.IntPtr)">
            <summary>
            The ProcessTrace function delivers events from one or more event tracing sessions to the consumer.
            </summary>
            <param name="traceHandles">Pointer to an array of trace handles obtained from earlier calls to the OpenTrace function. The number of handles that you can specify is limited to 64. The array can contain the handles to multiple log files, but only one real-time trace session.</param>
            <param name="handleCount">Number of elements in traceHandles.</param>
            <param name="startTime">Pointer to an optional FILETIME structure that specifies the beginning time period for which you want to receive events. The function does not deliver events recorded prior to StartTime.</param>
            <param name="endTime">Pointer to an optional FILETIME structure that specifies the ending time period for which you want to receive events. The function does not deliver events recorded after EndTime.</param>
            <returns>If the function succeeds, the return value is ERROR_SUCCESS. If the function fails, the return value is one of the system error codes.</returns>
            <remarks>Sechost.dll on Windows 8.1 and Windows Server 2012 R2</remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Advapi32Dll.CloseTrace(System.UInt64)">
            <summary>
            The CloseTrace function closes a trace.
            </summary>
            <param name="traceHandle">Handle to the trace to close. The OpenTrace function returns this handle.</param>
            <returns>If the function succeeds, the return value is ERROR_SUCCESS. If the function fails, the return value is one of the system error codes.</returns>
            <remarks>Sechost.dll on Windows 8.1 and Windows Server 2012 R2</remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Advapi32Dll.EnableTrace(System.UInt32,System.UInt32,System.UInt32,System.Guid@,System.Int64)">
            <summary>
            Enables or disables the specified classic event trace provider. On Windows Vista and later, call the EnableTraceEx function to enable or disable a provider.
            </summary>
            <param name="isEnable">If TRUE, the provider is enabled; otherwise, the provider is disabled.</param>
            <param name="enableFlag">Provider-defined value that specifies the class of events for which the provider generates events. A provider that generates only one class of events will typically ignore this flag.</param>
            <param name="level">Provider-defined value that specifies the level of information the event generates.</param>
            <param name="providerId">GUID of the event trace provider that you want to enable or disable.</param>
            <param name="sessionHandle">Handle of the event tracing session to which you want to enable, disable, or change the logging level of the provider. The StartTrace function returns this handle.</param>
            <returns>If the function is successful, the return value is ERROR_SUCCESS. If the function fails, the return value is one of the system error codes. </returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Advapi32Dll.EnableTraceEx(System.Guid@,System.Guid@,System.Int64,System.UInt32,System.UInt16,System.UInt64,System.UInt64,System.UInt32,System.Void*)">
            <summary>
            Enables or disables the specified event trace provider. The EnableTraceEx2 function supersedes this function.
            </summary>
            <param name="providerId">GUID of the event trace provider that you want to enable or disable.</param>
            <param name="sourceId">GUID that uniquely identifies the session that is enabling or disabling the provider. Can be NULL. If the provider does not implement EnableCallback, the GUID is not used.</param>
            <param name="sessionHandle">Handle of the event tracing session to which you want to enable or disable the provider. The StartTrace function returns this handle.</param>
            <param name="isEnabled">Set to 1 to receive events when the provider is registered; otherwise, set to 0 to no longer receive events from the provider.</param>
            <param name="level">Provider-defined value that specifies the level of detail included in the event. Specify one of the following levels that are defined in Winmeta.h.</param>
            <param name="matchAnyKeyword">Bitmask of keywords that determine the category of events that you want the provider to write. The provider writes the event if any of the event's keyword bits match any of the bits set in this mask.</param>
            <param name="matchAllKeyword">This bitmask is optional. This mask further restricts the category of events that you want the provider to write. If the event's keyword meets the MatchAnyKeyword condition, the provider will write the event only if all of the bits in this mask exist in the event's keyword. This mask is not used if MatchAnyKeyword is zero</param>
            <param name="enableProperty">Optional information that ETW can include when writing the event. The data is written to the extended data item section of the event. To include the optional information, specify one or more of the following flags EVENT_ENABLE_PROPERTY_SID, EVENT_ENABLE_PROPERTY_TS_ID; otherwise, set to zero.</param>
            <param name="enableFilterDesc">An EVENT_FILTER_DESCRIPTOR structure that points to the filter data. The provider uses to filter data to prevent events that match the filter criteria from being written to the session; the provider determines the layout of the data and how it applies the filter to the event's data. A session can pass only one filter to the provider.<para>A session can call the TdhEnumerateProviderFilters function to determine the filters that it can pass to the provider.</para></param>
            <returns>If the function is successful, the return value is ERROR_SUCCESS. If the function fails, the return value is one of the system error codes.</returns>
            <remarks>Minimum supported client: Windows Vista [desktop apps only]. Minimum supported server: Windows Server 2008 [desktop apps only]</remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Advapi32Dll.EnableTraceEx2(System.Int64,System.Guid@,System.UInt32,System.UInt16,System.UInt64,System.UInt64,System.UInt32,System.Void*)">
            <summary>
            The EnableTraceEx2 function enables or disables the specified event trace provider. This function supersedes the EnableTraceEx function.
            </summary>
            <param name="sessionHandle">A handle of the event tracing session to which you want to enable or disable the provider. The StartTrace function returns this handle.</param>
            <param name="providerId">A GUID of the event trace provider that you want to enable or disable.</param>
            <param name="controlCode">See EVENT_CONTROL_CODE enum.</param>
            <param name="level">A provider-defined value that specifies the level of detail included in the event. Specify one of the following levels that are defined in the Winmeta.h header file.</param>
            <param name="matchAnyKeyword">A bitmask of keywords that determine the category of events that you want the provider to write. The provider writes the event if any of the event's keyword bits match any of the bits set in this mask.</param>
            <param name="matchAllkeyword">This bitmask is optional. This mask further restricts the category of events that you want the provider to write. If the event's keyword meets the MatchAnyKeyword condition, the provider will write the event only if all of the bits in this mask exist in the event's keyword. This mask is not used if MatchAnyKeyword is zero.</param>
            <param name="timeout">Set to zero to enable the trace asynchronously; this is the default. If the timeout value is zero, this function calls the provider's enable callback and returns immediately. To enable the trace synchronously, specify a timeout value, in milliseconds. If you specify a timeout value, this function calls the provider's enable callback and waits until the callback exits or the timeout expires. To wait forever, set to INFINITE.</param>
            <param name="parameters">The trace parameters used to enable the provider. For details, see ENABLE_TRACE_PARAMETERS and ENABLE_TRACE_PARAMETERS_V1.</param>
            <returns>If the function is successful, the return value is ERROR_SUCCESS. If the function fails, the return value is one of the system error codes.</returns>
            <remarks>Minimum supported client: Windows 7 [desktop apps only]. Minimum supported server: Windows Server 2008 R2 [desktop apps only]</remarks>
            <remarks>Sechost.dll on Windows 8.1 and Windows Server 2012 R2</remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Advapi32Dll.EnumerateTraceGuids(System.Void**,System.UInt32,System.UInt32*)">
            <summary>
            The EnumerateTraceGuids function retrieves information about registered event trace providers that are running on the computer.
            </summary>
            <returns></returns>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Advapi32Dll.Helpers">
            <summary>
            Wrappers for the functions in this DLL.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.ConnectDll">
            <summary>
            Connect.dll functions.
            Must be 64bit-safe.
            </summary>
            <remarks>
            IMPORTANT! Rules for authoring the class (v1.1):
            (1) All the function declarations MUST be 64-bit aware.
            (2) When copypasting from older declarations, you MUST check against the MSDN help or header declaration,
               and you MUST ensure that each parameter has a proper size.
            (3) Call the Wide version of the functions (UCS-2-LE) unless there's a strong reason for calling the ANSI version
               (such a reason MUST be indicated in XmlDoc). <c>CharSet = CharSet.Unicode</c>.
            (4) ExactSpelling MUST be TRUE. Add the "…W" suffix wherever needed.
            (5) SetLastError SHOULD be considered individually for each function. Setting it to <c>True</c> allows to report the errors,
               but slows down the execution of critical members.
            (6) These properties MUST be explicitly set on DllImport attributes of EACH import:
               CharSet, PreserveSig, SetLastError, ExactSpelling.
            (7) CLR names MUST be used for types instead of C# ones, eg "Int32" not "int" and "Int64" not "long".
               This greately improves the understanding of the parameter sizes.
            (8) Sign of the types MUST be favored, eg "DWORD" is "UInt32" not "Int32".
            (9) Unsafe pointer types should be used for explicit and implicit pointers rather than IntPtr.
               This way we outline the unsafety of the native calls, and also make it more clear for the 64bit transition.
               Eg "HANDLE" is "void*". If the rule forces you to mark some assembly as unsafe, it's an indication a managed utility
               incapsulating the call and the handle should be provided in one of the already-unsafe assemblies.
            (A) Same rules must apply to members of the structures.
            (B) All of the structures MUST have the [StructLayout(LayoutKind.Sequential)], [NoReorder] attributes, as appropriate.
            </remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.ConnectDll.Helpers.IsInternetConnected">
            <summary>
            The IsInternetConnected function determines whether the current user is connected to the Internet.
            </summary>
            <remarks>Cannot call the API <c>IsInternetConnected</c> function directly because it's only available starting with NT6.</remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.ConnectDll.Helpers.IsInternetConnectedNoWinApi">
            <summary>
            The IsInternetConnectedNoWinApi function determines whether the current user is connected to the Internet without calling WinAPI
            </summary>
            <remarks>Check for Windows platform externally</remarks>
        </member>
        <member name="T:JetBrains.Interop.WinApi.AccessRights">
            <remarks>
            <code>
             3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
             1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
            +---------------+---------------+-------------------------------+
            |G|G|G|G|Res'd|A| StandardRights|         SpecificRights        |
            |R|W|E|A|     |S|               |                               |
            +-+-------------+---------------+-------------------------------+
            </code>
            </remarks>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Constants.BiCompression">
            <summary>
            <see cref="T:JetBrains.Interop.WinApi.Declarations.Structures.BITMAPINFOHEADER"/> compression values.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.BiCompression.BI_RGB">
            <summary>
            An uncompressed format. (<see cref="T:JetBrains.Interop.WinApi.Declarations.Structures.BITMAPINFOHEADER"/> version 5)
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.BiCompression.BI_RLE8">
            <summary>
            A run-length encoded (RLE) format for bitmaps with 8 bpp. The compression format is a 2-byte format consisting of a count byte followed by a byte containing a color index. For more information, see Bitmap Compression.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.BiCompression.BI_RLE4">
            <summary>
            An RLE format for bitmaps with 4 bpp. The compression format is a 2-byte format consisting of a count byte followed by two word-length color indexes. For more information, see Bitmap Compression.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.BiCompression.BI_BITFIELDS">
            <summary>
            Specifies that the bitmap is not compressed and that the color table consists of three DWORD color masks that specify the red, green, and blue components, respectively, of each pixel. This is valid when used with 16- and 32-bpp bitmaps. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.BiCompression.BI_JPEG">
            <summary>
            Windows 98/Me, Windows 2000/XP: Indicates that the image is a JPEG image. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.BiCompression.BI_PNG">
            <summary>
            Windows 98/Me, Windows 2000/XP: Indicates that the image is a PNG image. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.CreationDisposition.New">
            <summary>
            Creates a new file. The function fails if a specified file exists.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.CreationDisposition.CreateAlways">
            <summary>
            Creates a new file, always.
            If a file exists, the function overwrites the file, clears the existing attributes, combines the specified file attributes,
            and flags with FILE_ATTRIBUTE_ARCHIVE, but does not set the security descriptor that the SECURITY_ATTRIBUTES structure specifies.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.CreationDisposition.OpenExisting">
            <summary>
            Opens a file. The function fails if the file does not exist.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.CreationDisposition.OpenAlways">
            <summary>
            Opens a file, always.
            If a file does not exist, the function creates a file as if dwCreationDisposition is CREATE_NEW.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.CreationDisposition.TruncateExisting">
            <summary>
            Opens a file and truncates it so that its size is 0 (zero) bytes. The function fails if the file does not exist.
            The calling process must open the file with the GENERIC_WRITE access right.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.DeviceCapabilityIndex.DRIVERVERSION">
            <summary>
            Device driver version
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.DeviceCapabilityIndex.TECHNOLOGY">
            <summary>
            Device classification
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.DeviceCapabilityIndex.HORZSIZE">
            <summary>
            Horizontal size in millimeters
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.DeviceCapabilityIndex.VERTSIZE">
            <summary>
            Vertical size in millimeters
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.DeviceCapabilityIndex.HORZRES">
            <summary>
            Horizontal width in pixels
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.DeviceCapabilityIndex.VERTRES">
            <summary>
            Vertical height in pixels
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.DeviceCapabilityIndex.BITSPIXEL">
            <summary>
            Number of bits per pixel
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.DeviceCapabilityIndex.PLANES">
            <summary>
            Number of planes
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.DeviceCapabilityIndex.NUMBRUSHES">
            <summary>
            Number of brushes the device has
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.DeviceCapabilityIndex.NUMPENS">
            <summary>
            Number of pens the device has
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.DeviceCapabilityIndex.NUMMARKERS">
            <summary>
            Number of markers the device has
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.DeviceCapabilityIndex.NUMFONTS">
            <summary>
            Number of fonts the device has
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.DeviceCapabilityIndex.NUMCOLORS">
            <summary>
            Number of colors the device supports
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.DeviceCapabilityIndex.PDEVICESIZE">
            <summary>
            Size required for device descriptor
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.DeviceCapabilityIndex.CURVECAPS">
            <summary>
            Curve capabilities
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.DeviceCapabilityIndex.LINECAPS">
            <summary>
            Line capabilities
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.DeviceCapabilityIndex.POLYGONALCAPS">
            <summary>
            Polygonal capabilities
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.DeviceCapabilityIndex.TEXTCAPS">
            <summary>
            Text capabilities
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.DeviceCapabilityIndex.CLIPCAPS">
            <summary>
            Clipping capabilities
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.DeviceCapabilityIndex.RASTERCAPS">
            <summary>
            Bitblt capabilities
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.DeviceCapabilityIndex.ASPECTX">
            <summary>
            Length of the X leg
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.DeviceCapabilityIndex.ASPECTY">
            <summary>
            Length of the Y leg
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.DeviceCapabilityIndex.ASPECTXY">
            <summary>
            Length of the hypotenuse
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.DeviceCapabilityIndex.SHADEBLENDCAPS">
            <summary>
            Shading and Blending caps
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.DeviceCapabilityIndex.LOGPIXELSX">
            <summary>
            Logical pixels inch in X
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.DeviceCapabilityIndex.LOGPIXELSY">
            <summary>
            Logical pixels inch in Y
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.DeviceCapabilityIndex.SIZEPALETTE">
            <summary>
            Number of entries in physical palette
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.DeviceCapabilityIndex.NUMRESERVED">
            <summary>
            Number of reserved entries in palette
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.DeviceCapabilityIndex.COLORRES">
            <summary>
            Actual color resolution
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.DeviceCapabilityIndex.PHYSICALWIDTH">
            <summary>
            Physical Width in device units
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.DeviceCapabilityIndex.PHYSICALHEIGHT">
            <summary>
            Physical Height in device units
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.DeviceCapabilityIndex.PHYSICALOFFSETX">
            <summary>
            Physical Printable Area x margin
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.DeviceCapabilityIndex.PHYSICALOFFSETY">
            <summary>
            Physical Printable Area y margin
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.DeviceCapabilityIndex.SCALINGFACTORX">
            <summary>
            Scaling factor x
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.DeviceCapabilityIndex.SCALINGFACTORY">
            <summary>
            Scaling factor y
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.DeviceCapabilityIndex.VREFRESH">
            <summary>
            Current vertical refresh rate of the display device (for displays only) in Hz
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.DeviceCapabilityIndex.DESKTOPVERTRES">
            <summary>
            Horizontal width of entire desktop in pixels
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.DeviceCapabilityIndex.DESKTOPHORZRES">
            <summary>
            Vertical height of entire desktop in pixels
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.DeviceCapabilityIndex.BLTALIGNMENT">
            <summary>
            Preferred blt alignment
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Constants.DibColors">
            <summary>
            Color usage constants for <see cref="M:JetBrains.Interop.WinApi.Gdi32Dll.CreateDIBSection(System.Void*,JetBrains.Interop.WinApi.Declarations.Structures.BITMAPINFO*,System.UInt32,System.Void**,System.Void*,System.Int32)"/>, <see cref="M:JetBrains.Interop.WinApi.Gdi32Dll.CreateDIBitmap(System.Void*,JetBrains.Interop.WinApi.Declarations.Structures.BITMAPINFOHEADER*,System.UInt32,System.Void*,JetBrains.Interop.WinApi.Declarations.Structures.BITMAPINFO*,System.UInt32)"/>.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.DibColors.DIB_RGB_COLORS">
            <summary>
            The BITMAPINFO structure contains an array of literal RGB values.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.DibColors.DIB_PAL_COLORS">
            <summary>
            The bmiColors member is an array of 16-bit indexes into the logical palette of the device context specified by hdc.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Constants.DPI_AWARENESS">
            <summary>
             Identifies the dots per inch (dpi) setting for a thread, process, or window.
            </summary>
            <remarks>
            In previous versions of Windows, DPI values were only set once for an entire application. For those apps, the PROCESS_DPI_AWARENESS type determined the type of DPI awareness for the entire application. Currently, the DPI awareness is defined on an individual thread, window, or process level and is indicated by the DPI_AWARENESS type. While the focus shifted from a process level to a thread level, the different kinds of DPI awareness are the same: unaware, system aware, and per monitor aware. For detailed descriptions and some examples of the different DPI kinds, see PROCESS_DPI_AWARENESS.
             The old recommendation was to define the DPI awareness level in the application manifest using the setting dpiAware as explained in PROCESS_DPI_AWARENESS. Now that the DPI awareness is tied to threads and windows instead of an entire application, a new windows setting is added to the app manifest. This setting is dpiAwareness and will override any dpiAware setting if both of them are present in the manifest. While it is still recommended to use the manifest, you can now change the DPI awareness while the app is running by using SetThreadDpiAwarenessContext.
             It is important to note that if your application has a DPI_AWARENESS_PER_MONITOR_AWARE window, you are responsible for keeping track of the DPI by responding to WM_DPICHANGED messages.
            </remarks>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.DPI_AWARENESS.DPI_AWARENESS_INVALID">
            <summary>
            Invalid DPI awareness. This is an invalid DPI awareness value.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.DPI_AWARENESS.DPI_AWARENESS_UNAWARE">
            <summary>
            DPI unaware. This process does not scale for DPI changes and is always assumed to have a scale factor of 100% (96 DPI). It will be automatically scaled by the system on any other DPI setting.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.DPI_AWARENESS.DPI_AWARENESS_SYSTEM_AWARE">
            <summary>
            System DPI aware. This process does not scale for DPI changes. It will query for the DPI once and use that value for the lifetime of the process. If the DPI changes, the process will not adjust to the new DPI value. It will be automatically scaled up or down by the system when the DPI changes from the system value.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.DPI_AWARENESS.DPI_AWARENESS_PER_MONITOR_AWARE">
            <summary>
            Per monitor DPI aware. This process checks for the DPI when it is created and adjusts the scale factor whenever the DPI changes. These processes are not automatically scaled by the system.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Constants.DPI_HOSTING_BEHAVIOR">
            <summary>
             Identifies the DPI hosting behavior for a window. This behavior allows windows created in the thread to host child windows with a different DPI_AWARENESS_CONTEXT
            </summary>
            <remarks>
            DPI_HOSTING_BEHAVIOR enables a mixed content hosting behavior, which allows parent windows created in the thread to host child windows with a different DPI_AWARENESS_CONTEXT value. This property only effects new windows created within this thread while the mixed hosting behavior is active. A parent window with this hosting behavior is able to host child windows with different DPI_AWARENESS_CONTEXT values, regardless of whether the child windows have mixed hosting behavior enabled.
             This hosting behavior does not allow for windows with per-monitor DPI_AWARENESS_CONTEXT values to be hosted until windows with DPI_AWARENESS_CONTEXT values of system or unaware.
             To avoid unexpected outcomes, a thread's DPI_HOSTING_BEHAVIOR should be changed to support mixed hosting behaviors only when creating a new window which needs to support those behaviors. Once that window is created, the hosting behavior should be switched back to its default value.
             Enabling mixed hosting behavior will not automatically adjust the thread's DPI_AWARENESS_CONTEXT to be compatible with legacy content. The thread's awareness context must still be manually changed before new windows are created to host such content.
            </remarks>
            <since>NT 10.0.17134</since>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.DPI_HOSTING_BEHAVIOR.DPI_HOSTING_BEHAVIOR_INVALID">
            <summary>
            Invalid DPI hosting behavior. This usually occurs if the previous SetThreadDpiHostingBehavior call used an invalid parameter.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.DPI_HOSTING_BEHAVIOR.DPI_HOSTING_BEHAVIOR_DEFAULT">
            <summary>
            Default DPI hosting behavior. The associated window behaves as normal, and cannot create or re-parent child windows with a different DPI_AWARENESS_CONTEXT.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.DPI_HOSTING_BEHAVIOR.DPI_HOSTING_BEHAVIOR_MIXED">
            <summary>
            Mixed DPI hosting behavior. This enables the creation and re-parenting of child windows with different DPI_AWARENESS_CONTEXT. These child windows will be independently scaled by the OS.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Constants.FileMapAccess">
            <summary>
              Access flags, e.g. for <see cref="M:JetBrains.Interop.WinApi.Kernel32Dll.MapViewOfFile(System.Void*,System.UInt32,System.UInt32,System.UInt32,System.UIntPtr)" />.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.FileShareFlags.Read">
            <summary>
            Enables subsequent open operations on an object to request read access.
            Otherwise, other processes cannot open the object if they request read access.
            If this flag is not specified, but the object has been opened for read access, the function fails.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.FileShareFlags.Write">
            <summary>
            Enables subsequent open operations on an object to request write access.
            Otherwise, other processes cannot open the object if they request write access.
            If this flag is not specified, but the object has been opened for write access, the function fails.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.FileShareFlags.Delete">
            <summary>
            Enables subsequent open operations on an object to request delete access.
            Otherwise, other processes cannot open the object if they request delete access.
            If this flag is not specified, but the object has been opened for delete access, the function fails.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Constants.FILE_TYPE">
            <summary>
            The file type returned by <see cref="M:JetBrains.Interop.WinApi.Kernel32Dll.GetFileType(System.Void*)"/>.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.FILE_TYPE.FILE_TYPE_UNKNOWN">
            <summary>
            Either the type of the specified file is unknown, or the function failed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.FILE_TYPE.FILE_TYPE_DISK">
            <summary>
            The specified file is a disk file.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.FILE_TYPE.FILE_TYPE_CHAR">
            <summary>
            The specified file is a character file, typically an LPT device or a console.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.FILE_TYPE.FILE_TYPE_PIPE">
            <summary>
            The specified file is a socket, a named pipe, or an anonymous pipe.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.FILE_TYPE.FILE_TYPE_REMOTE">
            <summary>
            Unused.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Constants.HookCode">
            <summary>
            Hook codes for callback functions of <see cref="M:JetBrains.Interop.WinApi.User32Dll.SetWindowsHookExW(System.Int32,JetBrains.Interop.WinApi.Functions.HOOKPROC,System.Void*,System.UInt32)"/>.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.HookCode.HC_ACTION">
            <summary>
            Mouse hook: The wParam and lParam parameters contain information about a mouse message.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.HookCode.HC_NOREMOVE">
            <summary>
            Mouse hook: The wParam and lParam parameters contain information about a mouse message, and the mouse message has not been removed from the message queue. (An application called the PeekMessage function, specifying the PM_NOREMOVE flag.)
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.HTTP_INITIALIZE_Flags.HTTP_INITIALIZE_CONFIG">
            <summary>Perform initialization for applications that use the HTTP configuration functions, HttpSetServiceConfiguration, HttpQueryServiceConfiguration and HttpDeleteServiceConfiguration.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.HTTP_INITIALIZE_Flags.HTTP_INITIALIZE_SERVER">
            <summary>Perform initialization for applications that use the HTTP Server API.</summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Constants.HTTP_SERVICE_CONFIG_ID">
            <summary>The HTTP_SERVICE_CONFIG_ID enumeration type defines service configuration options.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.HTTP_SERVICE_CONFIG_ID.HttpServiceConfigIPListenList">
            <summary>Specifies the IP Listen List used to register IP addresses on which to listen for SSL connections.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.HTTP_SERVICE_CONFIG_ID.HttpServiceConfigSSLCertInfo">
            <summary>Specifies the SSL certificate store.</summary>
            <remarks>If SSL is enabled in the HTTP Server API, TLS 1.0 may be used in place of SSL when the client application specifies TLS.</remarks>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.HTTP_SERVICE_CONFIG_ID.HttpServiceConfigUrlAclInfo">
            <summary>Specifies the URL reservation store.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.HTTP_SERVICE_CONFIG_ID.HttpServiceConfigTimeout">
            <summary>Configures the HTTP Server API wide connection timeouts.</summary>
            <remarks>Windows Vista and later versions of Windows</remarks>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.HTTP_SERVICE_CONFIG_ID.HttpServiceConfigCache">
            <summary>Used in the HttpQueryServiceConfiguration and HttpSetServiceConfiguration functions.</summary>
            <remarks>Windows Server 2008 R2 and Windows 7 and later versions of Windows.</remarks>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.HTTP_SERVICE_CONFIG_ID.HttpServiceConfigSslSniCertInfo">
            <summary>Specifies the SSL endpoint configuration with Hostname:Port as key. Used in the HttpDeleteServiceConfiguration, HttpQueryServiceConfiguration, HttpSetServiceConfiguration, and HttpUpdateServiceConfiguration functions.</summary>
            <remarks>Windows 8 and later versions of Windows.</remarks>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.HTTP_SERVICE_CONFIG_ID.HttpServiceConfigSslCcsCertInfo">
            <summary>Specifies that an operation should be performed for the SSL certificate record that specifies that Http.sys should consult the Centralized Certificate Store (CCS) store to find certificates if the port receives a Transport Layer Security (TLS) handshake. Used in the HttpDeleteServiceConfiguration, HttpQueryServiceConfiguration, HttpSetServiceConfiguration, and HttpUpdateServiceConfiguration functions</summary>
            <remarks>Windows 8 and later versions of Windows.</remarks>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.HTTP_SERVICE_CONFIG_ID.HttpServiceConfigSetting">
            <summary>This option has no documentation on https://docs.microsoft.com/en-us/windows/desktop/api/http/ne-http-_http_service_config_id</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.HTTP_SERVICE_CONFIG_ID.HttpServiceConfigMax">
            <summary>Terminates the enumeration; is not used to define a service configuration option.</summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Constants.HTTP_SERVICE_CONFIG_QUERY_TYPE">
            <summary>The HTTP_SERVICE_CONFIG_QUERY_TYPE enumeration type defines various types of queries to make. It is used in the HTTP_SERVICE_CONFIG_SSL_QUERY, HTTP_SERVICE_CONFIG_SSL_CCS_QUERY, and HTTP_SERVICE_CONFIG_URLACL_QUERY structures.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.HTTP_SERVICE_CONFIG_QUERY_TYPE.HttpServiceConfigQueryExact">
            <summary>The query returns a single record that matches the specified key value.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.HTTP_SERVICE_CONFIG_QUERY_TYPE.HttpServiceConfigQueryNext">
            <summary>The query iterates through the store and returns all records in sequence, using an index value that the calling process increments between query calls.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.HTTP_SERVICE_CONFIG_QUERY_TYPE.HttpServiceConfigQueryMax">
            <summary>Terminates the enumeration; is not used to define a query type.</summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Constants.KEYEVENTF">
            <summary>
              For <see cref="M:JetBrains.Interop.WinApi.User32Dll.keybd_event(System.Byte,System.Byte,System.UInt32,System.UIntPtr)" />.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.KEYEVENTF.KEYEVENTF_EXTENDEDKEY">
            <summary>
              If specified, the scan code was preceded by a prefix byte having the value 0xE0 (224).
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.KEYEVENTF.KEYEVENTF_KEYUP">
            <summary>
              If specified, the key is being released. If not specified, the key is being depressed.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Constants.MemoryAllocationTypes">
            <summary>
            The type of memory allocation. This parameter must contain one of the following values.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.MemoryAllocationTypes.MEM_COMMIT">
            <summary>
            Allocates physical storage in memory or in the paging file on disk for the specified reserved memory pages. The function initializes the memory to zero.
            To reserve and commit pages in one step, call VirtualAlloc with MEM_COMMIT | MEM_RESERVE.
            The function fails if you attempt to commit a page that has not been reserved. The resulting error code is ERROR_INVALID_ADDRESS.
            An attempt to commit a page that is already committed does not cause the function to fail. This means that you can commit pages without first determining the current commitment state of each page.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.MemoryAllocationTypes.MEM_RESERVE">
            <summary>
            Reserves a range of the process's virtual address space without allocating any actual physical storage in memory or in the paging file on disk.
            You can commit reserved pages in subsequent calls to the VirtualAlloc function. To reserve and commit pages in one step, call VirtualAlloc with MEM_COMMIT | MEM_RESERVE.
            Other memory allocation functions, such as malloc and LocalAlloc, cannot use a reserved range of memory until it is released.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.MemoryAllocationTypes.MEM_RESET">
            <summary>
            Indicates that data in the memory range specified by lpAddress and dwSize is no longer of interest. The pages should not be read from or written to the paging file. However, the memory block will be used again later, so it should not be decommitted. This value cannot be used with any other value.
            Using this value does not guarantee that the range operated on with MEM_RESET will contain zeroes. If you want the range to contain zeroes, decommit the memory and then recommit it.
            When you specify MEM_RESET, the VirtualAlloc function ignores the value of flProtect. However, you must still set flProtect to a valid protection value, such as PAGE_NOACCESS.
            VirtualAlloc returns an error if you use MEM_RESET and the range of memory is mapped to a file. A shared view is only acceptable if it is mapped to a paging file.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.MemoryAllocationTypes.MEM_FREE">
            <summary>
            Indicates free pages not accessible to the calling process and available to be allocated. For free pages, the information in the AllocationBase, AllocationProtect, Protect, and Type members is undefined.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.MemoryAllocationTypes.MEM_LARGE_PAGES">
            <summary>
            Allocates memory using large page support.
            The size and alignment must be a multiple of the large-page minimum. To obtain this value, use the GetLargePageMinimum function.
            Windows XP/2000:   This flag is not supported.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.MemoryAllocationTypes.MEM_PHYSICAL">
            <summary>
            Reserves an address range that can be used to map Address Windowing Extensions (AWE) pages. 
            This value must be used with MEM_RESERVE and no other values.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.MemoryAllocationTypes.MEM_TOP_DOWN">
            <summary>
            Allocates memory at the highest possible address.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.MemoryAllocationTypes.MEM_WRITE_WATCH">
            <summary>
            Causes the system to track pages that are written to in the allocated region. If you specify this value, you must also specify MEM_RESERVE.
            To retrieve the addresses of the pages that have been written to since the region was allocated or the write-tracking state was reset, call the GetWriteWatch function. To reset the write-tracking state, call GetWriteWatch or ResetWriteWatch. The write-tracking feature remains enabled for the memory region until the region is freed.
            Windows 2000:   This flag is not supported.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Constants.MemoryPageTypes">
            <summary>
            The type of pages in the region. The following types are defined. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.MemoryPageTypes.MEM_IMAGE">
            <summary>
            Indicates that the memory pages within the region are mapped into the view of an image section.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.MemoryPageTypes.MEM_MAPPED">
            <summary>
            Indicates that the memory pages within the region are mapped into the view of a section.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.MemoryPageTypes.MEM_PRIVATE">
            <summary>
            Indicates that the memory pages within the region are private (that is, not shared by other processes).
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Constants.MemoryProtectionConstants">
            <summary>
            The following are the memory-protection options; you must specify one of the following values when allocating or protecting a page in memory. Protection attributes cannot be assigned to a portion of a page; they can only be assigned to a whole page.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.MemoryProtectionConstants.PAGE_EXECUTE">
            <summary>
            Enables execute access to the committed region of pages. An attempt to read from or write to the committed region results in an access violation. 
            This flag is not supported by the CreateFileMapping function.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.MemoryProtectionConstants.PAGE_EXECUTE_READ">
            <summary>
            Enables execute or read-only access to the committed region of pages. An attempt to write to the committed region results in an access violation. 
            Windows Server 2003 and Windows XP/2000:  This attribute is not supported by the CreateFileMapping function until Windows XP with SP2 and Windows Server 2003 with SP1.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.MemoryProtectionConstants.PAGE_EXECUTE_READWRITE">
            <summary>
            Enables execute, read-only, or read/write access to the committed region of pages. 
            Windows Server 2003 and Windows XP/2000:  This attribute is not supported by the CreateFileMapping function until Windows XP with SP2 and Windows Server 2003 with SP1.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.MemoryProtectionConstants.PAGE_EXECUTE_WRITECOPY">
            <summary>
            Enables execute, read-only, or copy-on-write access to a mapped view of a file mapping object. An attempt to write to a committed copy-on-write page results in a private copy of the page being made for the process. The private page is marked as PAGE_EXECUTE_READWRITE, and the change is written to the new page. 
            This flag is not supported by the VirtualAlloc or VirtualAllocEx functions. 
            Windows Vista, Windows Server 2003, and Windows XP/2000:  This attribute is not supported by the CreateFileMapping function until Windows Vista with SP1 and Windows Server 2008.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.MemoryProtectionConstants.PAGE_NOACCESS">
            <summary>
            Disables all access to the committed region of pages. An attempt to read from, write to, or execute the committed region results in an access violation. 
            This flag is not supported by the CreateFileMapping function.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.MemoryProtectionConstants.PAGE_READONLY">
            <summary>
            Enables read-only access to the committed region of pages. An attempt to write to the committed region results in an access violation. If Data Execution Prevention is enabled, an attempt to execute code in the committed region results in an access violation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.MemoryProtectionConstants.PAGE_READWRITE">
            <summary>
            Enables read-only or read/write access to the committed region of pages. If Data Execution Prevention is enabled, attempting to execute code in the committed region results in an access violation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.MemoryProtectionConstants.PAGE_WRITECOPY">
            <summary>
            Enables read-only or copy-on-write access to a mapped view of a file mapping object. An attempt to write to a committed copy-on-write page results in a private copy of the page being made for the process. The private page is marked as PAGE_READWRITE, and the change is written to the new page. If Data Execution Prevention is enabled, attempting to execute code in the committed region results in an access violation.
            This flag is not supported by the VirtualAlloc or VirtualAllocEx functions.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.MemoryProtectionConstants.PAGE_GUARD">
            <summary>
            Pages in the region become guard pages. Any attempt to access a guard page causes the system to raise a STATUS_GUARD_PAGE_VIOLATION exception and turn off the guard page status. Guard pages thus act as a one-time access alarm. For more information, see Creating Guard Pages. 
            When an access attempt leads the system to turn off guard page status, the underlying page protection takes over.
            If a guard page exception occurs during a system service, the service typically returns a failure status indicator.
            This value cannot be used with PAGE_NOACCESS.
            This flag is not supported by the CreateFileMapping function.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.MemoryProtectionConstants.PAGE_NOCACHE">
            <summary>
            Sets all pages to be non-cachable. Applications should not use this attribute except when explicitly required for a device. Using the interlocked functions with memory that is mapped with SEC_NOCACHE can result in an EXCEPTION_ILLEGAL_INSTRUCTION exception.
            The PAGE_NOCACHE flag cannot be used with the PAGE_GUARD, PAGE_NOACCESS, or PAGE_WRITECOMBINE flags.
            The PAGE_NOCACHE flag can be used only when allocating private memory with the VirtualAlloc, VirtualAllocEx, or VirtualAllocExNuma functions. To enable non-cached memory access for shared memory, specify the SEC_NOCACHE flag when calling the CreateFileMapping function.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.MemoryProtectionConstants.PAGE_WRITECOMBINE">
            <summary>
            Sets all pages to be write-combined. 
            Applications should not use this attribute except when explicitly required for a device. Using the interlocked functions with memory that is mapped as write-combined can result in an EXCEPTION_ILLEGAL_INSTRUCTION exception.
            The PAGE_WRITECOMBINE flag cannot be specified with the PAGE_NOACCESS, PAGE_GUARD, and PAGE_NOCACHE flags. 
            The PAGE_WRITECOMBINE flag can be used only when allocating private memory with the VirtualAlloc, VirtualAllocEx, or VirtualAllocExNuma functions. To enable write-combined memory access for shared memory, specify the SEC_WRITECOMBINE flag when calling the CreateFileMapping function.
            Windows Server 2003 and Windows XP/2000:  This flag is not supported until Windows Server 2003 with SP1.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Constants.MOUSEEVENTF">
            <summary>
              For <see cref="M:JetBrains.Interop.WinApi.User32Dll.mouse_event(System.UInt32,System.UInt32,System.UInt32,System.UInt32,System.UIntPtr)" />.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Constants.MsoConstants">
            <summary>
            Contants used by Component API Interfaces (IMsoComponent and IMsoComponentManager).
            </summary>
            <remarks>
            The constants are taken from: System.Windows.Forms.NativeMethods.MSOCM, Assembly: System.Windows.Forms, Version=4.0.0.0
            </remarks>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Constants.MSOCRF">
            <summary>
            MSO component registration flags.
            </summary>
            <remarks>
            Used by OLECRINFO.grfcrf field passed to IOleComponentManager.FRegisterComponent method and its equivalent in the OLE-world IMsoComponentManager and MSOCRINFO structure.
            </remarks>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.MSOCRF.msocrfNeedIdleTime">
            <summary>
            Component needs idle time.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.MSOCRF.msocrfNeedPeriodicIdleTime">
            <summary>
            Component needs idle time every N milliseconds.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.MSOCRF.msocrfPreTranslateKeys">
            <summary>
            Component must process keyboard messages before translation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.MSOCRF.msocrfPreTranslateAll">
            <summary>
            Component must process all messages before translation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.MSOCRF.msocrfNeedSpecActiveNotifs">
            <summary>
            Component needs to be notified for special activation changes. 
            Currently, this will notify component if ExclusiveBorderSpace or ExclusiveActivation mode changes.
            Top-level components should reg this flag.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.MSOCRF.msocrfNeedAllActiveNotifs">
            <summary>
            Component needs to be notified for every change in activation state
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.MSOCRF.msocrfExclusiveBorderSpace">
            <summary>
            Component needs exclusive border space when active (normally only used by TopLevel Mac components).
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.MSOCRF.msocrfExclusiveActivation">
            <summary>
            Component becomes exclusively active when activated
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.MSOCRF.msocrfNeedAllMacEvents">
            <summary>
            Component needs all mac events
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.MSOCRF.msocrfMaster">
            <summary>
            Component is always active and gets first shot at evrything (Mac?)
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Constants.NTSTATUS">
             <summary>
             ntstatus.h -- Constant definitions for the NTSTATUS values.
             </summary>
             <code>
             #define NTSTATUS LONG
             
             Values are 32 bit values laid out as follows:
            
              3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
              1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
             +---+-+-+-----------------------+-------------------------------+
             |Sev|C|R|     Facility          |               Code            |
             +---+-+-+-----------------------+-------------------------------+
             where:
                 Sev - is the severity code
                     00 - Success
                     01 - Informational
                     10 - Warning
                     11 - Error
                 C - is the Customer code flag
                 R - is a reserved bit
                 Facility - is the facility code
                 Code - is the facility's status code
             </code>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Declarations.Constants.NTSTATUS.Succeed(System.Int32)">
            <summary>
            Generic test for success on any status value (non-negative numbers indicate success).
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Declarations.Constants.NTSTATUS.Failed(System.Int32)">
            <summary>
            Generic test for failure on any status value.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.NTSTATUS.STATUS_SUCCESS">
            <summary>
            Success status code.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.NTSTATUS.STATUS_BUFFER_OVERFLOW">
            <summary>
            The data was too large to fit into the specified buffer.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.NTSTATUS.STATUS_INFO_LENGTH_MISMATCH">
            <summary>
            The specified information record length does not match the length required for the specified information class.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.NTSTATUS.STATUS_BUFFER_TOO_SMALL">
            <summary>
            The buffer is too small to contain the entry. No information has been written to the buffer.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Constants.OBJID">
            <summary>
            Reserved IDs for system objects. See <see cref="F:JetBrains.Interop.WinApi.WindowsMessages.WM_GETOBJECT"/>.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Constants.OLECADVF">
            <summary>
            OLE component registration advise flags (see msocstate enumeration).
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Constants.OLECRF">
            <summary>
            Component registration flags.  
            </summary>
            <remarks>Used by OLECRINFO.grfcrf field passed to IOleComponentManager.FRegisterComponent method and its equivalent in the OLE-world IMsoComponentManager and MSOCRINFO structure.
            </remarks>
            <code>Microsoft.VisualStudio.OLE.Interop._OLECRF</code>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Constants.PropSheetPageProcMsg">
            <summary>
            <see cref="T:JetBrains.Interop.WinApi.Functions.LPFNPSPCALLBACK"/> <c>msg</c> parameter.
            Action flag. This parameter can be one of the following values.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.PropSheetPageProcMsg.PSPCB_ADDREF">
            <summary>
            Version 5.80 or later. A page is being created. The return value is not used.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.PropSheetPageProcMsg.PSPCB_CREATE">
            <summary>
            A dialog box for a page is being created. Return nonzero to allow it to be created, or zero to prevent it.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.PropSheetPageProcMsg.PSPCB_RELEASE">
            <summary>
            A page is being destroyed. The return value is ignored.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Constants.PRSPEC">
            <summary>
            Kinds for <see cref="T:JetBrains.Interop.WinApi.Declarations.Structures.PROPSPEC" />.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.PRSPEC.PRSPEC_LPWSTR">
            <summary>
            The <code>PROPSPEC.lpwstr</code> member is used and set to a string name.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.PRSPEC.PRSPEC_PROPID">
            <summary>
            The <code>PROPSPEC.propid</code> member is used and set to a property ID value.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Constants.RasterOperations">
            <summary>
            Possible raster operations for the <see cref="M:JetBrains.Interop.WinApi.Gdi32Dll.BitBlt(System.Void*,System.Int32,System.Int32,System.Int32,System.Int32,System.Void*,System.Int32,System.Int32,System.UInt32)"/> function.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.RasterOperations.SRCCOPY">
            <summary>dest = source</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.RasterOperations.SRCPAINT">
            <summary>dest = source OR dest</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.RasterOperations.SRCAND">
            <summary>dest = source AND dest</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.RasterOperations.SRCINVERT">
            <summary>dest = source XOR dest</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.RasterOperations.SRCERASE">
            <summary>dest = source AND (NOT dest )</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.RasterOperations.NOTSRCCOPY">
            <summary>dest = (NOT source)</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.RasterOperations.NOTSRCERASE">
            <summary>dest = (NOT src) AND (NOT dest)</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.RasterOperations.MERGECOPY">
            <summary>dest = (source AND pattern)</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.RasterOperations.MERGEPAINT">
            <summary>dest = (NOT source) OR dest</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.RasterOperations.PATCOPY">
            <summary>dest = pattern</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.RasterOperations.PATPAINT">
            <summary>dest = DPSnoo</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.RasterOperations.PATINVERT">
            <summary>dest = pattern XOR dest</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.RasterOperations.DSTINVERT">
            <summary>dest = (NOT dest)</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.RasterOperations.BLACKNESS">
            <summary>dest = BLACK</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.RasterOperations.WHITENESS">
            <summary>dest = WHITE</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.RasterOperations.NOMIRRORBITMAP">
            <summary>Do not Mirror the bitmap in this call</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.RasterOperations.CAPTUREBLT">
            <summary>Include layered windows</summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Constants.ResourceTypes">
            <summary>
            The following are the predefined resource types.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.ResourceTypes.RT_ACCELERATOR">
            <summary>Accelerator table.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.ResourceTypes.RT_ANICURSOR">
            <summary>Animated cursor.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.ResourceTypes.RT_ANIICON">
            <summary>Animated icon.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.ResourceTypes.RT_BITMAP">
            <summary>Bitmap resource.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.ResourceTypes.RT_CURSOR">
            <summary>Hardware-dependent cursor resource.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.ResourceTypes.RT_DIALOG">
            <summary>Dialog box.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.ResourceTypes.RT_DLGINCLUDE">
            <summary>Allows a resource editing tool to associate a string with an .rc file. Typically, the string is the name of the header file that provides symbolic names. The resource compiler parses the string but otherwise ignores the value. For example, 1 DLGINCLUDE "MyFile.h"</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.ResourceTypes.RT_FONT">
            <summary>Font resource.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.ResourceTypes.RT_FONTDIR">
            <summary>Font directory resource.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.ResourceTypes.RT_GROUP_CURSOR">
            <summary>Hardware-independent cursor resource.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.ResourceTypes.RT_GROUP_ICON">
            <summary>Hardware-independent icon resource.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.ResourceTypes.RT_HTML">
            <summary>HTML resource.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.ResourceTypes.RT_ICON">
            <summary>Hardware-dependent icon resource.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.ResourceTypes.RT_MANIFEST">
            <summary>Side-by-Side Assembly Manifest.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.ResourceTypes.RT_MENU">
            <summary>Menu resource.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.ResourceTypes.RT_MESSAGETABLE">
            <summary>Message-table entry.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.ResourceTypes.RT_PLUGPLAY">
            <summary>Plug and Play resource.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.ResourceTypes.RT_RCDATA">
            <summary>Application-defined resource (raw data).</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.ResourceTypes.RT_STRING">
            <summary>String-table entry.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.ResourceTypes.RT_VERSION">
            <summary>Version resource.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.ResourceTypes.RT_VXD">
            <summary>VXD.</summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Constants.SectionFlags">
            <summary>
              From <c>Winnt.h</c>.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Constants.SHGetFileInfoFlags">
            <summary>
            Flags for the <see cref="M:JetBrains.Interop.WinApi.Shell32Dll.SHGetFileInfoW(System.String,System.UInt32,JetBrains.Interop.WinApi.SHFILEINFO*,System.UInt32,System.UInt32)"/> function.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.SHGetFileInfoFlags.SHGFI_ADDOVERLAYS">
            <summary>Version 5.0. Apply the appropriate overlays to the file's icon. The SHGFI_ICON flag must also be set.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.SHGetFileInfoFlags.SHGFI_ATTR_SPECIFIED">
            <summary>Modify SHGFI_ATTRIBUTES to indicate that the dwAttributes member of the SHFILEINFO structure at psfi contains the specific attributes that are desired. These attributes are passed to IShellFolder::GetAttributesOf. If this flag is not specified, 0xFFFFFFFF is passed to IShellFolder::GetAttributesOf, requesting all attributes. This flag cannot be specified with the SHGFI_ICON flag.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.SHGetFileInfoFlags.SHGFI_ATTRIBUTES">
            <summary>Retrieve the item attributes. The attributes are copied to the dwAttributes member of the structure specified in the psfi parameter. These are the same attributes that are obtained from IShellFolder::GetAttributesOf.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.SHGetFileInfoFlags.SHGFI_DISPLAYNAME">
            <summary>Retrieve the display name for the file. The name is copied to the szDisplayName member of the structure specified in psfi. The returned display name uses the long file name, if there is one, rather than the 8.3 form of the file name.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.SHGetFileInfoFlags.SHGFI_EXETYPE">
            <summary>Retrieve the type of the executable file if pszPath identifies an executable file. The information is packed into the return value. This flag cannot be specified with any other flags.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.SHGetFileInfoFlags.SHGFI_ICON">
            <summary>Retrieve the handle to the icon that represents the file and the index of the icon within the system image list. The handle is copied to the hIcon member of the structure specified by psfi, and the index is copied to the iIcon member.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.SHGetFileInfoFlags.SHGFI_ICONLOCATION">
            <summary>Retrieve the name of the file that contains the icon representing the file specified by pszPath, as returned by the IExtractIcon::GetIconLocation method of the file's icon handler. Also retrieve the icon index within that file. The name of the file containing the icon is copied to the szDisplayName member of the structure specified by psfi. The icon's index is copied to that structure's iIcon member.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.SHGetFileInfoFlags.SHGFI_LARGEICON">
            <summary>Modify SHGFI_ICON, causing the function to retrieve the file's large icon. The SHGFI_ICON flag must also be set.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.SHGetFileInfoFlags.SHGFI_LINKOVERLAY">
            <summary>Modify SHGFI_ICON, causing the function to add the link overlay to the file's icon. The SHGFI_ICON flag must also be set.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.SHGetFileInfoFlags.SHGFI_OPENICON">
            <summary>Modify SHGFI_ICON, causing the function to retrieve the file's open icon. Also used to modify SHGFI_SYSICONINDEX, causing the function to return the handle to the system image list that contains the file's small open icon. A container object displays an open icon to indicate that the container is open. The SHGFI_ICON and/or SHGFI_SYSICONINDEX flag must also be set.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.SHGetFileInfoFlags.SHGFI_OVERLAYINDEX">
            <summary>Version 5.0. Return the index of the overlay icon. The value of the overlay index is returned in the upper eight bits of the iIcon member of the structure specified by psfi. This flag requires that the SHGFI_ICON be set as well.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.SHGetFileInfoFlags.SHGFI_PIDL">
            <summary>Indicate that pszPath is the address of an ITEMIDLIST structure rather than a path name.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.SHGetFileInfoFlags.SHGFI_SELECTED">
            <summary>Modify SHGFI_ICON, causing the function to blend the file's icon with the system highlight color. The SHGFI_ICON flag must also be set.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.SHGetFileInfoFlags.SHGFI_SHELLICONSIZE">
            <summary>Modify SHGFI_ICON, causing the function to retrieve a Shell-sized icon. If this flag is not specified the function sizes the icon according to the system metric values. The SHGFI_ICON flag must also be set.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.SHGetFileInfoFlags.SHGFI_SMALLICON">
            <summary>Modify SHGFI_ICON, causing the function to retrieve the file's small icon. Also used to modify SHGFI_SYSICONINDEX, causing the function to return the handle to the system image list that contains small icon images. The SHGFI_ICON and/or SHGFI_SYSICONINDEX flag must also be set.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.SHGetFileInfoFlags.SHGFI_SYSICONINDEX">
            <summary>Retrieve the index of a system image list icon. If successful, the index is copied to the iIcon member of psfi. The return value is a handle to the system image list. Only those images whose indices are successfully copied to iIcon are valid. Attempting to access other images in the system image list will result in undefined behavior.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.SHGetFileInfoFlags.SHGFI_TYPENAME">
            <summary>Retrieve the string that describes the file's type. The string is copied to the szTypeName member of the structure specified in psfi.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.SHGetFileInfoFlags.SHGFI_USEFILEATTRIBUTES">
            <summary>Indicates that the function should not attempt to access the file specified by pszPath. Rather, it should act as if the file specified by pszPath exists with the file attributes passed in dwFileAttributes. This flag cannot be combined with the SHGFI_ATTRIBUTES, SHGFI_EXETYPE, or SHGFI_PIDL flags.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.SMTO.SMTO_NORMAL">
            <summary>
            The calling thread is not prevented from processing other requests while waiting for the function to return.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.SMTO.SMTO_BLOCK">
            <summary>
            Prevents the calling thread from processing any other requests until the function returns.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.SMTO.SMTO_ABORTIFHUNG">
            <summary>
            The function returns without waiting for the time-out period to elapse if the receiving thread appears to not respond or "hangs."
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.SMTO.SMTO_NOTIMEOUTIFNOTHUNG">
            <summary>
            The function does not enforce the time-out period as long as the receiving thread is processing messages.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.SMTO.SMTO_ERRORONEXIT">
            <summary>
            The function should return 0 if the receiving window is destroyed or its owning thread dies while the message is being processed.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Constants.STATFLAG">
            <summary>
            The STATFLAG enumeration values indicate whether the method should try to return a name in the pwcsName member of the STATSTG structure. The values are used in the ILockBytes::Stat, IStorage::Stat, and IStream::Stat methods to save memory when the pwcsName member is not required.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.STATFLAG.STATFLAG_DEFAULT">
            <summary>
            Requests that the statistics include the pwcsName member of the STATSTG structure.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.STATFLAG.STATFLAG_NONAME">
            <summary>
            Requests that the statistics not include the pwcsName member of the STATSTG structure. If the name is omitted, there is no need for the ILockBytes::Stat, IStorage::Stat, and IStream::Stat methods methods to allocate and free memory for the string value of the name, therefore the method reduces time and resources used in an allocation and free operation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.STATFLAG.STATFLAG_NOOPEN">
            <summary>
            Not implemented.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Constants.STGC">
            <summary>
            The STGC enumeration constants specify the conditions for performing the commit operation in the IStorage::Commit and IStream::Commit methods.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.STGFMT.STGFMT_DOCUMENT">
            <summary>
              This is a legacy define to allow old component to builds
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Constants.STGM">
            <summary>
              Storage instantiation modes
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Constants.STGTY">
            <summary>
            The STGTY enumeration values are used in the type member of the STATSTG structure to indicate the type of the storage element. A storage element is a storage object, a stream object, or a byte-array object (LOCKBYTES).
            </summary>
            <example><code>
                /* Storage element types */
               typedef enum tagSTGTY
               {
                   STGTY_STORAGE   = 1,
                   STGTY_STREAM    = 2,
                   STGTY_LOCKBYTES = 3,
                   STGTY_PROPERTY  = 4
               } STGTY;
            </code></example>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.STGTY.STGTY_STORAGE">
            <summary>
            Indicates that the storage element is a storage object.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.STGTY.STGTY_STREAM">
            <summary>
            Indicates that the storage element is a stream object.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.STGTY.STGTY_LOCKBYTES">
            <summary>
            Indicates that the storage element is a byte-array object.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.STGTY.STGTY_PROPERTY">
            <summary>
            Indicates that the storage element is a property storage object.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Constants.STREAM_SEEK">
            <summary>
            The STREAM_SEEK enumeration values specify the origin from which to calculate the new seek-pointer location. They are used for the dworigin parameter in the IStream::Seek method. The new seek position is calculated using this value and the dlibMove parameter.
            </summary>
            <remarks>Binary compatible with the <see cref="T:System.IO.SeekOrigin" /> enum.</remarks>
            <example><code>
                typedef enum tagSTREAM_SEEK
               {
                   STREAM_SEEK_SET = 0,
                   STREAM_SEEK_CUR = 1,
                   STREAM_SEEK_END = 2
               } STREAM_SEEK;
            </code></example>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.STREAM_SEEK.STREAM_SEEK_SET">
            <summary>
            The new seek pointer is an offset relative to the beginning of the stream. In this case, the dlibMove parameter is the new seek position relative to the beginning of the stream.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.STREAM_SEEK.STREAM_SEEK_CUR">
            <summary>
            The new seek pointer is an offset relative to the current seek pointer location. In this case, the dlibMove parameter is the signed displacement from the current seek position.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.STREAM_SEEK.STREAM_SEEK_END">
            <summary>
            The new seek pointer is an offset relative to the end of the stream. In this case, the dlibMove parameter is the new seek position relative to the end of the stream.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.TOKEN_ELEVATION_TYPE.TokenElevationTypeDefault">
            <summary>
              Type 1 is a full token with no privileges removed or groups disabled. A full token is only used if User Account
              Control is disabled or if the user is the built-in Administrator account (for which UAC disabled by default), service
              account or local system account.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.TOKEN_ELEVATION_TYPE.TokenElevationTypeFull">
            <summary>
              Type 2 is an elevated token with no privileges removed or groups disabled. An elevated token is used when User
              Account Control is enabled and the user chooses to start the program using Run as administrator. An elevated token is
              also used when an application is configured to always require administrative privilege or to always require maximum
              privilege, and the user is a member of the Administrators group.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.TOKEN_ELEVATION_TYPE.TokenElevationTypeLimited">
            <summary>
              Type 3 is a limited token with administrative privileges removed and administrative groups disabled. The limited
              token is used when User Account Control is enabled, the application does not require administrative privilege, and
              the user does not choose to start the program using Run as administrator.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Constants.UpdateLayeredWindowFlags">
            <summary>
            Flags for the <see cref="M:JetBrains.Interop.WinApi.User32Dll.UpdateLayeredWindow(System.Void*,System.Void*,JetBrains.Interop.WinApi.POINT*,JetBrains.Interop.WinApi.Declarations.Structures.SIZE*,System.Void*,JetBrains.Interop.WinApi.POINT*,System.UInt32,JetBrains.Interop.WinApi.Declarations.Structures.BLENDFUNCTION*,System.UInt32)"/> function.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.UpdateLayeredWindowFlags.ULW_COLORKEY">
            <summary>
            Use crKey as the transparency color. (see <see cref="M:JetBrains.Interop.WinApi.User32Dll.UpdateLayeredWindow(System.Void*,System.Void*,JetBrains.Interop.WinApi.POINT*,JetBrains.Interop.WinApi.Declarations.Structures.SIZE*,System.Void*,JetBrains.Interop.WinApi.POINT*,System.UInt32,JetBrains.Interop.WinApi.Declarations.Structures.BLENDFUNCTION*,System.UInt32)"/>)
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.UpdateLayeredWindowFlags.ULW_ALPHA">
            <summary>
            Use pblend as the blend function. If the display mode is 256 colors or less, the effect of this value is the same as the effect of <see cref="F:JetBrains.Interop.WinApi.Declarations.Constants.UpdateLayeredWindowFlags.ULW_OPAQUE"/>.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.UpdateLayeredWindowFlags.ULW_OPAQUE">
            <summary>
            Draw an opaque layered window. 
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Constants.UxThemeClasses">
            <summary>
            Classes for <see cref="T:JetBrains.Interop.WinApi.UxThemeDll"/> functions like <see cref="M:JetBrains.Interop.WinApi.UxThemeDll.OpenThemeData(System.Void*,System.String)"/>.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Constants.UxThemeParts">
            <summary>
            Parts for <see cref="T:JetBrains.Interop.WinApi.UxThemeDll"/> functions like <see cref="M:JetBrains.Interop.WinApi.UxThemeDll.DrawThemeBackground(System.Void*,System.Void*,System.Int32,System.Int32,JetBrains.Interop.WinApi.RECT*,JetBrains.Interop.WinApi.RECT*)"/>.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Constants.WaitResult">
            <summary>
            Result flags for the wait functions.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.WaitResult.WAIT_ABANDONED">
            <summary>
             The specified object is a mutex object that was not released by the thread that owned the mutex object before the owning thread terminated. Ownership of the mutex object is granted to the calling thread, and the mutex is set to nonsignaled.
            If the mutex was protecting persistent state information, you should check it for consistency.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.WaitResult.WAIT_OBJECT_0">
            <summary>
            The state of the specified object is signaled.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Constants.WaitResult.WAIT_TIMEOUT">
            <summary>
            The time-out interval elapsed, and the object's state is nonsignaled.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Interfaces.IEnumSTATPROPSETSTG">
            <summary>
            Enumerates an array of structures containing statistical data about the property sets managed by the current <see cref="T:JetBrains.Interop.WinApi.Declarations.Interfaces.IPropertySetStorage" /> instance. For more information, see IEnumSTATPROPSETSTG, IEnumSTATPROPSETSTG-Compound File Implementation, and STATPROPSETSTG.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Interfaces.IEnumSTATSTG">
            <summary>
            Enumerates an array of structures containing statistical data about open storage, stream, or byte array objects. For more information, see IEnumSTATSTG and STATSTG.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Interfaces.ILockBytes">
            <summary>
            The ILockBytes interface is implemented on a byte array object that is backed by some physical storage, such as a disk file, global memory, or a database. It is used by a COM compound file storage object to give its root storage access to the physical device, while isolating the root storage from the details of accessing the physical storage.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Interfaces.IPropertySetStorage">
            <summary>
            Creates, opens, deletes, and enumerates storage of property sets supporting the <see cref="T:JetBrains.Interop.WinApi.Declarations.Interfaces.IPropertyStorage" /> interface. For more information, see IPropertySetStorage.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Interfaces.IPropertyStorage">
            <summary>
            Manages the persistent properties of a single property set. For more information, see IPropertyStorage and IPropertySetStorage.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Interfaces.IServiceProvider">
            <summary>
            <para>The IServiceProvider interface is a generic access mechanism to locate a GUID-identified service that is provided through a control or any other object that the service can communicate with. For example, an embedded object (such as an OLE control) typically communicates only with its associated client site object in the container through the IOleClientSite interface that is supplied by using IOleObject::SetClientSite. The embedded object must ask the client site for some other service that the container supports when that service might not be implemented in the client site.</para>
            <para>The client site must provide a means by which the control that is managed by the site can access the service when necessary. For example, the IOleInPlaceSite::GetWindowContext function can be used by an in-place object or control to access interface pointers for the document object that contains the site and the frame object that contains the document. Because these interface pointers exist on separate objects, the control cannot call the site's QueryInterface to obtain those pointers. Instead, use the IServiceProvider interface. </para>
            <para>The IServiceProvider interface has only one member, QueryService, through which a caller specifies the service ID (SID, a GUID), the IID of the interface to return, and the address of the caller's interface pointer variable. </para>
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Declarations.Interfaces.IServiceProvider.QueryService(System.Guid*,System.Guid*)">
            <summary>
            Acts as the factory method for any services exposed through an implementation of IServiceProvider.
            </summary>
            <param name="guidService">[in] The unique identifier of the service (an SID). </param>
            <param name="riid">[in] The unique identifier of the interface that the caller wants to receive for the service. </param>
            <returns>[out] The address of the caller-allocated variable to receive the interface pointer of the service on successful return from this function. The caller becomes responsible for calling Release through this interface pointer when the service is no longer required.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Declarations.Interfaces.IStorage.Commit(System.UInt32)">
            <seealso cref="T:JetBrains.Interop.WinApi.Declarations.Constants.STGC"/>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Structures.BITMAP">
            <summary>
            The BITMAP structure defines the type, width, height, color format, and bit values of a bitmap.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.BITMAP.bmType">
            <summary>
            The bitmap type. This member must be zero.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.BITMAP.bmWidth">
            <summary>
            The width, in pixels, of the bitmap. The width must be greater than zero.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.BITMAP.bmHeight">
            <summary>
            The height, in pixels, of the bitmap. The height must be greater than zero.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.BITMAP.bmWidthBytes">
            <summary>
            The number of bytes in each scan line. This value must be divisible by 2, because the system assumes that the bit values of a bitmap form an array that is word aligned.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.BITMAP.bmPlanes">
            <summary>
            The count of color planes.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.BITMAP.bmBitsPixel">
            <summary>
            The number of bits required to indicate the color of a pixel.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.BITMAP.bmBits">
            <summary>
            A pointer to the location of the bit values for the bitmap. The bmBits member must be a pointer to an array of character (1-byte) values.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Structures.BITMAPINFO">
            <summary>
            The BITMAPINFO structure defines the dimensions and color information for a DIB. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.BITMAPINFO.bmiHeader">
            <summary>
            Specifies a <see cref="T:JetBrains.Interop.WinApi.Declarations.Structures.BITMAPINFOHEADER"/> structure that contains information about the dimensions of color format.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.BITMAPINFO.bmiColors">
            <summary>
            <c>Null</c>, unless you're using a palette.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Structures.BITMAPINFOHEADER">
            <summary>
            The BITMAPINFOHEADER structure contains information about the dimensions and color format of a DIB. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.BITMAPINFOHEADER.biSize">
            <summary>
            Specifies the number of bytes required by the structure. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.BITMAPINFOHEADER.biWidth">
            <summary>
            Specifies the width of the bitmap, in pixels. 
            Windows 98/Me, Windows 2000/XP: If biCompression is BI_JPEG or BI_PNG, the biWidth member specifies the width of the decompressed JPEG or PNG image file, respectively.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.BITMAPINFOHEADER.biHeight">
            <summary>
            Specifies the height of the bitmap, in pixels. If biHeight is positive, the bitmap is a bottom-up DIB and its origin is the lower-left corner. If biHeight is negative, the bitmap is a top-down DIB and its origin is the upper-left corner. 
            If biHeight is negative, indicating a top-down DIB, biCompression must be either BI_RGB or BI_BITFIELDS. Top-down DIBs cannot be compressed. 
            Windows 98/Me, Windows 2000/XP: If biCompression is BI_JPEG or BI_PNG, the biHeight member specifies the height of the decompressed JPEG or PNG image file, respectively. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.BITMAPINFOHEADER.biPlanes">
            <summary>
            Specifies the number of planes for the target device. This value must be set to 1. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.BITMAPINFOHEADER.biBitCount">
            <summary>
            Specifies the number of bits-per-pixel. The biBitCount member of the BITMAPINFOHEADER structure determines the number of bits that define each pixel and the maximum number of colors in the bitmap. This member must be one of the following values. 
            Value Meaning 
            0 Windows 98/Me, Windows 2000/XP: The number of bits-per-pixel is specified or is implied by the JPEG or PNG format.  
            1 The bitmap is monochrome, and the bmiColors member of BITMAPINFO contains two entries. Each bit in the bitmap array represents a pixel. If the bit is clear, the pixel is displayed with the color of the first entry in the bmiColors table; if the bit is set, the pixel has the color of the second entry in the table. 
            4 The bitmap has a maximum of 16 colors, and the bmiColors member of BITMAPINFO contains up to 16 entries. Each pixel in the bitmap is represented by a 4-bit index into the color table. For example, if the first byte in the bitmap is 0x1F, the byte represents two pixels. The first pixel contains the color in the second table entry, and the second pixel contains the color in the sixteenth table entry. 
            8 The bitmap has a maximum of 256 colors, and the bmiColors member of BITMAPINFO contains up to 256 entries. In this case, each byte in the array represents a single pixel. 
            16 The bitmap has a maximum of 2^16 colors. If the biCompression member of the BITMAPINFOHEADER is BI_RGB, the bmiColors member of BITMAPINFO is NULL. Each WORD in the bitmap array represents a single pixel. The relative intensities of red, green, and blue are represented with five bits for each color component. The value for blue is in the least significant five bits, followed by five bits each for green and red. The most significant bit is not used. The bmiColors color table is used for optimizing colors used on palette-based devices, and must contain the number of entries specified by the biClrUsed member of the BITMAPINFOHEADER. 
            If the biCompression member of the BITMAPINFOHEADER is BI_BITFIELDS, the bmiColors member contains three DWORD color masks that specify the red, green, and blue components, respectively, of each pixel. Each WORD in the bitmap array represents a single pixel.
            Windows NT/Windows 2000/XP: When the biCompression member is BI_BITFIELDS, bits set in each DWORD mask must be contiguous and should not overlap the bits of another mask. All the bits in the pixel do not have to be used. 
            Windows 95/98/Me: When the biCompression member is BI_BITFIELDS, the system supports only the following 16bpp color masks: A 5-5-5 16-bit image, where the blue mask is 0x001F, the green mask is 0x03E0, and the red mask is 0x7C00; and a 5-6-5 16-bit image, where the blue mask is 0x001F, the green mask is 0x07E0, and the red mask is 0xF800.
            24 The bitmap has a maximum of 2^24 colors, and the bmiColors member of BITMAPINFO is NULL. Each 3-byte triplet in the bitmap array represents the relative intensities of blue, green, and red, respectively, for a pixel. The bmiColors color table is used for optimizing colors used on palette-based devices, and must contain the number of entries specified by the biClrUsed member of the BITMAPINFOHEADER.  
            32 The bitmap has a maximum of 2^32 colors. If the biCompression member of the BITMAPINFOHEADER is BI_RGB, the bmiColors member of BITMAPINFO is NULL. Each DWORD in the bitmap array represents the relative intensities of blue, green, and red, respectively, for a pixel. The high byte in each DWORD is not used. The bmiColors color table is used for optimizing colors used on palette-based devices, and must contain the number of entries specified by the biClrUsed member of the BITMAPINFOHEADER. 
            If the biCompression member of the BITMAPINFOHEADER is BI_BITFIELDS, the bmiColors member contains three DWORD color masks that specify the red, green, and blue components, respectively, of each pixel. Each DWORD in the bitmap array represents a single pixel.
            Windows NT/ 2000: When the biCompression member is BI_BITFIELDS, bits set in each DWORD mask must be contiguous and should not overlap the bits of another mask. All the bits in the pixel do not need to be used.
            Windows 95/98/Me: When the biCompression member is BI_BITFIELDS, the system supports only the following 32-bpp color mask: The blue mask is 0x000000FF, the green mask is 0x0000FF00, and the red mask is 0x00FF0000. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.BITMAPINFOHEADER.biCompression">
            <summary>
            Use <see cref="T:JetBrains.Interop.WinApi.Declarations.Constants.BiCompression"/>.
            Specifies the type of compression for a compressed bottom-up bitmap (top-down DIBs cannot be compressed). This member can be one of the following values. 
            Value Description 
            BI_RGB An uncompressed format. 
            BI_RLE8 A run-length encoded (RLE) format for bitmaps with 8 bpp. The compression format is a 2-byte format consisting of a count byte followed by a byte containing a color index. For more information, see Bitmap Compression.  
            BI_RLE4 An RLE format for bitmaps with 4 bpp. The compression format is a 2-byte format consisting of a count byte followed by two word-length color indexes. For more information, see Bitmap Compression. 
            BI_BITFIELDS Specifies that the bitmap is not compressed and that the color table consists of three DWORD color masks that specify the red, green, and blue components, respectively, of each pixel. This is valid when used with 16- and 32-bpp bitmaps. 
            BI_JPEG Windows 98/Me, Windows 2000/XP: Indicates that the image is a JPEG image. 
            BI_PNG Windows 98/Me, Windows 2000/XP: Indicates that the image is a PNG image. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.BITMAPINFOHEADER.biSizeImage">
            <summary>
            Specifies the size, in bytes, of the image. This may be set to zero for BI_RGB bitmaps. 
            Windows 98/Me, Windows 2000/XP: If biCompression is BI_JPEG or BI_PNG, biSizeImage indicates the size of the JPEG or PNG image buffer, respectively. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.BITMAPINFOHEADER.biXPelsPerMeter">
            <summary>
            Specifies the horizontal resolution, in pixels-per-meter, of the target device for the bitmap. An application can use this value to select a bitmap from a resource group that best matches the characteristics of the current device. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.BITMAPINFOHEADER.biYPelsPerMeter">
            <summary>
            Specifies the vertical resolution, in pixels-per-meter, of the target device for the bitmap. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.BITMAPINFOHEADER.biClrUsed">
            <summary>
            Specifies the number of color indexes in the color table that are actually used by the bitmap. If this value is zero, the bitmap uses the maximum number of colors corresponding to the value of the biBitCount member for the compression mode specified by biCompression. 
            If biClrUsed is nonzero and the biBitCount member is less than 16, the biClrUsed member specifies the actual number of colors the graphics engine or device driver accesses. If biBitCount is 16 or greater, the biClrUsed member specifies the size of the color table used to optimize performance of the system color palettes. If biBitCount equals 16 or 32, the optimal color palette starts immediately following the three DWORD masks. 
            When the bitmap array immediately follows the BITMAPINFO structure, it is a packed bitmap. Packed bitmaps are referenced by a single pointer. Packed bitmaps require that the biClrUsed member must be either zero or the actual size of the color table. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.BITMAPINFOHEADER.biClrImportant">
            <summary>
            Specifies the number of color indexes that are required for displaying the bitmap. If this value is zero, all colors are required. 
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Structures.BLENDFUNCTION">
            <summary>
            The BLENDFUNCTION structure controls blending by specifying the blending functions for source and destination bitmaps.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.BLENDFUNCTION.BlendOp">
            <summary>
            Specifies the source blend operation. Currently, the only source and destination blend operation that has been defined is <see cref="F:JetBrains.Interop.WinApi.Declarations.Structures.BLENDFUNCTION.AC_SRC_OVER" />. For details, see the following Remarks section.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.BLENDFUNCTION.BlendFlags">
            <summary>
            Must be zero.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.BLENDFUNCTION.SourceConstantAlpha">
            <summary>
            Specifies an alpha transparency value to be used on the entire source bitmap. The SourceConstantAlpha value is combined with any per-pixel alpha values in the source bitmap. If you set SourceConstantAlpha to 0, it is assumed that your image is transparent. Set the SourceConstantAlpha value to 255 (opaque) when you only want to use per-pixel alpha values.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.BLENDFUNCTION.AlphaFormat">
            <summary>
            This member controls the way the source and destination bitmaps are interpreted. AlphaFormat has the following value.
            <see cref="F:JetBrains.Interop.WinApi.Declarations.Structures.BLENDFUNCTION.AC_SRC_ALPHA" /> -> This flag is set when the bitmap has an Alpha channel (that is, per-pixel alpha). Note that the APIs use premultiplied alpha, which means that the red, green and blue channel values in the bitmap must be premultiplied with the alpha channel value. For example, if the alpha channel value is x, the red, green and blue channels must be multiplied by x and divided by 0xff prior to the call.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Declarations.Structures.BLENDFUNCTION.GetPerPixelBlender(System.Byte)">
            <summary>
            Gets such a structure that supports per-pixel blending and applies an additional constant alpha to the whole bitmap (set <c>255</c> for no constant alpha, just per-pixel).
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Declarations.Structures.BLENDFUNCTION.GetPerPixelBlender">
            <summary>
            Gets a per-pixel blender without uniform transparency.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Declarations.Structures.BLENDFUNCTION.GetUniformBlender(System.Byte)">
            <summary>
            Gets such a structure that supports uniform transparency only.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Declarations.Structures.BLENDFUNCTION.GetUniformBlender">
            <summary>
            Gets an opaque blender that ignores per-pixel alpha and has no uniform transparency.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.BLENDFUNCTION.AC_SRC_OVER">
            <summary>
            When the BlendOp parameter is AC_SRC_OVER , the source bitmap is placed over the destination bitmap based on the alpha values of the source pixels. (<see cref="T:JetBrains.Interop.WinApi.Declarations.Structures.BLENDFUNCTION" />)
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.BLENDFUNCTION.AC_SRC_ALPHA">
            <summary>
            This flag is set when the bitmap has an Alpha channel (that is, per-pixel alpha). Note that the APIs use premultiplied alpha, which means that the red, green and blue channel values in the bitmap must be premultiplied with the alpha channel value. For example, if the alpha channel value is x, the red, green and blue channels must be multiplied by x and divided by 0xff prior to the call.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Structures.CURSORINFO">
            <summary>
            The CURSORINFO structure contains global cursor information.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.CURSORINFO.cbSize">
            <summary>
            Specifies the size, in bytes, of the structure. The caller must set this to <c>sizeof(CURSORINFO)</c>.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.CURSORINFO.flags">
            <summary>
            Specifies the cursor state. This parameter can be one of the following values. 
            • 0 — The cursor is hidden.
            • CURSOR_SHOWING — The cursor is showing.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.CURSORINFO.hCursor">
            <summary>
            Handle to the cursor. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.CURSORINFO.ptScreenPos">
            <summary>
            A <see cref="T:JetBrains.Interop.WinApi.POINT"/> structure that receives the screen coordinates of the cursor. 
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Structures.HTTP_SERVICE_CONFIG_SSL_KEY">
            <summary>The HTTP_SERVICE_CONFIG_SSL_KEY structure serves as the key by which a given Secure Sockets Layer (SSL) certificate record is identified. It appears in the HTTP_SERVICE_CONFIG_SSL_SET and the HTTP_SERVICE_CONFIG_SSL_QUERY structures, and is passed as the pConfigInformation parameter to HTTPDeleteServiceConfiguration, HttpQueryServiceConfiguration, and HttpSetServiceConfiguration when the ConfigId parameter is set to HttpServiceConfigSSLCertInfo.</summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Structures.HTTP_SERVICE_CONFIG_SSL_QUERY">
            <summary>The HTTP_SERVICE_CONFIG_SSL_QUERY structure is used to specify a particular record to query in the SSL configuration store. It is passed to the HttpQueryServiceConfiguration function using the pInputConfigInfo parameter when the ConfigId parameter is set to HttpServiceConfigSSLCertInfo.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.HTTP_SERVICE_CONFIG_SSL_QUERY.QueryDesc">
            <summary>One of the values from the HTTP_SERVICE_CONFIG_QUERY_TYPE enumeration.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.HTTP_SERVICE_CONFIG_SSL_QUERY.KeyDesc">
            <summary>If the QueryDesc parameter is equal to HttpServiceConfigQueryExact, then KeyDesc should contain an HTTP_SERVICE_CONFIG_SSL_KEY structure that identifies the SSL certificate record queried. If the QueryDesc parameter is equal to HTTPServiceConfigQueryNext, then KeyDesc is ignored.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.HTTP_SERVICE_CONFIG_SSL_QUERY.dwToken">
             <summary>If the QueryDesc parameter is equal to HTTPServiceConfigQueryNext, then dwToken must be equal to zero on the first call to the HttpQueryServiceConfiguration function, one on the second call, two on the third call, and so forth until all SSL certificate records are returned, at which point HttpQueryServiceConfiguration returns ERROR_NO_MORE_ITEMS.
            
             If the QueryDesc parameter is equal to HttpServiceConfigQueryExact, then dwToken is ignored.</summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Structures.IntOrStringResourceId">
            <summary>
            A helper <c>MAKEINTRESOURCE</c>-friendly structure which, just like the WinAPI stuff, can hold either a string or an int to identify the resource.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Declarations.Structures.IntOrStringResourceId.#ctor(System.String)">
            <summary>
            Creates a textual resource name. NOTE that this does not roundtrip with <see cref="M:JetBrains.Interop.WinApi.Declarations.Structures.IntOrStringResourceId.ToString" /> (which represents either a string or an integer name), <see cref="M:JetBrains.Interop.WinApi.Declarations.Structures.IntOrStringResourceId.Parse(System.String)" /> does.
            </summary>
            <param name="stringResource"></param>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Declarations.Structures.IntOrStringResourceId.Parse(System.String)">
            <summary>
            Roundtrips with <see cref="M:JetBrains.Interop.WinApi.Declarations.Structures.IntOrStringResourceId.ToString" /> for either a string or an integer name.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.MEMORY_BASIC_INFORMATION.BaseAddress">
            <summary>
            A pointer to the base address of the region of pages.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.MEMORY_BASIC_INFORMATION.AllocationBase">
            <summary>
            A pointer to the base address of a range of pages allocated by the VirtualAlloc function. The page pointed to by the BaseAddress member is contained within this allocation range.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.MEMORY_BASIC_INFORMATION.AllocationProtect">
            <summary>
            The memory protection option when the region was initially allocated. This member can be one of the memory protection constants or 0 if the caller does not have access.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.MEMORY_BASIC_INFORMATION.RegionSize">
            <summary>
            The size of the region beginning at the base address in which all pages have identical attributes, in bytes.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.MEMORY_BASIC_INFORMATION.State">
            <summary>
            The state of the pages in the region. This member can be one of the following values: <see cref="F:JetBrains.Interop.WinApi.Declarations.Constants.MemoryAllocationTypes.MEM_COMMIT"/>, <see cref="F:JetBrains.Interop.WinApi.Declarations.Constants.MemoryAllocationTypes.MEM_RESERVE"/>, <see cref="F:JetBrains.Interop.WinApi.Declarations.Constants.MemoryAllocationTypes.MEM_FREE"/>.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.MEMORY_BASIC_INFORMATION.Protect">
            <summary>
            The access protection of the pages in the region. This member is one of the values listed for the AllocationProtect member.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.MEMORY_BASIC_INFORMATION.Type">
            <summary>
            The type of pages in the region. See <see cref="T:JetBrains.Interop.WinApi.Declarations.Constants.MemoryPageTypes"/>.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.MEMORY_BASIC_INFORMATION_WOW64.BaseAddress">
            <summary>
            A pointer to the base address of the region of pages.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.MEMORY_BASIC_INFORMATION_WOW64.AllocationBase">
            <summary>
            A pointer to the base address of a range of pages allocated by the VirtualAlloc function. The page pointed to by the BaseAddress member is contained within this allocation range.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.MEMORY_BASIC_INFORMATION_WOW64.AllocationProtect">
            <summary>
            The memory protection option when the region was initially allocated. This member can be one of the memory protection constants or 0 if the caller does not have access.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.MEMORY_BASIC_INFORMATION_WOW64.RegionSize">
            <summary>
            The size of the region beginning at the base address in which all pages have identical attributes, in bytes.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.MEMORY_BASIC_INFORMATION_WOW64.State">
            <summary>
            The state of the pages in the region. This member can be one of the following values: <see cref="F:JetBrains.Interop.WinApi.Declarations.Constants.MemoryAllocationTypes.MEM_COMMIT"/>, <see cref="F:JetBrains.Interop.WinApi.Declarations.Constants.MemoryAllocationTypes.MEM_RESERVE"/>, <see cref="F:JetBrains.Interop.WinApi.Declarations.Constants.MemoryAllocationTypes.MEM_FREE"/>.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.MEMORY_BASIC_INFORMATION_WOW64.Protect">
            <summary>
            The access protection of the pages in the region. This member is one of the values listed for the AllocationProtect member.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.MEMORY_BASIC_INFORMATION_WOW64.Type">
            <summary>
            The type of pages in the region. See <see cref="T:JetBrains.Interop.WinApi.Declarations.Constants.MemoryPageTypes"/>.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Structures.NativeResourceTypeAndName">
            <summary>
            A helper <c>MAKEINTRESOURCE</c>-friendly structure which, just like the WinAPI stuff, can hold either a string or an int to identify the resource.
            Holds two values, for the resource type and resource name/id.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Declarations.Structures.NativeResourceTypeAndName.WithMakeIntResource(JetBrains.Interop.WinApi.Declarations.Structures.NativeResourceTypeAndName.WithMakeIntResourceDelegate)">
            <summary>
            Does the <c>MAKEINTRESOURCE</c>-compliant pointer magic for the resource type and name.
            </summary>
            <param name="F"></param>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Structures.NativeResourceTypeAndName.WithMakeIntResourceDelegate">
            <summary>
            A callback with <c>MAKEINTRESOURCE</c>-processed parameters.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Structures.PROCESS_INFORMATION">
            <summary>
            Contains information about a newly created process and its primary thread. It is used with the CreateProcess, CreateProcessAsUser, CreateProcessWithLogonW, or CreateProcessWithTokenW function.
            </summary>
            <remarks>
            If the function succeeds, be sure to call the CloseHandle function to close the hProcess and hThread handles when you are finished with them. Otherwise, when the child process exits, the system cannot clean up the process structures for the child process because the parent process still has open handles to the child process. However, the system will close these handles when the parent process terminates, so the structures related to the child process object would be cleaned up at this point.
            </remarks>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.PROCESS_INFORMATION.hProcess">
            <summary>
            A handle to the newly created process. The handle is used to specify the process in all functions that perform operations on the process object.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.PROCESS_INFORMATION.hThread">
            <summary>
            A handle to the primary thread of the newly created process. The handle is used to specify the thread in all functions that perform operations on the thread object.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.PROCESS_INFORMATION.dwProcessId">
            <summary>
            A value that can be used to identify a process. The value is valid from the time the process is created until all handles to the process are closed and the process object is freed; at this point, the identifier may be reused.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.PROCESS_INFORMATION.dwThreadId">
            <summary>
            A value that can be used to identify a thread. The value is valid from the time the thread is created until all handles to the thread are closed and the thread object is freed; at this point, the identifier may be reused.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.PROPSPEC.ulKind">
            <seealso cref="T:JetBrains.Interop.WinApi.Declarations.Constants.PRSPEC" />
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.PROPVARIANT.pdata1">
            <summary>
            Data entry start. The data size is two pointers large, so there is the second one to keep space.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Structures.SIZE">
            <summary>
            The SIZE structure specifies the width and height of a rectangle.
            </summary>
            <remarks>The rectangle dimensions stored in this structure may correspond to viewport extents, window extents, text extents, bitmap dimensions, or the aspect-ratio filter for some extended functions. </remarks>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.SIZE.cx">
            <summary>
            Specifies the rectangle's width. The units depend on which function uses this.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.SIZE.cy">
            <summary>
            Specifies the rectangle's height. The units depend on which function uses this.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Declarations.Structures.SIZE.Equals(JetBrains.Interop.WinApi.Declarations.Structures.SIZE)">
            <summary>
            Indicates whether the current object is equal to another object of the same type.
            </summary>
            <returns>
            true if the current object is equal to the <paramref name="other" /> parameter; otherwise, false.
            </returns>
            <param name="other">An object to compare with this object.</param>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Declarations.Structures.SIZE.Equals(System.Object)">
            <summary>
            Indicates whether this instance and a specified object are equal.
            </summary>
            <returns>
            true if <paramref name="obj" /> and this instance are the same type and represent the same value; otherwise, false.
            </returns>
            <param name="obj">Another object to compare to. </param>
            <filterpriority>2</filterpriority>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Declarations.Structures.SIZE.GetHashCode">
            <summary>
            Returns the hash code for this instance.
            </summary>
            <returns>
            A 32-bit signed integer that is the hash code for this instance.
            </returns>
            <filterpriority>2</filterpriority>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Declarations.Structures.SIZE.ToString">
            <summary>
            Returns a <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
            </summary>
            <returns>
            A <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
            </returns>
            <filterpriority>2</filterpriority>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Structures.STATSTG">
            <summary>
            Contains statistical information about an open storage, stream, or byte-array object.
            </summary>
            <example><code>
               typedef struct tagSTATSTG
               {
                   LPOLESTR pwcsName;
                   DWORD type;
                   ULARGE_INTEGER cbSize;
                   FILETIME mtime;
                   FILETIME ctime;
                   FILETIME atime;
                   DWORD grfMode;
                   DWORD grfLocksSupported;
                   CLSID clsid;
                   DWORD grfStateBits;
                   DWORD reserved;
               } STATSTG;
            </code></example>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.STATSTG.pwcsName">
            <summary>
            Represents a pointer to a null-terminated string containing the name of the object described by this structure.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.STATSTG.type">
            <summary>
            Indicates the type of storage object, which is one of the values from the STGTY enumeration.
            </summary>
            <seealso cref="T:JetBrains.Interop.WinApi.Declarations.Constants.STGTY" />
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.STATSTG.cbSize">
            <summary>
            Specifies the size, in bytes, of the stream or byte array.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.STATSTG.mtime">
            <summary>
            Indicates the last modification time for this storage, stream, or byte array.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.STATSTG.ctime">
            <summary>
            Indicates the creation time for this storage, stream, or byte array.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.STATSTG.atime">
            <summary>
            Specifies the last access time for this storage, stream, or byte array.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.STATSTG.grfMode">
            <summary>
            Indicates the access mode that was specified when the object was opened.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.STATSTG.grfLocksSupported">
            <summary>
            Indicates the types of region locking supported by the stream or byte array.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.STATSTG.clsid">
            <summary>
            Indicates the class identifier for the storage object.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.STATSTG.grfStateBits">
            <summary>
            Indicates the current state bits of the storage object (the value most recently set by the IStorage::SetStateBits method).
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.STATSTG.reserved">
            <summary>
            Reserved for future use.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Structures.SYSTEM_HANDLE_INFORMATION">
            <summary>
            The structure is what a successful call to ZwQuerySystemInformation or <see cref="M:JetBrains.Interop.WinApi.NtDllDll.NtQuerySystemInformation(System.UInt32,System.Void*,System.UInt32,System.UInt32*)"/>.
            produces in its output buffer when given the information class SystemHandleInformation (0x10).
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.SYSTEM_HANDLE_INFORMATION.NumberOfHandles">
            <summary>
            Number of handles contained in the <see cref="F:JetBrains.Interop.WinApi.Declarations.Structures.SYSTEM_HANDLE_INFORMATION.Handles"/> array.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.SYSTEM_HANDLE_INFORMATION.Handles">
            <summary>
            An array of SYSTEM_HANDLE's. Use <see cref="M:JetBrains.Interop.WinApi.Declarations.Structures.SYSTEM_HANDLE_INFORMATION.GetHandlesPtr(JetBrains.Interop.WinApi.Declarations.Structures.SYSTEM_HANDLE_INFORMATION*)"/> to obtain its address. 
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Structures.SYSTEM_HANDLE_TABLE_ENTRY_INFO">
            <summary>
            The structure is a recurring element in the <see cref="T:JetBrains.Interop.WinApi.Declarations.Structures.SYSTEM_HANDLE_INFORMATION"/> that a successful call to ZwQuerySystemInformation or NtQuerySystemInformation
            produces in its output buffer when given the information class SystemHandleInformation (0x10).
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Declarations.Structures.WINDOWPOS">
            <summary>
            The <c>WINDOWPOS</c> structure contains information about the size and position of a window. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.WINDOWPOS.hwnd">
            <summary>
            Handle to the window. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.WINDOWPOS.hwndInsertAfter">
            <summary>
            Specifies the position of the window in Z order (front-to-back position). This member can be a handle to the window behind which this window is placed, or can be one of the special values listed with the SetWindowPos function.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.WINDOWPOS.x">
            <summary>
            Specifies the position of the left edge of the window. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.WINDOWPOS.y">
            <summary>
            Specifies the position of the top edge of the window. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.WINDOWPOS.cx">
            <summary>
            Specifies the window width, in pixels. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.WINDOWPOS.cy">
            <summary>
            Specifies the window height, in pixels. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Declarations.Structures.WINDOWPOS.flags">
            <summary>
            Specifies the window position. This member can be one or more of the following values.  See <see cref="T:JetBrains.Interop.WinApi.SetWindowPosFlags"/> for details.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Constants.CorH">
            <summary>
            Constants from file <c>Cor.h</c>.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Constants.CorSym">
            <summary>
            Constants from file <c>CorSym.h</c> and <c>CorSym.idl</c>.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.CreationFlags.DETACHED_PROCESS">
             <summary>
             For console processes, the new process does not inherit its parent's console (the default). The new process can call the AllocConsole function at a later time to create a console. For more information, see Creation of a Console. 
            
            This value cannot be used with <see cref="F:JetBrains.Interop.WinApi.Constants.CreationFlags.CREATE_NEW_CONSOLE"/>.
             </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Constants.DebugContinueStatus">
            <summary>The options to continue the thread that reported the debugging event.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.DebugContinueStatus.DBG_CONTINUE">
            <summary>
            If the thread specified by the dwThreadId parameter previously reported an EXCEPTION_DEBUG_EVENT debugging
            event, the function stops all exception processing and continues the thread and the exception is marked as
            handled. For any other debugging event, this flag simply continues the thread.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.DebugContinueStatus.DBG_EXCEPTION_NOT_HANDLED">
            <summary>
            If the thread specified by dwThreadId previously reported an EXCEPTION_DEBUG_EVENT debugging event, the function
            continues exception processing. If this is a first-chance exception event, the search and dispatch logic of the
            structured exception handler is used; otherwise, the process is terminated. For any other debugging event, this
            flag simply continues the thread.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.DebugContinueStatus.DBG_REPLY_LATER">
            <summary>
            Supported in Windows 10, version 1507 or above, this flag causes dwThreadId to replay the existing breaking
            event after the target continues. By calling the SuspendThread API against dwThreadId, a debugger can resume
            other threads in the process and later return to the breaking.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Constants.DUPLICATE">
            <summary>
            Values for dwOptions parameter of <see cref="M:JetBrains.Interop.WinApi.Kernel32Dll.DuplicateHandle(System.Void*,System.Void*,System.Void*,System.Void**,System.UInt32,System.Int32,System.UInt32)"/>.
            </summary>
            <remarks>dwOptions parameter: optional actions. This parameter can be zero, or any combination of the following values.</remarks>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.DUPLICATE.DUPLICATE_CLOSE_SOURCE">
            <summary>
            Closes the source handle. This occurs regardless of any error status returned.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.DUPLICATE.DUPLICATE_SAME_ACCESS">
            <summary>
            Ignores the dwDesiredAccess parameter. The duplicate handle has the same access as the source.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Constants.EXTENDED_NAME_FORMAT">
            <summary>
             Examples for the following formats assume a fictitous company
             which hooks into the global X.500 and DNS name spaces as follows.
             Enterprise root domain in DNS is
                  widget.com
             Enterprise root domain in X.500 (RFC 1779 format) is
                  O=Widget, C=US
             There exists the child domain
                  engineering.widget.com
             equivalent to
                  OU=Engineering, O=Widget, C=US
             There exists a container within the Engineering domain
                  OU=Software, OU=Engineering, O=Widget, C=US
             There exists the user
                  CN=John Doe, OU=Software, OU=Engineering, O=Widget, C=US
             And this user's downlevel (pre-ADS) user name is
                  Engineering\JohnDoe
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.EXTENDED_NAME_FORMAT.NameUnknown">
            <summary>  unknown name type </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.EXTENDED_NAME_FORMAT.NameFullyQualifiedDN">
            <summary>  CN=John Doe, OU=Software, OU=Engineering, O=Widget, C=US </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.EXTENDED_NAME_FORMAT.NameSamCompatible">
            <summary>  Engineering\JohnDoe </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.EXTENDED_NAME_FORMAT.NameDisplay">
            <summary>  Probably "John Doe" but could be something else.  I.e. The </summary>
            <summary>  display name is not necessarily the defining RDN. </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.EXTENDED_NAME_FORMAT.NameUniqueId">
            <summary>  String-ized GUID as returned by IIDFromString(). </summary>
            <summary>  eg: {4fa050f0-f561-11cf-bdd9-00aa003a77b6} </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.EXTENDED_NAME_FORMAT.NameCanonical">
            <summary>  engineering.widget.com/software/John Doe </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.EXTENDED_NAME_FORMAT.NameUserPrincipal">
            <summary>  someone@example.com </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.EXTENDED_NAME_FORMAT.NameCanonicalEx">
            <summary>  Same as NameCanonical except that rightmost '/' is </summary>
            <summary>  replaced with '\n' - even in domain-only case. </summary>
            <summary>  eg: engineering.widget.com/software\nJohn Doe </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.EXTENDED_NAME_FORMAT.NameServicePrincipal">
            <summary>  www/srv.engineering.com/engineering.com </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.EXTENDED_NAME_FORMAT.NameDnsDomain">
            <summary>  DNS domain name + SAM username </summary>
            <summary>  eg: engineering.widget.com\JohnDoe </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.FileCreationDisposition.CREATE_ALWAYS">
            <summary>
             Creates a new file, always.
            If the specified file exists and is writable, the function overwrites the file, the function succeeds, and last-error code is set to ERROR_ALREADY_EXISTS (183).
            If the specified file does not exist and is a valid path, a new file is created, the function succeeds, and the last-error code is set to zero.
            For more information, see the Remarks section of this topic.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.FileCreationDisposition.CREATE_NEW">
            <summary>
             Creates a new file, only if it does not already exist.
            If the specified file exists, the function fails and the last-error code is set to ERROR_FILE_EXISTS (80).
            If the specified file does not exist and is a valid path to a writable location, a new file is created.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.FileCreationDisposition.OPEN_ALWAYS">
            <summary>
             Opens a file, always.
            If the specified file exists, the function succeeds and the last-error code is set to ERROR_ALREADY_EXISTS (183).
            If the specified file does not exist and is a valid path to a writable location, the function creates a file and the last-error code is set to zero.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.FileCreationDisposition.OPEN_EXISTING">
            <summary>
             Opens a file or device, only if it exists.
            If the specified file or device does not exist, the function fails and the last-error code is set to ERROR_FILE_NOT_FOUND (2).
            For more information about devices, see the Remarks section.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.FileCreationDisposition.TRUNCATE_EXISTING">
            <summary>
             Opens a file and truncates it so that its size is zero bytes, only if it exists.
            If the specified file does not exist, the function fails and the last-error code is set to ERROR_FILE_NOT_FOUND (2).
            The calling process must open the file with the GENERIC_WRITE bit set as part of the dwDesiredAccess parameter.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Constants.FileShareMode">
            <summary>
            Values for dwShareMode parameter of <see cref="M:JetBrains.Interop.WinApi.Kernel32Dll.CreateFileW(System.String,System.UInt32,System.UInt32,JetBrains.Interop.WinApi.SECURITY_ATTRIBUTES*,System.UInt32,System.UInt32,System.Void*)"/>.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.FileShareMode.FILE_SHARE_NONE">
            <summary>
            Prevents other processes from opening a file or device if they request delete, read, or write access.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.FileShareMode.FILE_SHARE_READ">
            <summary>
            Enables subsequent open operations on a file or device to request read access.
            If this flag is not specified, but the file or device has been opened for read access, the function fails.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.FileShareMode.FILE_SHARE_WRITE">
            <summary>
            Enables subsequent open operations on a file or device to request write access.
            If this flag is not specified, but the file or device has been opened for write access or has a file mapping with write access, the function fails.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.FileShareMode.FILE_SHARE_DELETE">
            <summary>
            Enables subsequent open operations on a file or device to request delete access.
            If this flag is not specified, but the file or device has been opened for delete access, the function fails.
            NOTE: Delete access allows both delete and rename operations.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Constants.FILE_INFO_BY_HANDLE_CLASS">
            <summary>
            Identifies the type of file information that GetFileInformationByHandleEx should retrieve or SetFileInformationByHandle <see cref="M:JetBrains.Interop.WinApi.Kernel32Dll.SetFileInformationByHandle(System.Void*,JetBrains.Interop.WinApi.Constants.FILE_INFO_BY_HANDLE_CLASS,System.Void*,System.UInt32)"/> should set.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.FILE_SKIP.FILE_SKIP_COMPLETION_PORT_ON_SUCCESS">
            <summary>
             If the following three conditions are true, the I/O Manager does not queue a completion entry to the port, when it would ordinarily do so. The conditions are:
            •A completion port is associated with the file handle.
            •The file is opened for asynchronous I/O.
            •A request returns success immediately without returning ERROR_PENDING.
            When the FileHandle parameter is a socket, this mode is only compatible with Layered Service Providers (LSP) that return Installable File Systems (IFS) handles. To detect whether a non-IFS LSP is installed, use the WSAEnumProtocols function and examine the dwServiceFlag1 member in each returned WSAPROTOCOL_INFO structure. If the XP1_IFS_HANDLES (0x20000) bit is cleared then the specified LSP is not an IFS LSP. Vendors that have non-IFS LSPs are encouraged to migrate to the Windows Filtering Platform (WFP).
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.FILE_SKIP.FILE_SKIP_SET_EVENT_ON_HANDLE">
            <summary>
             The I/O Manager does not set the event for the file object if a request returns with a success code, or the error returned is ERROR_PENDING and the function that is called is not a synchronous function.
            If an explicit event is provided for the request, it is still signaled.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Constants.FORMAT_MESSAGE">
            <summary>
            <see cref="M:JetBrains.Interop.WinApi.Kernel32Dll.FormatMessageW(System.UInt32,System.Void*,System.UInt32,System.UInt32,System.UInt16*,System.UInt32,System.Void*)" /> flags.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.FORMAT_MESSAGE.FORMAT_MESSAGE_ALLOCATE_BUFFER">
            <summary>
             The function allocates a buffer large enough to hold the formatted message, and places a pointer to the allocated buffer at the address specified by lpBuffer. The lpBuffer parameter is a pointer to an LPTSTR; you must cast the pointer to an LPTSTR (for example, (LPTSTR)&amp;lpBuffer). The nSize parameter specifies the minimum number of TCHARs to allocate for an output message buffer. The caller should use the LocalFree function to free the buffer when it is no longer needed.
            If the length of the formatted message exceeds 128K bytes, then FormatMessage will fail and a subsequent call to GetLastError will return ERROR_MORE_DATA.
            In previous versions of Windows, this value was not available for use when compiling Windows Store apps. As of Windows 10 this value can be used.
            Windows Server 2003 and Windows XP:
            If the length of the formatted message exceeds 128K bytes, then FormatMessage will not automatically fail with an error of ERROR_MORE_DATA.
            Windows 10:
            LocalFree is not in the modern SDK, so it cannot be used to free the result buffer. Instead, use HeapFree (GetProcessHeap(), allocatedMessage). In this case, this is the same as calling LocalFree on memory.
            Important:  LocalAlloc() has different options: LMEM_FIXED, and LMEM_MOVABLE. FormatMessage() uses LMEM_FIXED, so HeapFree can be used. If LMEM_MOVABLE is used, HeapFree cannot be used.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.FORMAT_MESSAGE.FORMAT_MESSAGE_ARGUMENT_ARRAY">
            <summary>
             The Arguments parameter is not a va_list structure, but is a pointer to an array of values that represent the arguments.
            This flag cannot be used with 64-bit integer values. If you are using a 64-bit integer, you must use the va_list structure.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.FORMAT_MESSAGE.FORMAT_MESSAGE_FROM_HMODULE">
            <summary>
             The lpSource parameter is a module handle containing the message-table resource(s) to search. If this lpSource handle is NULL, the current process's application image file will be searched. This flag cannot be used with FORMAT_MESSAGE_FROM_STRING.
            If the module has no message table resource, the function fails with ERROR_RESOURCE_TYPE_NOT_FOUND.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.FORMAT_MESSAGE.FORMAT_MESSAGE_FROM_STRING">
            <summary>
            The lpSource parameter is a pointer to a null-terminated string that contains a message definition. The message definition may contain insert sequences, just as the message text in a message table resource may. This flag cannot be used with FORMAT_MESSAGE_FROM_HMODULE or FORMAT_MESSAGE_FROM_SYSTEM.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.FORMAT_MESSAGE.FORMAT_MESSAGE_FROM_SYSTEM">
            <summary>
             The function should search the system message-table resource(s) for the requested message. If this flag is specified with FORMAT_MESSAGE_FROM_HMODULE, the function searches the system message table if the message is not found in the module specified by lpSource. This flag cannot be used with FORMAT_MESSAGE_FROM_STRING.
            If this flag is specified, an application can pass the result of the GetLastError function to retrieve the message text for a system-defined error.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.FORMAT_MESSAGE.FORMAT_MESSAGE_IGNORE_INSERTS">
            <summary>
            Insert sequences in the message definition are to be ignored and passed through to the output buffer unchanged. This flag is useful for fetching a message for later formatting. If this flag is set, the Arguments parameter is ignored.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.FORMAT_MESSAGE.FORMAT_MESSAGE_MAX_WIDTH_MASK">
            <summary>
            The function ignores regular line breaks in the message definition text. The function stores hard-coded line breaks in the message definition text into the output buffer. The function generates no new line breaks.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Constants.FrameControlState">
            <summary>
            Values for <see cref="M:JetBrains.Interop.WinApi.User32Dll.DrawFrameControl(System.Void*,JetBrains.Interop.WinApi.RECT*,System.UInt32,System.UInt32)" />.
            Incomplete.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.FrameControlState.DFCS_BUTTONPUSH">
            <summary>
            Push button
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Constants.FrameControlType">
            <summary>
            Values for <see cref="M:JetBrains.Interop.WinApi.User32Dll.DrawFrameControl(System.Void*,JetBrains.Interop.WinApi.RECT*,System.UInt32,System.UInt32)" />.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.FrameControlType.DFC_BUTTON">
            <summary>
            Standard button
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.FrameControlType.DFC_CAPTION">
            <summary>
            Title bar
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.FrameControlType.DFC_MENU">
            <summary>
            Menu bar
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.FrameControlType.DFC_POPUPMENU">
            <summary>
            Windows 98/Me, Windows 2000/XP: Popup menu item.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.FrameControlType.DFC_SCROLL">
            <summary>
            Scroll bar
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Constants.GetFinalPathNameByHandleFlags">
            <summary>
            used in dwFlags argument of <code>Kernel32Dll.GetFinalPathNameByHandle</code>
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Constants.HookType">
            <summary>
            Windows hook types for <see cref="M:JetBrains.Interop.WinApi.User32Dll.SetWindowsHookExW(System.Int32,JetBrains.Interop.WinApi.Functions.HOOKPROC,System.Void*,System.UInt32)"/>.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Constants.ImagehlpH">
            <summary>
            Constants for <see cref="T:JetBrains.Interop.WinApi.ImagehlpDll" /> functions.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.ImagehlpH.CERT_SECTION_TYPE_ANY">
            <summary>
            Any Certificate type
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Constants.IoControlCodes">
            <summary>
            The following is a list of the native file system fsctls followed by additional network file system fsctls.  Some values have been decommissioned.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Constants.IoControlCodes.CTL_CODE(System.UInt32,System.UInt32,System.UInt32,System.UInt32)">
            <summary>
            Macro definition for defining IOCTL and FSCTL function control codes.  Note
            that function codes 0-2047 are reserved for Microsoft Corporation, and
            2048-4095 are reserved for customers.
            </summary>
            <param name="DeviceType"></param>
            <param name="Function"></param>
            <param name="Method"></param>
            <param name="Access"></param>
            <returns></returns>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Constants.ListViewItemMask">
            <summary>
            Set of flags that specify which members of LVITEM structure contain data to be set or which members are being requested
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.Locale.LOCALE_INVARIANT">
            <summary>
            Windows XP: The locale used for operating system-level functions that require consistent and locale-independent results. For example, the invariant locale is used when an application compares character strings using the CompareString function and expects a consistent result regardless of the user locale. The settings of the invariant locale are similar to those for English (United States) but should not be used to display formatted data. Typically, an application does not use LOCALE_INVARIANT because it expects the results of an action to depend on the rules governing each individual locale. The value of LOCALE_INVARIANT IS 0x007f.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.Locale.LOCALE_NAME_INVARIANT">
            <summary>
            Name of an invariant locale that provides stable locale and calendar data.
            </summary>
            <since>Windows NT 6.0</since>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.Locale.LOCALE_NAME_MAX_LENGTH">
            <summary>
            8 characters for language <br />
            8 characters for region <br />
            64 characters for suffix (script) <br />
            2 characters for '-' separators <br />
            2 characters for prefix like "i-" or "x-" <br />
            1 null termination
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.Locale.LOCALE_NAME_SYSTEM_DEFAULT">
            <summary>
            Name of the current operating system locale.
            </summary>
            <since>Windows NT 6.0</since>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.Locale.LOCALE_NAME_USER_DEFAULT">
            <summary>
            Name of the current user locale, matching the preference set in the regional and language options portion of Control Panel. This locale can be different from the locale for the current user interface language.
            </summary>
            <since>Windows NT 6.0</since>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.LocaleDependentMappingFlags.LCMAP_TITLECASE">
            <since>win7</since>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.LocaleDependentMappingFlags.LCMAP_HASH">
            <since>6.2</since>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Constants.MemoryMappingAttributes">
            <summary>
            <see cref="M:JetBrains.Interop.WinApi.Kernel32Dll.CreateFileMappingW(System.Void*,JetBrains.Interop.WinApi.SECURITY_ATTRIBUTES*,System.UInt32,System.UInt32,System.UInt32,System.String)" />'s <c>flProtect</c> attribute values.
            An application can specify one or more of the following attributes for the file mapping object by combining them with one of the preceding page protection values.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.MemoryMappingAttributes.SEC_FILE">
            <summary>
            (no info in MSDN on this)
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.MemoryMappingAttributes.SEC_IMAGE">
            <summary>
            Specifies that the file that the hFile parameter specifies is an executable image file.
            The SEC_IMAGE attribute must be combined with a page protection value such as PAGE_READONLY. However, this page protection value has no effect on views of the executable image file. Page protection for views of an executable image file is determined by the executable file itself.
            No other attributes are valid with SEC_IMAGE.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.MemoryMappingAttributes.SEC_PROTECTED_IMAGE">
            <summary>
            (no info in MSDN on this)
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.MemoryMappingAttributes.SEC_RESERVE">
            <summary>
            If the file mapping object is backed by the operating system paging file (the hfile parameter is INVALID_HANDLE_VALUE), specifies that when a view of the file is mapped into a process address space, the entire range of pages is reserved for later use by the process rather than committed.
            Reserved pages can be committed in subsequent calls to the VirtualAlloc function. After the pages are committed, they cannot be freed or decommitted with the VirtualFree function.
            This attribute has no effect for file mapping objects that are backed by executable image files or data files (the hfile parameter is a handle to a file).
            SEC_RESERVE cannot be combined with SEC_COMMIT.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.MemoryMappingAttributes.SEC_COMMIT">
            <summary>
            If the file mapping object is backed by the operating system paging file (the hfile parameter is INVALID_HANDLE_VALUE), specifies that when a view of the file is mapped into a process address space, the entire range of pages is committed rather than reserved. The system must have enough committable pages to hold the entire mapping. Otherwise, CreateFileMapping fails.
            This attribute has no effect for file mapping objects that are backed by executable image files or data files (the hfile parameter is a handle to a file).
            SEC_COMMIT cannot be combined with SEC_RESERVE.
            If no attribute is specified, SEC_COMMIT is assumed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.MemoryMappingAttributes.SEC_NOCACHE">
            <summary>
            Sets all pages to be non-cachable.
            Applications should not use this attribute except when explicitly required for a device. Using the interlocked functions with memory that is mapped with SEC_NOCACHE can result in an EXCEPTION_ILLEGAL_INSTRUCTION exception.
            SEC_NOCACHE requires either the SEC_RESERVE or SEC_COMMIT attribute to be set.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.MemoryMappingAttributes.SEC_WRITECOMBINE">
            <summary>
            Sets all pages to be write-combined.
            Applications should not use this attribute except when explicitly required for a device. Using the interlocked functions with memory that is mapped with SEC_WRITECOMBINE can result in an EXCEPTION_ILLEGAL_INSTRUCTION exception.
            SEC_WRITECOMBINE requires either the SEC_RESERVE or SEC_COMMIT attribute to be set.
            Windows Server 2003 and Windows XP:  This flag is not supported until Windows Vista.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.MemoryMappingAttributes.SEC_LARGE_PAGES">
            <summary>
            Enables large pages to be used for file mapping objects that are backed by the operating system paging file (the hfile parameter is INVALID_HANDLE_VALUE). This attribute is not supported for file mapping objects that are backed by executable image files or data files (the hFile parameter is a handle to an executable image or data file).
            The maximum size of the file mapping object must be a multiple of the minimum size of a large page returned by the GetLargePageMinimum function. If it is not, CreateFileMapping fails. When mapping a view of a file mapping object created with SEC_LARGE_PAGES, the base address and view size must also be multiples of the minimum large page size.
            SEC_LARGE_PAGES requires the SeLockMemoryPrivilege privilege to be enabled in the caller's token.
            If SEC_LARGE_PAGES is specified, SEC_COMMIT must also be specified.
            Windows Server 2003:  This value is not supported until Windows Server 2003 with SP1.
            Windows XP:  This value is not supported.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.MemoryMappingAttributes.SEC_IMAGE_NO_EXECUTE">
            <summary>
            Specifies that the file that the hFile parameter specifies is an executable image file that will not be executed and the loaded image file will have no forced integrity checks run. Additionally, mapping a view of a file mapping object created with the SEC_IMAGE_NO_EXECUTE attribute will not invoke driver callbacks registered using the PsSetLoadImageNotifyRoutine kernel API.
            The SEC_IMAGE_NO_EXECUTE attribute must be combined with the PAGE_READONLY page protection value. No other attributes are valid with SEC_IMAGE_NO_EXECUTE.
            Windows Server 2008 R2, Windows 7, Windows Server 2008, Windows Vista, Windows Server 2003, and Windows XP:  This value is not supported before Windows Server 2012 and Windows 8.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Constants.MetaHostH">
            <summary>
            Constants from file <c>metahost.h</c>.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Constants.MONITOR_DEFAULTTO">
            <summary>
            Flags for <see cref="M:JetBrains.Interop.WinApi.User32Dll.MonitorFromPoint(JetBrains.Interop.WinApi.POINT,System.UInt32)" />/
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.MONITOR_DEFAULTTO.MONITOR_DEFAULTTONEAREST">
            <summary>
            Returns a handle to the display monitor that is nearest to the point.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.MONITOR_DEFAULTTO.MONITOR_DEFAULTTONULL">
            <summary>
            Returns NULL.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.MONITOR_DEFAULTTO.MONITOR_DEFAULTTOPRIMARY">
            <summary>
            Returns a handle to the primary display monitor.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Constants.MONITOR_DPI_TYPE">
            <summary>
            Identifies the dots per inch (dpi) setting for a monitor.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.MONITOR_DPI_TYPE.MDT_EFFECTIVE_DPI">
            <summary>
            The effective DPI. This value should be used when determining the correct scale factor for scaling UI elements. This incorporates the scale factor set by the user for this specific display.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.MONITOR_DPI_TYPE.MDT_ANGULAR_DPI">
            <summary>
            The angular DPI. This DPI ensures rendering at a compliant angular resolution on the screen. This does not include the scale factor set by the user for this specific display.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.MONITOR_DPI_TYPE.MDT_RAW_DPI">
            <summary>
            The raw DPI. This value is the linear DPI of the screen as measured on the screen itself. Use this value when you want to read the pixel density and not the recommended scaling setting. This does not include the scale factor set by the user for this specific display and is not guaranteed to be a supported DPI value.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.PIPE_ACCESS.PIPE_ACCESS_DUPLEX">
            <summary>
            The pipe is bi-directional; both server and client processes can read from and write to the pipe. This mode gives the server the equivalent of GENERIC_READ and GENERIC_WRITE access to the pipe. The client can specify GENERIC_READ or GENERIC_WRITE, or both, when it connects to the pipe using the CreateFile function.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.PIPE_ACCESS.PIPE_ACCESS_INBOUND">
            <summary>
            The flow of data in the pipe goes from client to server only. This mode gives the server the equivalent of GENERIC_READ access to the pipe. The client must specify GENERIC_WRITE access when connecting to the pipe. If the client must read pipe settings by calling the GetNamedPipeInfo or GetNamedPipeHandleState functions, the client must specify GENERIC_WRITE and FILE_READ_ATTRIBUTES access when connecting to the pipe.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.PIPE_ACCESS.PIPE_ACCESS_OUTBOUND">
            <summary>
            The flow of data in the pipe goes from server to client only. This mode gives the server the equivalent of GENERIC_WRITE access to the pipe. The client must specify GENERIC_READ access when connecting to the pipe. If the client must change pipe settings by calling the SetNamedPipeHandleState function, the client must specify GENERIC_READ and FILE_WRITE_ATTRIBUTES access when connecting to the pipe.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.PIPE_READMODE.PIPE_READMODE_BYTE">
            <summary>
            Data is read from the pipe as a stream of bytes. This mode is the default if no read-mode flag is specified.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.PIPE_READMODE.PIPE_READMODE_MESSAGE">
            <summary>
            Data is read from the pipe as a stream of messages. The function fails if this flag is specified
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.PIPE_TYPE.PIPE_TYPE_BYTE">
            <summary>
            Data is written to the pipe as a stream of bytes. This mode cannot be used with PIPE_READMODE_MESSAGE. The pipe does not distinguish bytes written during different write operations.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.PIPE_TYPE.PIPE_TYPE_MESSAGE">
            <summary>
            Data is written to the pipe as a stream of messages. The pipe treats the bytes written during each write operation as a message unit. The GetLastError function returns ERROR_MORE_DATA when a message is not read completely. This mode can be used with either PIPE_READMODE_MESSAGE or PIPE_READMODE_BYTE.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Constants.PROCESS_DPI_AWARENESS">
            <summary>
              <para>Identifies dots per inch (dpi) awareness values. DPI awareness indicates how much scaling work an application performs for DPI versus how much is done by the system.</para>
              <para>Users have the ability to set the DPI scale factor on their displays independent of each other. Some legacy applications are not able to adjust their scaling for multiple DPI settings. In order for users to use these applications without content appearing too large or small on displays, Windows can apply DPI virtualization to an application, causing it to be automatically be scaled by the system to match the DPI of the current display. The PROCESS_DPI_AWARENESS value indicates what level of scaling your application handles on its own and how much is provided by Windows. Keep in mind that applications scaled by the system may appear blurry and will read virtualized data about the monitor to maintain compatibility.</para>
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.PROCESS_DPI_AWARENESS.PROCESS_DPI_UNAWARE">
            <summary>
            DPI unaware. This app does not scale for DPI changes and is always assumed to have a scale factor of 100% (96 DPI). It will be automatically scaled by the system on any other DPI setting.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.PROCESS_DPI_AWARENESS.PROCESS_SYSTEM_DPI_AWARE">
            <summary>
            System DPI aware. This app does not scale for DPI changes. It will query for the DPI once and use that value for the lifetime of the app. If the DPI changes, the app will not adjust to the new DPI value. It will be automatically scaled up or down by the system when the DPI changes from the system value.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.PROCESS_DPI_AWARENESS.PROCESS_PER_MONITOR_DPI_AWARE">
            <summary>
            Per monitor DPI aware. This app checks for the DPI when it is created and adjusts the scale factor whenever the DPI changes. These applications are not automatically scaled by the system.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Constants.RegionResult">
            <summary>
            The return value specifies the new clipping region's complexity; it can be one of the following values.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.RegionResult.ERROR">
            <summary>
            An error occurred.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.RegionResult.NULLREGION">
            <summary>
            Region is empty.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.RegionResult.SIMPLEREGION">
            <summary>
            Region is a single rectangle.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.RegionResult.COMPLEXREGION">
            <summary>
            Region is more than one rectangle.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.RegionResult.RGN_ERROR">
            <summary>
            An error occurred.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Constants.RegisterWaitForSingleObjectFlags">
            <summary>
            Flags off the <see cref="M:JetBrains.Interop.WinApi.Kernel32Dll.RegisterWaitForSingleObject(System.Void**,System.Void*,System.Void*,System.Void*,System.UInt32,System.UInt32)" /> function.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.RegisterWaitForSingleObjectFlags.WT_EXECUTEDEFAULT">
            <summary>
            By default, the callback function is queued to a non-I/O worker thread.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.RegisterWaitForSingleObjectFlags.WT_EXECUTEINIOTHREAD">
            <summary>
             This flag is not used.
            Windows Server 2003 and Windows XP:  The callback function is queued to an I/O worker thread. This flag should be used if the function should be executed in a thread that waits in an alertable state. I/O worker threads were removed starting with Windows Vista and Windows Server 2008.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.RegisterWaitForSingleObjectFlags.WT_EXECUTEINPERSISTENTTHREAD">
            <summary>
             The callback function is queued to a thread that never terminates. It does not guarantee that the same thread is used each time. This flag should be used only for short tasks or it could affect other wait operations. This flag must be set if the thread calls functions that use APCs. For more information, see Asynchronous Procedure Calls.
            Note that currently no worker thread is truly persistent, although no worker thread will terminate if there are any pending I/O requests.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.RegisterWaitForSingleObjectFlags.WT_EXECUTEINWAITTHREAD">
            <summary>
             The callback function is invoked by the wait thread itself. This flag should be used only for short tasks or it could affect other wait operations.
            Deadlocks can occur if some other thread acquires an exclusive lock and calls the UnregisterWait or UnregisterWaitEx function while the callback function is trying to acquire the same lock.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.RegisterWaitForSingleObjectFlags.WT_EXECUTEONLYONCE">
            <summary>
            The thread will no longer wait on the handle after the callback function has been called once. Otherwise, the timer is reset every time the wait operation completes until the wait operation is canceled.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.RegisterWaitForSingleObjectFlags.WT_TRANSFER_IMPERSONATION">
            <summary>
             Callback functions will use the current access token, whether it is a process or impersonation token. If this flag is not specified, callback functions execute only with the process token.
            Windows XP:  This flag is not supported until Windows XP with SP2 and Windows Server 2003.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Constants.RegLoadAppKeyFlags">
            <summary>
            Flags for <see cref="M:JetBrains.Interop.WinApi.Advapi32Dll.RegLoadAppKeyW(System.String,System.Void**,System.UInt32,System.UInt32,System.UInt32)" />.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.RegLoadAppKeyFlags.REG_PROCESS_APPKEY">
            <summary>
            If this parameter is <see cref="F:JetBrains.Interop.WinApi.Constants.RegLoadAppKeyFlags.REG_PROCESS_APPKEY" />, the hive cannot be loaded again while it is loaded by the caller. This prevents access to this registry hive by another caller.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Constants.ReparsePointConstants">
            <summary>
             The reparse tags are a DWORD. The 32 bits are laid out as follows:
            <code>   3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
               1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
              +-+-+-+-+-----------------------+-------------------------------+
              |M|R|N|R|     Reserved bits     |       Reparse Tag Value       |
              +-+-+-+-+-----------------------+-------------------------------+
            </code>
            M is the Microsoft bit. When set to 1, it denotes a tag owned by Microsoft.
               All ISVs must use a tag with a 0 in this position.
               Note: If a Microsoft tag is used by non-Microsoft software, the
               behavior is not defined.
             R is reserved.  Must be zero for non-Microsoft tags.
             N is name surrogate. When set to 1, the file represents another named
               entity in the system.
             The M and N bits are OR-able.
             The following macros check for the M and N bit values:
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Constants.ReparsePointConstants.IsReparseTagMicrosoft(System.UInt32)">
            <summary>
            Macro to determine whether a reparse point tag corresponds to a tag owned by Microsoft.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Constants.ReparsePointConstants.IsReparseTagNameSurrogate(System.UInt32)">
            <summary>
            Macro to determine whether a reparse point tag is a name surrogate
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.ReparsePointConstants.IO_REPARSE_TAG_LX_SYMLINK">
            <summary>
            Used by the Windows Subsystem for Linux (WSL) to represent a UNIX symbolic link. Server-side interpretation only, not meaningful over the wire.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.ReparsePointConstants.MAXIMUM_REPARSE_DATA_BUFFER_SIZE">
            <summary>
            Maximum allowed size of the reparse data.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.RestartManagerConstants.CCH_RM_MAX_APP_NAME">
            <summary>
            CCH_RM_MAX_APP_NAME - maximum character count of application friendly name.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.RestartManagerConstants.CCH_RM_MAX_SVC_NAME">
            <summary>
            CCH_RM_MAX_SVC_NAME - maximum character count of service short name.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.RestartManagerConstants.RM_SESSION_KEY_LEN">
            <summary>
            RM_SESSION_KEY_LEN - size in bytes of binary session key.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.RestartManagerConstants.CCH_RM_SESSION_KEY">
            <summary>
            CCH_RM_SESSION_KEY - character count of text-encoded session key.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.RestartManagerConstants.RM_INVALID_PROCESS">
            <summary>
            Uninitialized value for Process ID.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.RestartManagerConstants.RM_INVALID_TS_SESSION">
            <summary>
            Uninitialized value for TS Session ID.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Constants.RM_APP_STATUS">
            <summary>
            Describes the current status of an application that is acted upon by the Restart Manager.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.RM_APP_STATUS.RmStatusUnknown">
            <summary>
            Application in unknown state or state not important.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.RM_APP_STATUS.RmStatusRunning">
            <summary>
            Application is currently running.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.RM_APP_STATUS.RmStatusStopped">
            <summary>
            Application stopped by Restart Manager.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.RM_APP_STATUS.RmStatusStoppedOther">
            <summary>
            Application detected stopped by outside action.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.RM_APP_STATUS.RmStatusRestarted">
            <summary>
            Application restarted by Restart Manager.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.RM_APP_STATUS.RmStatusErrorOnStop">
            <summary>
            An error occurred when stopping this application.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.RM_APP_STATUS.RmStatusErrorOnRestart">
            <summary>
            An error occurred when restarting this application.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.RM_APP_STATUS.RmStatusShutdownMasked">
            <summary>
            Shutdown action masked by filer.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.RM_APP_STATUS.RmStatusRestartMasked">
            <summary>
            Restart action masked by filter.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Constants.RM_APP_TYPE">
            <summary>
            Specifies the type of application that is described by the <see cref="T:JetBrains.Interop.WinApi.RM_PROCESS_INFO" /> structure.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.RM_APP_TYPE.RmUnknownApp">
            <summary>
            The application cannot be classified as any other type. An application of this type can only be shut down by a forced shutdown.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.RM_APP_TYPE.RmMainWindow">
            <summary>
            A Windows application run as a stand-alone process that displays a top-level window.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.RM_APP_TYPE.RmOtherWindow">
            <summary>
            A Windows application that does not run as a stand-alone process and does not display a top-level window.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.RM_APP_TYPE.RmService">
            <summary>
            The application is a Windows service.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.RM_APP_TYPE.RmExplorer">
            <summary>
            The application is Windows Explorer.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.RM_APP_TYPE.RmConsole">
            <summary>
            The application is a stand-alone console application.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.RM_APP_TYPE.RmCritical">
            <summary>
            A system restart is required to complete the installation because a process cannot be shut down. The process cannot be shut down because of the following reasons. The process may be a critical process. The current user may not have permission to shut down the process. The process may belong to the primary installer that started the Restart Manager.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Constants.RM_REBOOT_REASON">
            <summary>
            Describes the reasons a restart of the system is needed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.RM_REBOOT_REASON.RmRebootReasonNone">
            <summary>
            Reboot not required.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.RM_REBOOT_REASON.RmRebootReasonPermissionDenied">
            <summary>
            Current user does not have permission to shut down one or more detected processes.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.RM_REBOOT_REASON.RmRebootReasonSessionMismatch">
            <summary>
            One or more processes are running in another TS session.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.RM_REBOOT_REASON.RmRebootReasonCriticalProcess">
            <summary>
            A critical process has been detected.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.RM_REBOOT_REASON.RmRebootReasonCriticalService">
            <summary>
            A critical service has been detected.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.RM_REBOOT_REASON.RmRebootReasonDetectedSelf">
            <summary>
            The current process has been detected.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.SetHandleInformationFlags.HANDLE_FLAG_INHERIT">
            <summary>
            If this flag is set, a child process created with the bInheritHandles parameter of CreateProcess set to TRUE will inherit the object handle.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.SetHandleInformationFlags.HANDLE_FLAG_PROTECT_FROM_CLOSE">
            <summary>
            If this flag is set, calling the CloseHandle function will not close the object handle.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.SPI.FE_FONTSMOOTHINGSTANDARD">
            <summary>
            constants for SPI_GETFONTSMOOTHINGTYPE and SPI_SETFONTSMOOTHINGTYPE:
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.SPI.FE_FONTSMOOTHINGCLEARTYPE">
            <summary>
            constants for SPI_GETFONTSMOOTHINGTYPE and SPI_SETFONTSMOOTHINGTYPE:
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.StringCompareFlags.SORT_DIGITSASNUMBERS">
            <since>Windows NT 6.1</since>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.TernaryRasterOperations.SRCCOPY">
            <summary>dest = source</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.TernaryRasterOperations.SRCPAINT">
            <summary>dest = source OR dest</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.TernaryRasterOperations.SRCAND">
            <summary>dest = source AND dest</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.TernaryRasterOperations.SRCINVERT">
            <summary>dest = source XOR dest</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.TernaryRasterOperations.SRCERASE">
            <summary>dest = source AND (NOT dest)</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.TernaryRasterOperations.NOTSRCCOPY">
            <summary>dest = (NOT source)</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.TernaryRasterOperations.NOTSRCERASE">
            <summary>dest = (NOT src) AND (NOT dest)</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.TernaryRasterOperations.MERGECOPY">
            <summary>dest = (source AND pattern)</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.TernaryRasterOperations.MERGEPAINT">
            <summary>dest = (NOT source) OR dest</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.TernaryRasterOperations.PATCOPY">
            <summary>dest = pattern</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.TernaryRasterOperations.PATPAINT">
            <summary>dest = DPSnoo</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.TernaryRasterOperations.PATINVERT">
            <summary>dest = pattern XOR dest</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.TernaryRasterOperations.DSTINVERT">
            <summary>dest = (NOT dest)</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.TernaryRasterOperations.BLACKNESS">
            <summary>dest = BLACK</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.TernaryRasterOperations.WHITENESS">
            <summary>dest = WHITE</summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Constants.ThreadAccessRights">
            <summary>Thread Security and Access Rights.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.ThreadAccessRights.THREAD_DIRECT_IMPERSONATION">
            <summary>Required for a server thread that impersonates a client.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.ThreadAccessRights.THREAD_GET_CONTEXT">
            <summary>Required to read the context of a thread using GetThreadContext.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.ThreadAccessRights.THREAD_IMPERSONATE">
            <summary>Required to use a thread's security information directly without calling it by using a communication mechanism that provides impersonation services.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.ThreadAccessRights.THREAD_QUERY_INFORMATION">
            <summary>Required to read certain information from the thread object, such as the exit code (see GetExitCodeThread).</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.ThreadAccessRights.THREAD_QUERY_LIMITED_INFORMATION">
            <summary>	Required to read certain information from the thread objects (see GetProcessIdOfThread). A handle that has the THREAD_QUERY_INFORMATION access right is automatically granted THREAD_QUERY_LIMITED_INFORMATION.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.ThreadAccessRights.THREAD_SET_CONTEXT">
            <summary>Required to write the context of a thread using SetThreadContext.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.ThreadAccessRights.THREAD_SET_INFORMATION">
            <summary>Required to set certain information in the thread object.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.ThreadAccessRights.THREAD_SET_LIMITED_INFORMATION">
            <summary>Required to set certain information in the thread object. A handle that has the THREAD_SET_INFORMATION access right is automatically granted THREAD_SET_LIMITED_INFORMATION.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.ThreadAccessRights.THREAD_SET_THREAD_TOKEN">
            <summary>Required to set the impersonation token for a thread using SetThreadToken.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.ThreadAccessRights.THREAD_SUSPEND_RESUME">
            <summary>Required to suspend or resume a thread (see SuspendThread and ResumeThread).</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.ThreadAccessRights.THREAD_TERMINATE">
            <summary>Required to terminate a thread using TerminateThread.</summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Constants.WinTrustDataConstants">
            <summary>
            Constants around the <see cref="T:JetBrains.Interop.WinApi.WINTRUST_DATA" /> and its uses.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.WinTrustDataConstants.WINTRUST_ACTION_GENERIC_VERIFY_V2">
            <summary>
             WINTRUST_ACTION_GENERIC_VERIFY_V2 Guid  (Authenticode)
            ----------------------------------------------------------------------------
              Assigned to the pgActionID parameter of WinVerifyTrust to verify the
              authenticity of a file/object using the Microsoft Authenticode
              Policy Provider,
                      {00AAC56B-CD44-11d0-8CC2-00C04FC295EE}
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Constants.WmSizeFlags">
            <summary>
            Flags that go along with the WM_SIZE message in its wParam.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.WmSizeFlags.SIZE_RESTORED">
            <summary>
            The window has been resized, but neither the <see cref="F:JetBrains.Interop.WinApi.Constants.WmSizeFlags.SIZE_MINIMIZED" /> nor <see cref="F:JetBrains.Interop.WinApi.Constants.WmSizeFlags.SIZE_MAXIMIZED" /> value applies.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.WmSizeFlags.SIZE_MINIMIZED">
            <summary>
            The window has been minimized.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.WmSizeFlags.SIZE_MAXIMIZED">
            <summary>
            The window has been maximized.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.WmSizeFlags.SIZE_MAXSHOW">
            <summary>
            Message is sent to all pop-up windows when some other window has been restored to its former size.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Constants.WmSizeFlags.SIZE_MAXHIDE">
            <summary>
            Message is sent to all pop-up windows when some other window is maximized.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.CombineRgnStyles">
            <summary>
            Specifies the operation to be performed over the regions.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.CombineRgnStyles.RGN_AND">
            <summary>
            The new clipping region combines the overlapping areas of the current clipping region and the region identified by hrgn. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.CombineRgnStyles.RGN_OR">
            <summary>
            The new clipping region is a copy of the region identified by hrgn. This is identical to SelectClipRgn. If the region identified by hrgn is NULL, the new clipping region is the default clipping region (the default clipping region is a null region). 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.CombineRgnStyles.RGN_XOR">
            <summary>
            The new clipping region combines the areas of the current clipping region with those areas excluded from the region identified by hrgn. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.CombineRgnStyles.RGN_DIFF">
            <summary>
            The new clipping region combines the current clipping region and the region identified by hrgn. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.CombineRgnStyles.RGN_COPY">
            <summary>
            The new clipping region combines the current clipping region and the region identified by hrgn but excludes any overlapping areas. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.CombineRgnStyles.RGN_MIN">
            <summary>
            Same as <see cref="F:JetBrains.Interop.WinApi.CombineRgnStyles.RGN_AND"/>.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.CombineRgnStyles.RGN_MAX">
            <summary>
            Same as <see cref="F:JetBrains.Interop.WinApi.CombineRgnStyles.RGN_COPY"/>.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.CorSymSearchPolicyAttributes">
            <summary>
            Specifies the policy to be used when doing a search for a symbol reader.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.CorSymSearchPolicyAttributes.AllowRegistryAccess">
            <summary>
            Queries the registry for symbol search paths.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.CorSymSearchPolicyAttributes.AllowSymbolServerAccess">
            <summary>
            Accesses a symbol server.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.CorSymSearchPolicyAttributes.AllowOriginalPathAccess">
            <summary>
            Searches the path specified in the Debug directory.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.CorSymSearchPolicyAttributes.AllowReferencePathAccess">
            <summary>
            Searches for the PDB in the place where the .exe file is.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.DialogBoxCommandId">
            <summary>
            Standard command IDs for the dialog boxes.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.DialogCodes">
            <summary>
            Dialog Codes.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.EditBoxControlMargins">
            <summary>
            <see cref="F:JetBrains.Interop.WinApi.WindowsMessages.EM_SETMARGINS"/> constants.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.EditBoxControlMargins.EC_LEFTMARGIN">
            <summary>
            Sets the left margin.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.EditBoxControlMargins.EC_RIGHTMARGIN">
            <summary>
            Sets the right margin.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.EditBoxControlMargins.EC_USEFONTINFO">
            <summary>
            Rich edit controls: Sets the left and right margins to a narrow width calculated using the text metrics of the control's current font. If no font has been set for the control, the margins are set to zero. The lParam parameter is ignored. Edit controls: The EC_USEFONTINFO value cannot be used in the wParam parameter. It can only be used in the lParam parameter. 
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.GetAncestorFlags">
            <summary>
            Flags for the <see cref="M:JetBrains.Interop.WinApi.User32Dll.GetAncestor(System.Void*,System.UInt32)"/> function.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.GetAncestorFlags.GA_PARENT">
            <summary>
            Retrieves the parent window. This does not include the owner, as it does with the GetParent function. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.GetAncestorFlags.GA_ROOT">
            <summary>
            Retrieves the root window by walking the chain of parent windows.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.GetAncestorFlags.GA_ROOTOWNER">
            <summary>
            Retrieves the owned root window by walking the chain of parent and owner windows returned by GetParent.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.HResults">
             <summary>
             Well-known HRESULT codes from <c>WinError.h</c>, <c>CorError.h</c>, <c>HRESULT_FROM_WIN32</c> and all other possible sources.
             </summary>
             <remarks>
             <para>For typical <c>HRESULT</c> operations like checking for success, check extension methods and <see cref="T:JetBrains.Interop.WinApi.HResultHelpers"/> class.</para>
             <para>To get a string for an <c>HRESULT</c> error code, look into <see cref="M:JetBrains.Interop.WinApi.HResultHelpers.GetFullMessageForHr(JetBrains.Interop.WinApi.HResults)"/>. For just enum names, <see cref="M:JetBrains.Interop.WinApi.HResultHelpers.GetNamesForHResult(JetBrains.Interop.WinApi.HResults)"/>. In case your value might be a system error code, see <c>ErrorLevelException</c> in the utility projects.</para>
             <code>
             ////////////////////////////////////
             //                                //
             //     COM Error Codes            //
             //                                //
             ////////////////////////////////////
            
             The return value of COM functions and methods is an HRESULT.
             This is not a handle to anything, but is merely a 32-bit value
             with several fields encoded in the value.  The parts of an
             HRESULT are shown below.
            
             Many of the macros and functions below were orginally defined to
             operate on SCODEs.  SCODEs are no longer used.  The macros are
             still present for compatibility and easy porting of Win16 code.
             Newly written code should use the HRESULT macros and functions.
            
            
              HRESULTs are 32 bit values layed out as follows:
            
               3 3 2 2 2 2 2 2 2 2 2 2 1 1 1 1 1 1 1 1 1 1
               1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0 9 8 7 6 5 4 3 2 1 0
              +-+-+-+-+-+---------------------+-------------------------------+
              |S|R|C|N|r|    Facility         |               Code            |
              +-+-+-+-+-+---------------------+-------------------------------+
            
              where
            
                  S - Severity - indicates success/fail
            
                      0 - Success
                      1 - Fail (COERROR)
            
                  R - reserved portion of the facility code, corresponds to NT's
                          second severity bit.
            
                  C - reserved portion of the facility code, corresponds to NT's
                          C field.
            
                  N - reserved portion of the facility code. Used to indicate a
                          mapped NT status value.
            
                  r - reserved portion of the facility code. Reserved for internal
                          use. Used to indicate HRESULT values that are not status
                          values, but are instead message ids for display strings.
            
                  Facility - is the facility code
            
                  Code - is the facility's status code
             </code>
             </remarks>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.S_OK">
            <summary>
            Success codes.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.S_FALSE">
            <summary>
            Success codes.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.E_UNEXPECTED">
            <summary>
             Catastrophic failure
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.E_NOTIMPL">
            <summary>
             Not implemented
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.E_OUTOFMEMORY">
            <summary>
             Ran out of memory
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.E_INVALIDARG">
            <summary>
             One or more arguments are invalid
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.E_NOINTERFACE">
            <summary>
             No such interface supported
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.E_POINTER">
            <summary>
             Invalid pointer
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.E_HANDLE">
            <summary>
             Invalid handle
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.E_ABORT">
            <summary>
             Operation aborted
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.E_FAIL">
            <summary>
             Unspecified error
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.E_ACCESSDENIED">
            <summary>
             General access denied error
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.E_PENDING">
            <summary>
             The data necessary to complete this operation is not yet available.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_INIT_TLS">
            <summary>
             Thread local storage failure
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_INIT_SHARED_ALLOCATOR">
            <summary>
             Get shared memory allocator failure
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_INIT_MEMORY_ALLOCATOR">
            <summary>
             Get memory allocator failure
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_INIT_CLASS_CACHE">
            <summary>
             Unable to initialize class cache
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_INIT_RPC_CHANNEL">
            <summary>
             Unable to initialize RPC services
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_INIT_TLS_SET_CHANNEL_CONTROL">
            <summary>
             Cannot set thread local storage channel control
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_INIT_TLS_CHANNEL_CONTROL">
            <summary>
             Could not allocate thread local storage channel control
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_INIT_UNACCEPTED_USER_ALLOCATOR">
            <summary>
             The user supplied memory allocator is unacceptable
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_INIT_SCM_MUTEX_EXISTS">
            <summary>
             The OLE service mutex already exists
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_INIT_SCM_FILE_MAPPING_EXISTS">
            <summary>
             The OLE service file mapping already exists
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_INIT_SCM_MAP_VIEW_OF_FILE">
            <summary>
             Unable to map view of file for OLE service
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_INIT_SCM_EXEC_FAILURE">
            <summary>
             Failure attempting to launch OLE service
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_INIT_ONLY_SINGLE_THREADED">
            <summary>
             There was an attempt to call CoInitialize a second time while single threaded
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_CANT_REMOTE">
            <summary>
             A Remote activation was necessary but was not allowed
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_BAD_SERVER_NAME">
            <summary>
             A Remote activation was necessary but the server name provided was invalid
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_WRONG_SERVER_IDENTITY">
            <summary>
             The class is configured to run as a security id different from the caller
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_OLE1DDE_DISABLED">
            <summary>
             Use of Ole1 services requiring DDE windows is disabled
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_RUNAS_SYNTAX">
            <summary>
             A RunAs specification must be &lt;domain name&gt;\&lt;user name&gt; or simply &lt;user name&gt;
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_CREATEPROCESS_FAILURE">
            <summary>
             The server process could not be started.  The pathname may be incorrect.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_RUNAS_CREATEPROCESS_FAILURE">
            <summary>
             The server process could not be started as the configured identity.  The pathname may be incorrect or unavailable.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_RUNAS_LOGON_FAILURE">
            <summary>
             The server process could not be started because the configured identity is incorrect.  Check the username and password.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_LAUNCH_PERMSSION_DENIED">
            <summary>
             The client is not allowed to launch this server.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_START_SERVICE_FAILURE">
            <summary>
             The service providing this server could not be started.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_REMOTE_COMMUNICATION_FAILURE">
            <summary>
             This computer was unable to communicate with the computer providing the server.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_SERVER_START_TIMEOUT">
            <summary>
             The server did not respond after being launched.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_CLSREG_INCONSISTENT">
            <summary>
             The registration information for this server is inconsistent or incomplete.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_IIDREG_INCONSISTENT">
            <summary>
             The registration information for this interface is inconsistent or incomplete.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_NOT_SUPPORTED">
            <summary>
             The operation attempted is not supported.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_RELOAD_DLL">
            <summary>
             A dll must be loaded.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_MSI_ERROR">
            <summary>
             A Microsoft Software Installer error was encountered.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_ATTEMPT_TO_CREATE_OUTSIDE_CLIENT_CONTEXT">
            <summary>
             The specified activation could not occur in the client context as specified.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_SERVER_PAUSED">
            <summary>
             Activations on the server are paused.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_SERVER_NOT_PAUSED">
            <summary>
             Activations on the server are not paused.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_CLASS_DISABLED">
            <summary>
             The component or application containing the component has been disabled.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_CLRNOTAVAILABLE">
            <summary>
             The common language runtime is not available
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_ASYNC_WORK_REJECTED">
            <summary>
             The thread-pool rejected the submitted asynchronous work.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_SERVER_INIT_TIMEOUT">
            <summary>
             The server started, but did not finish initializing in a timely fashion.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_NO_SECCTX_IN_ACTIVATE">
            <summary>
             Unable to complete the call since there is no COM+ security context inside IObjectControl.Activate.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_TRACKER_CONFIG">
            <summary>
             The provided tracker configuration is invalid
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_THREADPOOL_CONFIG">
            <summary>
             The provided thread pool configuration is invalid
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_SXS_CONFIG">
            <summary>
             The provided side-by-side configuration is invalid
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_MALFORMED_SPN">
            <summary>
             The server principal name (SPN) obtained during security negotiation is malformed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OLE_E_OLEVERB">
            <summary>
             Invalid OLEVERB structure
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OLE_E_ADVF">
            <summary>
             Invalid advise flags
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OLE_E_ENUM_NOMORE">
            <summary>
             Can't enumerate any more, because the associated data is missing
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OLE_E_ADVISENOTSUPPORTED">
            <summary>
             This implementation doesn't take advises
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OLE_E_NOCONNECTION">
            <summary>
             There is no connection for this connection ID
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OLE_E_NOTRUNNING">
            <summary>
             Need to run the object to perform this operation
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OLE_E_NOCACHE">
            <summary>
             There is no cache to operate on
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OLE_E_BLANK">
            <summary>
             Uninitialized object
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OLE_E_CLASSDIFF">
            <summary>
             Linked object's source class has changed
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OLE_E_CANT_GETMONIKER">
            <summary>
             Not able to get the moniker of the object
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OLE_E_CANT_BINDTOSOURCE">
            <summary>
             Not able to bind to the source
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OLE_E_STATIC">
            <summary>
             Object is static; operation not allowed
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OLE_E_PROMPTSAVECANCELLED">
            <summary>
             User canceled out of save dialog
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OLE_E_INVALIDRECT">
            <summary>
             Invalid rectangle
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OLE_E_WRONGCOMPOBJ">
            <summary>
             compobj.dll is too old for the ole2.dll initialized
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OLE_E_INVALIDHWND">
            <summary>
             Invalid window handle
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OLE_E_NOT_INPLACEACTIVE">
            <summary>
             Object is not in any of the inplace active states
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OLE_E_CANTCONVERT">
            <summary>
             Not able to convert object
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OLE_E_NOSTORAGE">
            <summary>
             Not able to perform the operation because object is not given storage yet
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.DV_E_FORMATETC">
            <summary>
             Invalid FORMATETC structure
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.DV_E_DVTARGETDEVICE">
            <summary>
             Invalid DVTARGETDEVICE structure
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.DV_E_STGMEDIUM">
            <summary>
             Invalid STDGMEDIUM structure
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.DV_E_STATDATA">
            <summary>
             Invalid STATDATA structure
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.DV_E_LINDEX">
            <summary>
             Invalid lindex
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.DV_E_TYMED">
            <summary>
             Invalid tymed
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.DV_E_CLIPFORMAT">
            <summary>
             Invalid clipboard format
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.DV_E_DVASPECT">
            <summary>
             Invalid aspect(s)
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.DV_E_DVTARGETDEVICE_SIZE">
            <summary>
             tdSize parameter of the DVTARGETDEVICE structure is invalid
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.DV_E_NOIVIEWOBJECT">
            <summary>
             Object doesn't support IViewObject interface
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.DRAGDROP_E_NOTREGISTERED">
            <summary>
             Trying to revoke a drop target that has not been registered
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.DRAGDROP_E_ALREADYREGISTERED">
            <summary>
             This window has already been registered as a drop target
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.DRAGDROP_E_INVALIDHWND">
            <summary>
             Invalid window handle
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CLASS_E_NOAGGREGATION">
            <summary>
             Class does not support aggregation (or class object is remote)
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CLASS_E_CLASSNOTAVAILABLE">
            <summary>
             ClassFactory cannot supply requested class
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CLASS_E_NOTLICENSED">
            <summary>
             Class is not licensed for use
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.VIEW_E_DRAW">
            <summary>
             Error drawing view
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.REGDB_E_READREGDB">
            <summary>
             Could not read key from registry
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.REGDB_E_WRITEREGDB">
            <summary>
             Could not write key to registry
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.REGDB_E_KEYMISSING">
            <summary>
             Could not find the key in the registry
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.REGDB_E_INVALIDVALUE">
            <summary>
             Invalid value for registry
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.REGDB_E_CLASSNOTREG">
            <summary>
             Class not registered
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.REGDB_E_IIDNOTREG">
            <summary>
             Interface not registered
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.REGDB_E_BADTHREADINGMODEL">
            <summary>
             Threading model entry is not valid
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CAT_E_CATIDNOEXIST">
            <summary>
             CATID does not exist
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CAT_E_NODESCRIPTION">
            <summary>
             Description not found
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CS_E_PACKAGE_NOTFOUND">
            <summary>
             No package in the software installation data in the Active Directory meets this criteria.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CS_E_NOT_DELETABLE">
            <summary>
             Deleting this will break the referential integrity of the software installation data in the Active Directory.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CS_E_CLASS_NOTFOUND">
            <summary>
             The CLSID was not found in the software installation data in the Active Directory.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CS_E_INVALID_VERSION">
            <summary>
             The software installation data in the Active Directory is corrupt.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CS_E_NO_CLASSSTORE">
            <summary>
             There is no software installation data in the Active Directory.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CS_E_OBJECT_NOTFOUND">
            <summary>
             There is no software installation data object in the Active Directory.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CS_E_OBJECT_ALREADY_EXISTS">
            <summary>
             The software installation data object in the Active Directory already exists.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CS_E_INVALID_PATH">
            <summary>
             The path to the software installation data in the Active Directory is not correct.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CS_E_NETWORK_ERROR">
            <summary>
             A network error interrupted the operation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CS_E_ADMIN_LIMIT_EXCEEDED">
            <summary>
             The size of this object exceeds the maximum size set by the Administrator.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CS_E_SCHEMA_MISMATCH">
            <summary>
             The schema for the software installation data in the Active Directory does not match the required schema.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CS_E_INTERNAL_ERROR">
            <summary>
             An error occurred in the software installation data in the Active Directory.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CACHE_E_NOCACHE_UPDATED">
            <summary>
             Cache not updated
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OLEOBJ_E_NOVERBS">
            <summary>
             No verbs for OLE object
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OLEOBJ_E_INVALIDVERB">
            <summary>
             Invalid verb for OLE object
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.INPLACE_E_NOTUNDOABLE">
            <summary>
             Undo is not available
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.INPLACE_E_NOTOOLSPACE">
            <summary>
             Space for tools is not available
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CONVERT10_E_OLESTREAM_GET">
            <summary>
             OLESTREAM Get method failed
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CONVERT10_E_OLESTREAM_PUT">
            <summary>
             OLESTREAM Put method failed
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CONVERT10_E_OLESTREAM_FMT">
            <summary>
             Contents of the OLESTREAM not in correct format
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CONVERT10_E_OLESTREAM_BITMAP_TO_DIB">
            <summary>
             There was an error in a Windows GDI call while converting the bitmap to a DIB
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CONVERT10_E_STG_FMT">
            <summary>
             Contents of the IStorage not in correct format
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CONVERT10_E_STG_NO_STD_STREAM">
            <summary>
             Contents of IStorage is missing one of the standard streams
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CONVERT10_E_STG_DIB_TO_BITMAP">
            <summary>
             There was an error in a Windows GDI call while converting the DIB to a bitmap.
             
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CLIPBRD_E_CANT_OPEN">
            <summary>
             OpenClipboard Failed
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CLIPBRD_E_CANT_EMPTY">
            <summary>
             EmptyClipboard Failed
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CLIPBRD_E_CANT_SET">
            <summary>
             SetClipboard Failed
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CLIPBRD_E_BAD_DATA">
            <summary>
             Data on clipboard is invalid
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CLIPBRD_E_CANT_CLOSE">
            <summary>
             CloseClipboard Failed
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.MK_E_CONNECTMANUALLY">
            <summary>
             Moniker needs to be connected manually
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.MK_E_EXCEEDEDDEADLINE">
            <summary>
             Operation exceeded deadline
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.MK_E_NEEDGENERIC">
            <summary>
             Moniker needs to be generic
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.MK_E_UNAVAILABLE">
            <summary>
             Operation unavailable
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.MK_E_SYNTAX">
            <summary>
             Invalid syntax
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.MK_E_NOOBJECT">
            <summary>
             No object for moniker
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.MK_E_INVALIDEXTENSION">
            <summary>
             Bad extension for file
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.MK_E_INTERMEDIATEINTERFACENOTSUPPORTED">
            <summary>
             Intermediate operation failed
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.MK_E_NOTBINDABLE">
            <summary>
             Moniker is not bindable
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.MK_E_NOTBOUND">
            <summary>
             Moniker is not bound
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.MK_E_CANTOPENFILE">
            <summary>
             Moniker cannot open file
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.MK_E_MUSTBOTHERUSER">
            <summary>
             User input required for operation to succeed
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.MK_E_NOINVERSE">
            <summary>
             Moniker class has no inverse
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.MK_E_NOSTORAGE">
            <summary>
             Moniker does not refer to storage
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.MK_E_NOPREFIX">
            <summary>
             No common prefix
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.MK_E_ENUMERATION_FAILED">
            <summary>
             Moniker could not be enumerated
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_NOTINITIALIZED">
            <summary>
             CoInitialize has not been called.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_ALREADYINITIALIZED">
            <summary>
             CoInitialize has already been called.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_CANTDETERMINECLASS">
            <summary>
             Class of object cannot be determined
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_CLASSSTRING">
            <summary>
             Invalid class string
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_IIDSTRING">
            <summary>
             Invalid interface string
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_APPNOTFOUND">
            <summary>
             Application not found
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_APPSINGLEUSE">
            <summary>
             Application cannot be run more than once
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_ERRORINAPP">
            <summary>
             Some error in application program
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_DLLNOTFOUND">
            <summary>
             DLL for class not found
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_ERRORINDLL">
            <summary>
             Error in the DLL
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_WRONGOSFORAPP">
            <summary>
             Wrong OS or OS version for application
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_OBJNOTREG">
            <summary>
             Object is not registered
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_OBJISREG">
            <summary>
             Object is already registered
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_OBJNOTCONNECTED">
            <summary>
             Object is not connected to server
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_APPDIDNTREG">
            <summary>
             Application was launched but it didn't register a class factory
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_RELEASED">
            <summary>
             Object has been released
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.EVENT_S_SOME_SUBSCRIBERS_FAILED">
            <summary>
             An event was able to invoke some but not all of the subscribers
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.EVENT_E_ALL_SUBSCRIBERS_FAILED">
            <summary>
             An event was unable to invoke any of the subscribers
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.EVENT_S_NOSUBSCRIBERS">
            <summary>
             An event was delivered but there were no subscribers
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.EVENT_E_QUERYSYNTAX">
            <summary>
             A syntax error occurred trying to evaluate a query string
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.EVENT_E_QUERYFIELD">
            <summary>
             An invalid field name was used in a query string
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.EVENT_E_INTERNALEXCEPTION">
            <summary>
             An unexpected exception was raised
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.EVENT_E_INTERNALERROR">
            <summary>
             An unexpected internal error was detected
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.EVENT_E_INVALID_PER_USER_SID">
            <summary>
             The owner SID on a per-user subscription doesn't exist
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.EVENT_E_USER_EXCEPTION">
            <summary>
             A user-supplied component or subscriber raised an exception
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.EVENT_E_TOO_MANY_METHODS">
            <summary>
             An interface has too many methods to fire events from
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.EVENT_E_MISSING_EVENTCLASS">
            <summary>
             A subscription cannot be stored unless its event class already exists
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.EVENT_E_NOT_ALL_REMOVED">
            <summary>
             Not all the objects requested could be removed
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.EVENT_E_COMPLUS_NOT_INSTALLED">
            <summary>
             COM+ is required for this operation, but is not installed
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.EVENT_E_CANT_MODIFY_OR_DELETE_UNCONFIGURED_OBJECT">
            <summary>
             Cannot modify or delete an object that was not added using the COM+ Admin SDK
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.EVENT_E_CANT_MODIFY_OR_DELETE_CONFIGURED_OBJECT">
            <summary>
             Cannot modify or delete an object that was added using the COM+ Admin SDK
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.EVENT_E_INVALID_EVENT_CLASS_PARTITION">
            <summary>
             The event class for this subscription is in an invalid partition
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.EVENT_E_PER_USER_SID_NOT_LOGGED_ON">
            <summary>
             The owner of the PerUser subscription is not logged on to the system specified
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_E_ALREADYOTHERSINGLEPHASE">
            <summary>
             Another single phase resource manager has already been enlisted in this transaction.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_E_CANTRETAIN">
            <summary>
             A retaining commit or abort is not supported
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_E_COMMITFAILED">
            <summary>
             The transaction failed to commit for an unknown reason. The transaction was aborted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_E_COMMITPREVENTED">
            <summary>
             Cannot call commit on this transaction object because the calling application did not initiate the transaction.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_E_HEURISTICABORT">
            <summary>
             Instead of committing, the resource heuristically aborted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_E_HEURISTICCOMMIT">
            <summary>
             Instead of aborting, the resource heuristically committed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_E_HEURISTICDAMAGE">
            <summary>
             Some of the states of the resource were committed while others were aborted, likely because of heuristic decisions.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_E_HEURISTICDANGER">
            <summary>
             Some of the states of the resource may have been committed while others may have been aborted, likely because of heuristic decisions.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_E_ISOLATIONLEVEL">
            <summary>
             The requested isolation level is not valid or supported.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_E_NOASYNC">
            <summary>
             The transaction manager doesn't support an asynchronous operation for this method.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_E_NOENLIST">
            <summary>
             Unable to enlist in the transaction.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_E_NOISORETAIN">
            <summary>
             The requested semantics of retention of isolation across retaining commit and abort boundaries cannot be supported by this transaction implementation, or isoFlags was not equal to zero.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_E_NORESOURCE">
            <summary>
             There is no resource presently associated with this enlistment
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_E_NOTCURRENT">
            <summary>
             The transaction failed to commit due to the failure of optimistic concurrency control in at least one of the resource managers.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_E_NOTRANSACTION">
            <summary>
             The transaction has already been implicitly or explicitly committed or aborted
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_E_NOTSUPPORTED">
            <summary>
             An invalid combination of flags was specified
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_E_UNKNOWNRMGRID">
            <summary>
             The resource manager id is not associated with this transaction or the transaction manager.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_E_WRONGSTATE">
            <summary>
             This method was called in the wrong state
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_E_WRONGUOW">
            <summary>
             The indicated unit of work does not match the unit of work expected by the resource manager.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_E_XTIONEXISTS">
            <summary>
             An enlistment in a transaction already exists.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_E_NOIMPORTOBJECT">
            <summary>
             An import object for the transaction could not be found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_E_INVALIDCOOKIE">
            <summary>
             The transaction cookie is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_E_INDOUBT">
            <summary>
             The transaction status is in doubt. A communication failure occurred, or a transaction manager or resource manager has failed
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_E_NOTIMEOUT">
            <summary>
             A time-out was specified, but time-outs are not supported.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_E_ALREADYINPROGRESS">
            <summary>
             The requested operation is already in progress for the transaction.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_E_ABORTED">
            <summary>
             The transaction has already been aborted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_E_LOGFULL">
            <summary>
             The Transaction Manager returned a log full error.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_E_TMNOTAVAILABLE">
            <summary>
             The Transaction Manager is not available.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_E_CONNECTION_DOWN">
            <summary>
             A connection with the transaction manager was lost.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_E_CONNECTION_DENIED">
            <summary>
             A request to establish a connection with the transaction manager was denied.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_E_REENLISTTIMEOUT">
            <summary>
             Resource manager reenlistment to determine transaction status timed out.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_E_TIP_CONNECT_FAILED">
            <summary>
             This transaction manager failed to establish a connection with another TIP transaction manager.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_E_TIP_PROTOCOL_ERROR">
            <summary>
             This transaction manager encountered a protocol error with another TIP transaction manager.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_E_TIP_PULL_FAILED">
            <summary>
             This transaction manager could not propagate a transaction from another TIP transaction manager.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_E_DEST_TMNOTAVAILABLE">
            <summary>
             The Transaction Manager on the destination machine is not available.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_E_TIP_DISABLED">
            <summary>
             The Transaction Manager has disabled its support for TIP.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_E_NETWORK_TX_DISABLED">
            <summary>
             The transaction manager has disabled its support for remote/network transactions.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_E_PARTNER_NETWORK_TX_DISABLED">
            <summary>
             The partner transaction manager has disabled its support for remote/network transactions.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_E_XA_TX_DISABLED">
            <summary>
             The transaction manager has disabled its support for XA transactions.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_E_UNABLE_TO_READ_DTC_CONFIG">
            <summary>
             MSDTC was unable to read its configuration information.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_E_UNABLE_TO_LOAD_DTC_PROXY">
            <summary>
             MSDTC was unable to load the dtc proxy dll.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_E_ABORTING">
            <summary>
             The local transaction has aborted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_E_CLERKNOTFOUND">
            <summary>
             XACT_E_CLERKNOTFOUND
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_E_CLERKEXISTS">
            <summary>
             XACT_E_CLERKEXISTS
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_E_RECOVERYINPROGRESS">
            <summary>
             XACT_E_RECOVERYINPROGRESS
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_E_TRANSACTIONCLOSED">
            <summary>
             XACT_E_TRANSACTIONCLOSED
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_E_INVALIDLSN">
            <summary>
             XACT_E_INVALIDLSN
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_E_REPLAYREQUEST">
            <summary>
             XACT_E_REPLAYREQUEST
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_S_ASYNC">
            <summary>
             An asynchronous operation was specified. The operation has begun, but its outcome is not known yet.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_S_DEFECT">
            <summary>
             XACT_S_DEFECT
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_S_READONLY">
            <summary>
             The method call succeeded because the transaction was read-only.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_S_SOMENORETAIN">
            <summary>
             The transaction was successfully aborted. However, this is a coordinated transaction, and some number of enlisted resources were aborted outright because they could not support abort-retaining semantics
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_S_OKINFORM">
            <summary>
             No changes were made during this call, but the sink wants another chance to look if any other sinks make further changes.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_S_MADECHANGESCONTENT">
            <summary>
             The sink is content and wishes the transaction to proceed. Changes were made to one or more resources during this call.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_S_MADECHANGESINFORM">
            <summary>
             The sink is for the moment and wishes the transaction to proceed, but if other changes are made following this return by other event sinks then this sink wants another chance to look
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_S_ALLNORETAIN">
            <summary>
             The transaction was successfully aborted. However, the abort was non-retaining.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_S_ABORTING">
            <summary>
             An abort operation was already in progress.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_S_SINGLEPHASE">
            <summary>
             The resource manager has performed a single-phase commit of the transaction.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_S_LOCALLY_OK">
            <summary>
             The local transaction has not aborted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XACT_S_LASTRESOURCEMANAGER">
            <summary>
             The resource manager has requested to be the coordinator (last resource manager) for the transaction.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CONTEXT_E_ABORTED">
            <summary>
             The root transaction wanted to commit, but transaction aborted
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CONTEXT_E_ABORTING">
            <summary>
             You made a method call on a COM+ component that has a transaction that has already aborted or in the process of aborting.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CONTEXT_E_NOCONTEXT">
            <summary>
             There is no MTS object context
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CONTEXT_E_WOULD_DEADLOCK">
            <summary>
             The component is configured to use synchronization and this method call would cause a deadlock to occur.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CONTEXT_E_SYNCH_TIMEOUT">
            <summary>
             The component is configured to use synchronization and a thread has timed out waiting to enter the context.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CONTEXT_E_OLDREF">
            <summary>
             You made a method call on a COM+ component that has a transaction that has already committed or aborted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CONTEXT_E_ROLENOTFOUND">
            <summary>
             The specified role was not configured for the application
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CONTEXT_E_TMNOTAVAILABLE">
            <summary>
             COM+ was unable to talk to the Microsoft Distributed Transaction Coordinator
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_ACTIVATIONFAILED">
            <summary>
             An unexpected error occurred during COM+ Activation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_ACTIVATIONFAILED_EVENTLOGGED">
            <summary>
             COM+ Activation failed. Check the event log for more information
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_ACTIVATIONFAILED_CATALOGERROR">
            <summary>
             COM+ Activation failed due to a catalog or configuration error.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_ACTIVATIONFAILED_TIMEOUT">
            <summary>
             COM+ activation failed because the activation could not be completed in the specified amount of time.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_INITIALIZATIONFAILED">
            <summary>
             COM+ Activation failed because an initialization function failed.  Check the event log for more information.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CONTEXT_E_NOJIT">
            <summary>
             The requested operation requires that JIT be in the current context and it is not
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CONTEXT_E_NOTRANSACTION">
            <summary>
             The requested operation requires that the current context have a Transaction, and it does not
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_THREADINGMODEL_CHANGED">
            <summary>
             The components threading model has changed after install into a COM+ Application.  Please re-install component.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_NOIISINTRINSICS">
            <summary>
             IIS intrinsics not available.  Start your work with IIS.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_NOCOOKIES">
            <summary>
             An attempt to write a cookie failed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_DBERROR">
            <summary>
             An attempt to use a database generated a database specific error.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_NOTPOOLED">
            <summary>
             The COM+ component you created must use object pooling to work.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_NOTCONSTRUCTED">
            <summary>
             The COM+ component you created must use object construction to work correctly.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_NOSYNCHRONIZATION">
            <summary>
             The COM+ component requires synchronization, and it is not configured for it.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_ISOLEVELMISMATCH">
            <summary>
             The TxIsolation Level property for the COM+ component being created is stronger than the TxIsolationLevel for the "root" component for the transaction.  The creation failed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OLE_S_USEREG">
            <summary>
             Use the registry database to provide the requested information
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OLE_S_STATIC">
            <summary>
             Success, but static
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OLE_S_MAC_CLIPFORMAT">
            <summary>
             Macintosh clipboard format
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.DRAGDROP_S_DROP">
            <summary>
             Successful drop took place
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.DRAGDROP_S_CANCEL">
            <summary>
             Drag-drop operation canceled
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.DRAGDROP_S_USEDEFAULTCURSORS">
            <summary>
             Use the default cursor
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.DATA_S_SAMEFORMATETC">
            <summary>
             Data has same FORMATETC
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.VIEW_S_ALREADY_FROZEN">
            <summary>
             View is already frozen
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CACHE_S_FORMATETC_NOTSUPPORTED">
            <summary>
             FORMATETC not supported
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CACHE_S_SAMECACHE">
            <summary>
             Same cache
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CACHE_S_SOMECACHES_NOTUPDATED">
            <summary>
             Some cache(s) not updated
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OLEOBJ_S_INVALIDVERB">
            <summary>
             Invalid verb for OLE object
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OLEOBJ_S_CANNOT_DOVERB_NOW">
            <summary>
             Verb number is valid but verb cannot be done now
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OLEOBJ_S_INVALIDHWND">
            <summary>
             Invalid window handle passed
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.INPLACE_S_TRUNCATED">
            <summary>
             Message is too long; some of it had to be truncated before displaying
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CONVERT10_S_NO_PRESENTATION">
            <summary>
             Unable to convert OLESTREAM to IStorage
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.MK_S_REDUCED_TO_SELF">
            <summary>
             Moniker reduced to itself
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.MK_S_ME">
            <summary>
             Common prefix is this moniker
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.MK_S_HIM">
            <summary>
             Common prefix is input moniker
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.MK_S_US">
            <summary>
             Common prefix is both monikers
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.MK_S_MONIKERALREADYREGISTERED">
            <summary>
             Moniker is already registered in running object table
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCHED_S_TASK_READY">
            <summary>
             The task is ready to run at its next scheduled time.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCHED_S_TASK_RUNNING">
            <summary>
             The task is currently running.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCHED_S_TASK_DISABLED">
            <summary>
             The task will not run at the scheduled times because it has been disabled.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCHED_S_TASK_HAS_NOT_RUN">
            <summary>
             The task has not yet run.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCHED_S_TASK_NO_MORE_RUNS">
            <summary>
             There are no more runs scheduled for this task.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCHED_S_TASK_NOT_SCHEDULED">
            <summary>
             One or more of the properties that are needed to run this task on a schedule have not been set.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCHED_S_TASK_TERMINATED">
            <summary>
             The last run of the task was terminated by the user.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCHED_S_TASK_NO_VALID_TRIGGERS">
            <summary>
             Either the task has no triggers or the existing triggers are disabled or not set.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCHED_S_EVENT_TRIGGER">
            <summary>
             Event triggers don't have set run times.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCHED_E_TRIGGER_NOT_FOUND">
            <summary>
             Trigger not found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCHED_E_TASK_NOT_READY">
            <summary>
             One or more of the properties that are needed to run this task have not been set.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCHED_E_TASK_NOT_RUNNING">
            <summary>
             There is no running instance of the task to terminate.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCHED_E_SERVICE_NOT_INSTALLED">
            <summary>
             The Task Scheduler Service is not installed on this computer.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCHED_E_CANNOT_OPEN_TASK">
            <summary>
             The task object could not be opened.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCHED_E_INVALID_TASK">
            <summary>
             The object is either an invalid task object or is not a task object.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCHED_E_ACCOUNT_INFORMATION_NOT_SET">
            <summary>
             No account information could be found in the Task Scheduler security database for the task indicated.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCHED_E_ACCOUNT_NAME_NOT_FOUND">
            <summary>
             Unable to establish existence of the account specified.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCHED_E_ACCOUNT_DBASE_CORRUPT">
            <summary>
             Corruption was detected in the Task Scheduler security database; the database has been reset.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCHED_E_NO_SECURITY_SERVICES">
            <summary>
             Task Scheduler security services are available only on Windows NT.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCHED_E_UNKNOWN_OBJECT_VERSION">
            <summary>
             The task object version is either unsupported or invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCHED_E_UNSUPPORTED_ACCOUNT_OPTION">
            <summary>
             The task has been configured with an unsupported combination of account settings and run time options.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCHED_E_SERVICE_NOT_RUNNING">
            <summary>
             The Task Scheduler Service is not running.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_CLASS_CREATE_FAILED">
            <summary>
             Attempt to create a class object failed
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_SCM_ERROR">
            <summary>
             OLE service could not bind object
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_SCM_RPC_FAILURE">
            <summary>
             RPC communication failed with OLE service
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_BAD_PATH">
            <summary>
             Bad path to object
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_SERVER_EXEC_FAILURE">
            <summary>
             Server execution failed
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_OBJSRV_RPC_FAILURE">
            <summary>
             OLE service could not communicate with the object server
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.MK_E_NO_NORMALIZED">
            <summary>
             Moniker path could not be normalized
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_SERVER_STOPPING">
            <summary>
             Object server is stopping when OLE service contacts it
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.MEM_E_INVALID_ROOT">
            <summary>
             An invalid root block pointer was specified
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.MEM_E_INVALID_LINK">
            <summary>
             An allocation chain contained an invalid link pointer
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.MEM_E_INVALID_SIZE">
            <summary>
             The requested allocation size was too large
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_S_NOTALLINTERFACES">
            <summary>
             Not all the requested interfaces were available
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_S_MACHINENAMENOTFOUND">
            <summary>
             The specified machine name was not found in the cache.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.DISP_E_UNKNOWNINTERFACE">
            <summary>
             Unknown interface.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.DISP_E_MEMBERNOTFOUND">
            <summary>
             Member not found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.DISP_E_PARAMNOTFOUND">
            <summary>
             Parameter not found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.DISP_E_TYPEMISMATCH">
            <summary>
             Type mismatch.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.DISP_E_UNKNOWNNAME">
            <summary>
             Unknown name.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.DISP_E_NONAMEDARGS">
            <summary>
             No named arguments.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.DISP_E_BADVARTYPE">
            <summary>
             Bad variable type.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.DISP_E_EXCEPTION">
            <summary>
             Exception occurred.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.DISP_E_OVERFLOW">
            <summary>
             Out of present range.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.DISP_E_BADINDEX">
            <summary>
             Invalid index.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.DISP_E_UNKNOWNLCID">
            <summary>
             Unknown language.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.DISP_E_ARRAYISLOCKED">
            <summary>
             Memory is locked.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.DISP_E_BADPARAMCOUNT">
            <summary>
             Invalid number of parameters.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.DISP_E_PARAMNOTOPTIONAL">
            <summary>
             Parameter not optional.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.DISP_E_BADCALLEE">
            <summary>
             Invalid callee.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.DISP_E_NOTACOLLECTION">
            <summary>
             Does not support a collection.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.DISP_E_DIVBYZERO">
            <summary>
             Division by zero.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.DISP_E_BUFFERTOOSMALL">
            <summary>
             Buffer too small
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.TYPE_E_BUFFERTOOSMALL">
            <summary>
             Buffer too small.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.TYPE_E_FIELDNOTFOUND">
            <summary>
             Field name not defined in the record.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.TYPE_E_INVDATAREAD">
            <summary>
             Old format or invalid type library.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.TYPE_E_UNSUPFORMAT">
            <summary>
             Old format or invalid type library.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.TYPE_E_REGISTRYACCESS">
            <summary>
             Error accessing the OLE registry.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.TYPE_E_LIBNOTREGISTERED">
            <summary>
             Library not registered.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.TYPE_E_UNDEFINEDTYPE">
            <summary>
             Bound to unknown type.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.TYPE_E_QUALIFIEDNAMEDISALLOWED">
            <summary>
             Qualified name disallowed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.TYPE_E_INVALIDSTATE">
            <summary>
             Invalid forward reference, or reference to uncompiled type.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.TYPE_E_WRONGTYPEKIND">
            <summary>
             Type mismatch.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.TYPE_E_ELEMENTNOTFOUND">
            <summary>
             Element not found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.TYPE_E_AMBIGUOUSNAME">
            <summary>
             Ambiguous name.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.TYPE_E_NAMECONFLICT">
            <summary>
             Name already exists in the library.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.TYPE_E_UNKNOWNLCID">
            <summary>
             Unknown LCID.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.TYPE_E_DLLFUNCTIONNOTFOUND">
            <summary>
             Function not defined in specified DLL.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.TYPE_E_BADMODULEKIND">
            <summary>
             Wrong module kind for the operation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.TYPE_E_SIZETOOBIG">
            <summary>
             Size may not exceed 64K.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.TYPE_E_DUPLICATEID">
            <summary>
             Duplicate ID in inheritance hierarchy.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.TYPE_E_INVALIDID">
            <summary>
             Incorrect inheritance depth in standard OLE hmember.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.TYPE_E_TYPEMISMATCH">
            <summary>
             Type mismatch.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.TYPE_E_OUTOFBOUNDS">
            <summary>
             Invalid number of arguments.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.TYPE_E_IOERROR">
            <summary>
             I/O Error.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.TYPE_E_CANTCREATETMPFILE">
            <summary>
             Error creating unique tmp file.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.TYPE_E_CANTLOADLIBRARY">
            <summary>
             Error loading type library/DLL.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.TYPE_E_INCONSISTENTPROPFUNCS">
            <summary>
             Inconsistent property functions.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.TYPE_E_CIRCULARTYPE">
            <summary>
             Circular dependency between types/modules.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_E_INVALIDFUNCTION">
            <summary>
             Unable to perform requested operation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_E_FILENOTFOUND">
            <summary>
             %1 could not be found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_E_PATHNOTFOUND">
            <summary>
             The path %1 could not be found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_E_TOOMANYOPENFILES">
            <summary>
             There are insufficient resources to open another file.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_E_ACCESSDENIED">
            <summary>
             Access Denied.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_E_INVALIDHANDLE">
            <summary>
             Attempted an operation on an invalid object.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_E_INSUFFICIENTMEMORY">
            <summary>
             There is insufficient memory available to complete operation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_E_INVALIDPOINTER">
            <summary>
             Invalid pointer error.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_E_NOMOREFILES">
            <summary>
             There are no more entries to return.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_E_DISKISWRITEPROTECTED">
            <summary>
             Disk is write-protected.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_E_SEEKERROR">
            <summary>
             An error occurred during a seek operation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_E_WRITEFAULT">
            <summary>
             A disk error occurred during a write operation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_E_READFAULT">
            <summary>
             A disk error occurred during a read operation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_E_SHAREVIOLATION">
            <summary>
             A share violation has occurred.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_E_LOCKVIOLATION">
            <summary>
             A lock violation has occurred.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_E_FILEALREADYEXISTS">
            <summary>
             %1 already exists.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_E_INVALIDPARAMETER">
            <summary>
             Invalid parameter error.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_E_MEDIUMFULL">
            <summary>
             There is insufficient disk space to complete operation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_E_PROPSETMISMATCHED">
            <summary>
             Illegal write of non-simple property to simple property set.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_E_ABNORMALAPIEXIT">
            <summary>
             An API call exited abnormally.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_E_INVALIDHEADER">
            <summary>
             The file %1 is not a valid compound file.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_E_INVALIDNAME">
            <summary>
             The name %1 is not valid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_E_UNKNOWN">
            <summary>
             An unexpected error occurred.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_E_UNIMPLEMENTEDFUNCTION">
            <summary>
             That function is not implemented.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_E_INVALIDFLAG">
            <summary>
             Invalid flag error.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_E_INUSE">
            <summary>
             Attempted to use an object that is busy.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_E_NOTCURRENT">
            <summary>
             The storage has been changed since the last commit.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_E_REVERTED">
            <summary>
             Attempted to use an object that has ceased to exist.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_E_CANTSAVE">
            <summary>
             Can't save.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_E_OLDFORMAT">
            <summary>
             The compound file %1 was produced with an incompatible version of storage.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_E_OLDDLL">
            <summary>
             The compound file %1 was produced with a newer version of storage.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_E_SHAREREQUIRED">
            <summary>
             Share.exe or equivalent is required for operation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_E_NOTFILEBASEDSTORAGE">
            <summary>
             Illegal operation called on non-file based storage.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_E_EXTANTMARSHALLINGS">
            <summary>
             Illegal operation called on object with extant marshallings.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_E_DOCFILECORRUPT">
            <summary>
             The docfile has been corrupted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_E_BADBASEADDRESS">
            <summary>
             OLE32.DLL has been loaded at the wrong address.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_E_DOCFILETOOLARGE">
            <summary>
             The compound file is too large for the current implementation
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_E_NOTSIMPLEFORMAT">
            <summary>
             The compound file was not created with the STGM_SIMPLE flag
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_E_INCOMPLETE">
            <summary>
             The file download was aborted abnormally.  The file is incomplete.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_E_TERMINATED">
            <summary>
             The file download has been terminated.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_S_CONVERTED">
            <summary>
             The underlying file was converted to compound file format.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_S_BLOCK">
            <summary>
             The storage operation should block until more data is available.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_S_RETRYNOW">
            <summary>
             The storage operation should retry immediately.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_S_MONITORING">
            <summary>
             The notified event sink will not influence the storage operation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_S_MULTIPLEOPENS">
            <summary>
             Multiple opens prevent consolidated. (commit succeeded).
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_S_CONSOLIDATIONFAILED">
            <summary>
             Consolidation of the storage file failed. (commit succeeded).
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_S_CANNOTCONSOLIDATE">
            <summary>
             Consolidation of the storage file is inappropriate. (commit succeeded).
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_E_STATUS_COPY_PROTECTION_FAILURE">
            <summary>
             Generic Copy Protection Error.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_E_CSS_AUTHENTICATION_FAILURE">
            <summary>
             Copy Protection Error - DVD CSS Authentication failed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_E_CSS_KEY_NOT_PRESENT">
            <summary>
             Copy Protection Error - The given sector does not have a valid CSS key.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_E_CSS_KEY_NOT_ESTABLISHED">
            <summary>
             Copy Protection Error - DVD session key not established.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_E_CSS_SCRAMBLED_SECTOR">
            <summary>
             Copy Protection Error - The read failed because the sector is encrypted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_E_CSS_REGION_MISMATCH">
            <summary>
             Copy Protection Error - The current DVD's region does not correspond to the region setting of the drive.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_E_RESETS_EXHAUSTED">
            <summary>
             Copy Protection Error - The drive's region setting may be permanent or the number of user resets has been exhausted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_CALL_REJECTED">
            <summary>
             Call was rejected by callee.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_CALL_CANCELED">
            <summary>
             Call was canceled by the message filter.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_CANTPOST_INSENDCALL">
            <summary>
             The caller is dispatching an intertask SendMessage call and cannot call out via PostMessage.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_CANTCALLOUT_INASYNCCALL">
            <summary>
             The caller is dispatching an asynchronous call and cannot make an outgoing call on behalf of this call.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_CANTCALLOUT_INEXTERNALCALL">
            <summary>
             It is illegal to call out while inside message filter.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_CONNECTION_TERMINATED">
            <summary>
             The connection terminated or is in a bogus state and cannot be used any more. Other connections are still valid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_SERVER_DIED">
            <summary>
             The callee (server [not server application]) is not available and disappeared; all connections are invalid. The call may have executed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_CLIENT_DIED">
            <summary>
             The caller (client) disappeared while the callee (server) was processing a call.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_INVALID_DATAPACKET">
            <summary>
             The data packet with the marshalled parameter data is incorrect.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_CANTTRANSMIT_CALL">
            <summary>
             The call was not transmitted properly; the message queue was full and was not emptied after yielding.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_CLIENT_CANTMARSHAL_DATA">
            <summary>
             The client (caller) cannot marshall the parameter data - low memory, etc.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_CLIENT_CANTUNMARSHAL_DATA">
            <summary>
             The client (caller) cannot unmarshall the return data - low memory, etc.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_SERVER_CANTMARSHAL_DATA">
            <summary>
             The server (callee) cannot marshall the return data - low memory, etc.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_SERVER_CANTUNMARSHAL_DATA">
            <summary>
             The server (callee) cannot unmarshall the parameter data - low memory, etc.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_INVALID_DATA">
            <summary>
             Received data is invalid; could be server or client data.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_INVALID_PARAMETER">
            <summary>
             A particular parameter is invalid and cannot be (un)marshalled.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_CANTCALLOUT_AGAIN">
            <summary>
             There is no second outgoing call on the same channel in DDE conversation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_SERVER_DIED_DNE">
            <summary>
             The callee (server [not server application]) is not available and disappeared; all connections are invalid. The call did not execute.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_SYS_CALL_FAILED">
            <summary>
             System call failed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_OUT_OF_RESOURCES">
            <summary>
             Could not allocate some required resource (memory, events, ...)
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_ATTEMPTED_MULTITHREAD">
            <summary>
             Attempted to make calls on more than one thread in single threaded mode.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_NOT_REGISTERED">
            <summary>
             The requested interface is not registered on the server object.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_FAULT">
            <summary>
             RPC could not call the server or could not return the results of calling the server.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_SERVERFAULT">
            <summary>
             The server threw an exception.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_CHANGED_MODE">
            <summary>
             Cannot change thread mode after it is set.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_INVALIDMETHOD">
            <summary>
             The method called does not exist on the server.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_DISCONNECTED">
            <summary>
             The object invoked has disconnected from its clients.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_RETRY">
            <summary>
             The object invoked chose not to process the call now.  Try again later.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_SERVERCALL_RETRYLATER">
            <summary>
             The message filter indicated that the application is busy.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_SERVERCALL_REJECTED">
            <summary>
             The message filter rejected the call.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_INVALID_CALLDATA">
            <summary>
             A call control interfaces was called with invalid data.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_CANTCALLOUT_ININPUTSYNCCALL">
            <summary>
             An outgoing call cannot be made since the application is dispatching an input-synchronous call.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_WRONG_THREAD">
            <summary>
             The application called an interface that was marshalled for a different thread.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_THREAD_NOT_INIT">
            <summary>
             CoInitialize has not been called on the current thread.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_VERSION_MISMATCH">
            <summary>
             The version of OLE on the client and server machines does not match.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_INVALID_HEADER">
            <summary>
             OLE received a packet with an invalid header.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_INVALID_EXTENSION">
            <summary>
             OLE received a packet with an invalid extension.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_INVALID_IPID">
            <summary>
             The requested object or interface does not exist.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_INVALID_OBJECT">
            <summary>
             The requested object does not exist.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_S_CALLPENDING">
            <summary>
             OLE has sent a request and is waiting for a reply.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_S_WAITONTIMER">
            <summary>
             OLE is waiting before retrying a request.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_CALL_COMPLETE">
            <summary>
             Call context cannot be accessed after call completed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_UNSECURE_CALL">
            <summary>
             Impersonate on unsecure calls is not supported.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_TOO_LATE">
            <summary>
             Security must be initialized before any interfaces are marshalled or unmarshalled. It cannot be changed once initialized.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_NO_GOOD_SECURITY_PACKAGES">
            <summary>
             No security packages are installed on this machine or the user is not logged on or there are no compatible security packages between the client and server.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_ACCESS_DENIED">
            <summary>
             Access is denied.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_REMOTE_DISABLED">
            <summary>
             Remote calls are not allowed for this process.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_INVALID_OBJREF">
            <summary>
             The marshaled interface data packet (OBJREF) has an invalid or unknown format.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_NO_CONTEXT">
            <summary>
             No context is associated with this call. This happens for some custom marshalled calls and on the client side of the call.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_TIMEOUT">
            <summary>
             This operation returned because the timeout period expired.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_NO_SYNC">
            <summary>
             There are no synchronize objects to wait on.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_FULLSIC_REQUIRED">
            <summary>
             Full subject issuer chain SSL principal name expected from the server.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_INVALID_STD_NAME">
            <summary>
             Principal name is not a valid MSSTD name.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_FAILEDTOIMPERSONATE">
            <summary>
             Unable to impersonate DCOM client
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_FAILEDTOGETSECCTX">
            <summary>
             Unable to obtain server's security context
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_FAILEDTOOPENTHREADTOKEN">
            <summary>
             Unable to open the access token of the current thread
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_FAILEDTOGETTOKENINFO">
            <summary>
             Unable to obtain user info from an access token
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_TRUSTEEDOESNTMATCHCLIENT">
            <summary>
             The client who called IAccessControl::IsAccessPermitted was not the trustee provided to the method
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_FAILEDTOQUERYCLIENTBLANKET">
            <summary>
             Unable to obtain the client's security blanket
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_FAILEDTOSETDACL">
            <summary>
             Unable to set a discretionary ACL into a security descriptor
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_ACCESSCHECKFAILED">
            <summary>
             The system function, AccessCheck, returned false
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_NETACCESSAPIFAILED">
            <summary>
             Either NetAccessDel or NetAccessAdd returned an error code.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_WRONGTRUSTEENAMESYNTAX">
            <summary>
             One of the trustee strings provided by the user did not conform to the &lt;Domain&gt;\&lt;Name&gt; syntax and it was not the "*" string
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_INVALIDSID">
            <summary>
             One of the security identifiers provided by the user was invalid
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_CONVERSIONFAILED">
            <summary>
             Unable to convert a wide character trustee string to a multibyte trustee string
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_NOMATCHINGSIDFOUND">
            <summary>
             Unable to find a security identifier that corresponds to a trustee string provided by the user
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_LOOKUPACCSIDFAILED">
            <summary>
             The system function, LookupAccountSID, failed
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_NOMATCHINGNAMEFOUND">
            <summary>
             Unable to find a trustee name that corresponds to a security identifier provided by the user
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_LOOKUPACCNAMEFAILED">
            <summary>
             The system function, LookupAccountName, failed
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_SETSERLHNDLFAILED">
            <summary>
             Unable to set or reset a serialization handle
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_FAILEDTOGETWINDIR">
            <summary>
             Unable to obtain the Windows directory
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_PATHTOOLONG">
            <summary>
             Path too long
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_FAILEDTOGENUUID">
            <summary>
             Unable to generate a uuid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_FAILEDTOCREATEFILE">
            <summary>
             Unable to create file
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_FAILEDTOCLOSEHANDLE">
            <summary>
             Unable to close a serialization handle or a file handle.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_EXCEEDSYSACLLIMIT">
            <summary>
             The number of ACEs in an ACL exceeds the system limit.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_ACESINWRONGORDER">
            <summary>
             Not all the DENY_ACCESS ACEs are arranged in front of the GRANT_ACCESS ACEs in the stream.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_INCOMPATIBLESTREAMVERSION">
            <summary>
             The version of ACL format in the stream is not supported by this implementation of IAccessControl
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_FAILEDTOOPENPROCESSTOKEN">
            <summary>
             Unable to open the access token of the server process
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_DECODEFAILED">
            <summary>
             Unable to decode the ACL in the stream provided by the user
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_ACNOTINITIALIZED">
            <summary>
             The COM IAccessControl object is not initialized
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CO_E_CANCEL_DISABLED">
            <summary>
             Call Cancellation is disabled
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_E_UNEXPECTED">
            <summary>
             An internal error occurred.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.ERROR_AUDITING_DISABLED">
            <summary>
             The specified event is currently not being audited.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.ERROR_ALL_SIDS_FILTERED">
            <summary>
             The SID filtering operation removed all SIDs.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.NTE_BAD_UID">
            <summary>
             Bad UID.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.NTE_BAD_HASH">
            <summary>
             Bad Hash.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.NTE_BAD_KEY">
            <summary>
             Bad Key.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.NTE_BAD_LEN">
            <summary>
             Bad Length.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.NTE_BAD_DATA">
            <summary>
             Bad Data.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.NTE_BAD_SIGNATURE">
            <summary>
             Invalid Signature.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.NTE_BAD_VER">
            <summary>
             Bad Version of provider.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.NTE_BAD_ALGID">
            <summary>
             Invalid algorithm specified.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.NTE_BAD_FLAGS">
            <summary>
             Invalid flags specified.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.NTE_BAD_TYPE">
            <summary>
             Invalid type specified.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.NTE_BAD_KEY_STATE">
            <summary>
             Key not valid for use in specified state.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.NTE_BAD_HASH_STATE">
            <summary>
             Hash not valid for use in specified state.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.NTE_NO_KEY">
            <summary>
             Key does not exist.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.NTE_NO_MEMORY">
            <summary>
             Insufficient memory available for the operation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.NTE_EXISTS">
            <summary>
             Object already exists.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.NTE_PERM">
            <summary>
             Access denied.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.NTE_NOT_FOUND">
            <summary>
             Object was not found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.NTE_DOUBLE_ENCRYPT">
            <summary>
             Data already encrypted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.NTE_BAD_PROVIDER">
            <summary>
             Invalid provider specified.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.NTE_BAD_PROV_TYPE">
            <summary>
             Invalid provider type specified.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.NTE_BAD_PUBLIC_KEY">
            <summary>
             Provider's public key is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.NTE_BAD_KEYSET">
            <summary>
             Keyset does not exist
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.NTE_PROV_TYPE_NOT_DEF">
            <summary>
             Provider type not defined.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.NTE_PROV_TYPE_ENTRY_BAD">
            <summary>
             Provider type as registered is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.NTE_KEYSET_NOT_DEF">
            <summary>
             The keyset is not defined.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.NTE_KEYSET_ENTRY_BAD">
            <summary>
             Keyset as registered is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.NTE_PROV_TYPE_NO_MATCH">
            <summary>
             Provider type does not match registered value.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.NTE_SIGNATURE_FILE_BAD">
            <summary>
             The digital signature file is corrupt.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.NTE_PROVIDER_DLL_FAIL">
            <summary>
             Provider DLL failed to initialize correctly.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.NTE_PROV_DLL_NOT_FOUND">
            <summary>
             Provider DLL could not be found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.NTE_BAD_KEYSET_PARAM">
            <summary>
             The Keyset parameter is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.NTE_FAIL">
            <summary>
             An internal error occurred.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.NTE_SYS_ERR">
            <summary>
             A base error occurred.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.NTE_SILENT_CONTEXT">
            <summary>
             Provider could not perform the action since the context was acquired as silent.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.NTE_TOKEN_KEYSET_STORAGE_FULL">
            <summary>
             The security token does not have storage space available for an additional container.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.NTE_TEMPORARY_PROFILE">
            <summary>
             The profile for the user is a temporary profile.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.NTE_FIXEDPARAMETER">
            <summary>
             The key parameters could not be set because the CSP uses fixed parameters.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_INSUFFICIENT_MEMORY">
            <summary>
             Not enough memory is available to complete this request
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_INVALID_HANDLE">
            <summary>
             The handle specified is invalid
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_UNSUPPORTED_FUNCTION">
            <summary>
             The function requested is not supported
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_TARGET_UNKNOWN">
            <summary>
             The specified target is unknown or unreachable
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_INTERNAL_ERROR">
            <summary>
             The Local Security Authority cannot be contacted
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_SECPKG_NOT_FOUND">
            <summary>
             The requested security package does not exist
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_NOT_OWNER">
            <summary>
             The caller is not the owner of the desired credentials
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_CANNOT_INSTALL">
            <summary>
             The security package failed to initialize, and cannot be installed
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_INVALID_TOKEN">
            <summary>
             The token supplied to the function is invalid
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_CANNOT_PACK">
            <summary>
             The security package is not able to marshall the logon buffer, so the logon attempt has failed
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_QOP_NOT_SUPPORTED">
            <summary>
             The per-message Quality of Protection is not supported by the security package
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_NO_IMPERSONATION">
            <summary>
             The security context does not allow impersonation of the client
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_LOGON_DENIED">
            <summary>
             The logon attempt failed
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_UNKNOWN_CREDENTIALS">
            <summary>
             The credentials supplied to the package were not recognized
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_NO_CREDENTIALS">
            <summary>
             No credentials are available in the security package
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_MESSAGE_ALTERED">
            <summary>
             The message or signature supplied for verification has been altered
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_OUT_OF_SEQUENCE">
            <summary>
             The message supplied for verification is out of sequence
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_NO_AUTHENTICATING_AUTHORITY">
            <summary>
             No authority could be contacted for authentication.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_I_CONTINUE_NEEDED">
            <summary>
             The function completed successfully, but must be called again to complete the context
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_I_COMPLETE_NEEDED">
            <summary>
             The function completed successfully, but CompleteToken must be called
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_I_COMPLETE_AND_CONTINUE">
            <summary>
             The function completed successfully, but both CompleteToken and this function must be called to complete the context
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_I_LOCAL_LOGON">
            <summary>
             The logon was completed, but no network authority was available. The logon was made using locally known information
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_BAD_PKGID">
            <summary>
             The requested security package does not exist
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_CONTEXT_EXPIRED">
            <summary>
             The context has expired and can no longer be used.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_I_CONTEXT_EXPIRED">
            <summary>
             The context has expired and can no longer be used.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_INCOMPLETE_MESSAGE">
            <summary>
             The supplied message is incomplete.  The signature was not verified.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_INCOMPLETE_CREDENTIALS">
            <summary>
             The credentials supplied were not complete, and could not be verified. The context could not be initialized.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_BUFFER_TOO_SMALL">
            <summary>
             The buffers supplied to a function was too small.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_I_INCOMPLETE_CREDENTIALS">
            <summary>
             The credentials supplied were not complete, and could not be verified. Additional information can be returned from the context.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_I_RENEGOTIATE">
            <summary>
             The context data must be renegotiated with the peer.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_WRONG_PRINCIPAL">
            <summary>
             The target principal name is incorrect.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_I_NO_LSA_CONTEXT">
            <summary>
             There is no LSA mode context associated with this context.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_TIME_SKEW">
            <summary>
             The clocks on the client and server machines are skewed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_UNTRUSTED_ROOT">
            <summary>
             The certificate chain was issued by an authority that is not trusted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_ILLEGAL_MESSAGE">
            <summary>
             The message received was unexpected or badly formatted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_CERT_UNKNOWN">
            <summary>
             An unknown error occurred while processing the certificate.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_CERT_EXPIRED">
            <summary>
             The received certificate has expired.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_ENCRYPT_FAILURE">
            <summary>
             The specified data could not be encrypted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_DECRYPT_FAILURE">
            <summary>
             The specified data could not be decrypted.
             
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_ALGORITHM_MISMATCH">
            <summary>
             The client and server cannot communicate, because they do not possess a common algorithm.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_SECURITY_QOS_FAILED">
            <summary>
             The security context could not be established due to a failure in the requested quality of service (e.g. mutual authentication or delegation).
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_UNFINISHED_CONTEXT_DELETED">
            <summary>
             A security context was deleted before the context was completed.  This is considered a logon failure.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_NO_TGT_REPLY">
            <summary>
             The client is trying to negotiate a context and the server requires user-to-user but didn't send a TGT reply.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_NO_IP_ADDRESSES">
            <summary>
             Unable to accomplish the requested task because the local machine does not have any IP addresses.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_WRONG_CREDENTIAL_HANDLE">
            <summary>
             The supplied credential handle does not match the credential associated with the security context.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_CRYPTO_SYSTEM_INVALID">
            <summary>
             The crypto system or checksum function is invalid because a required function is unavailable.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_MAX_REFERRALS_EXCEEDED">
            <summary>
             The number of maximum ticket referrals has been exceeded.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_MUST_BE_KDC">
            <summary>
             The local machine must be a Kerberos KDC (domain controller) and it is not.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_STRONG_CRYPTO_NOT_SUPPORTED">
            <summary>
             The other end of the security negotiation is requires strong crypto but it is not supported on the local machine.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_TOO_MANY_PRINCIPALS">
            <summary>
             The KDC reply contained more than one principal name.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_NO_PA_DATA">
            <summary>
             Expected to find PA data for a hint of what etype to use, but it was not found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_PKINIT_NAME_MISMATCH">
            <summary>
             The client certificate does not contain a valid UPN, or does not match the client name
             in the logon request.  Please contact your administrator.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_SMARTCARD_LOGON_REQUIRED">
            <summary>
             Smartcard logon is required and was not used.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_SHUTDOWN_IN_PROGRESS">
            <summary>
             A system shutdown is in progress.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_KDC_INVALID_REQUEST">
            <summary>
             An invalid request was sent to the KDC.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_KDC_UNABLE_TO_REFER">
            <summary>
             The KDC was unable to generate a referral for the service requested.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_KDC_UNKNOWN_ETYPE">
            <summary>
             The encryption type requested is not supported by the KDC.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_UNSUPPORTED_PREAUTH">
            <summary>
             An unsupported preauthentication mechanism was presented to the kerberos package.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_DELEGATION_REQUIRED">
            <summary>
             The requested operation cannot be completed.  The computer must be trusted for delegation and the current user account must be configured to allow delegation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_BAD_BINDINGS">
            <summary>
             Client's supplied SSPI channel bindings were incorrect.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_MULTIPLE_ACCOUNTS">
            <summary>
             The received certificate was mapped to multiple accounts.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_NO_KERB_KEY">
            <summary>
             SEC_E_NO_KERB_KEY
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_CERT_WRONG_USAGE">
            <summary>
             The certificate is not valid for the requested usage.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_DOWNGRADE_DETECTED">
            <summary>
             The system detected a possible attempt to compromise security.  Please ensure that you can contact the server that authenticated you.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_SMARTCARD_CERT_REVOKED">
            <summary>
             The smartcard certificate used for authentication has been revoked.
             Please contact your system administrator.  There may be additional information in the
             event log.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_ISSUING_CA_UNTRUSTED">
            <summary>
             An untrusted certificate authority was detected While processing the
             smartcard certificate used for authentication.  Please contact your system
             administrator.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_REVOCATION_OFFLINE_C">
            <summary>
             The revocation status of the smartcard certificate used for
             authentication could not be determined. Please contact your system administrator.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_PKINIT_CLIENT_FAILURE">
            <summary>
             The smartcard certificate used for authentication was not trusted.  Please
             contact your system administrator.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_SMARTCARD_CERT_EXPIRED">
            <summary>
             The smartcard certificate used for authentication has expired.  Please
             contact your system administrator.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_NO_S4U_PROT_SUPPORT">
            <summary>
             The Kerberos subsystem encountered an error.  A service for user protocol request was made
             against a domain controller which does not support service for user.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_CROSSREALM_DELEGATION_FAILURE">
            <summary>
             An attempt was made by this server to make a Kerberos constrained delegation request for a target
             outside of the server's realm.  This is not supported, and indicates a misconfiguration on this
             server's allowed to delegate to list.  Please contact your administrator.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_REVOCATION_OFFLINE_KDC">
            <summary>
             The revocation status of the domain controller certificate used for smartcard
             authentication could not be determined.  There is additional information in the system event
             log. Please contact your system administrator.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_ISSUING_CA_UNTRUSTED_KDC">
            <summary>
             An untrusted certificate authority was detected while processing the
             domain controller certificate used for authentication.  There is additional information in
             the system event log.  Please contact your system administrator.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_KDC_CERT_EXPIRED">
            <summary>
             The domain controller certificate used for smartcard logon has expired.
             Please contact your system administrator with the contents of your system event log.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_KDC_CERT_REVOKED">
            <summary>
             The domain controller certificate used for smartcard logon has been revoked.
             Please contact your system administrator with the contents of your system event log.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SEC_E_NO_SPM">
            <summary>
             Provided for backwards compatibility
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_MSG_ERROR">
            <summary>
             An error occurred while performing an operation on a cryptographic message.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_UNKNOWN_ALGO">
            <summary>
             Unknown cryptographic algorithm.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_OID_FORMAT">
            <summary>
             The object identifier is poorly formatted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_INVALID_MSG_TYPE">
            <summary>
             Invalid cryptographic message type.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_UNEXPECTED_ENCODING">
            <summary>
             Unexpected cryptographic message encoding.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_AUTH_ATTR_MISSING">
            <summary>
             The cryptographic message does not contain an expected authenticated attribute.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_HASH_VALUE">
            <summary>
             The hash value is not correct.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_INVALID_INDEX">
            <summary>
             The index value is not valid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_ALREADY_DECRYPTED">
            <summary>
             The content of the cryptographic message has already been decrypted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_NOT_DECRYPTED">
            <summary>
             The content of the cryptographic message has not been decrypted yet.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_RECIPIENT_NOT_FOUND">
            <summary>
             The enveloped-data message does not contain the specified recipient.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_CONTROL_TYPE">
            <summary>
             Invalid control type.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_ISSUER_SERIALNUMBER">
            <summary>
             Invalid issuer and/or serial number.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_SIGNER_NOT_FOUND">
            <summary>
             Cannot find the original signer.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_ATTRIBUTES_MISSING">
            <summary>
             The cryptographic message does not contain all of the requested attributes.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_STREAM_MSG_NOT_READY">
            <summary>
             The streamed cryptographic message is not ready to return data.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_STREAM_INSUFFICIENT_DATA">
            <summary>
             The streamed cryptographic message requires more data to complete the decode operation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_I_NEW_PROTECTION_REQUIRED">
            <summary>
             The protected data needs to be re-protected.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_BAD_LEN">
            <summary>
             The length specified for the output data was insufficient.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_BAD_ENCODE">
            <summary>
             An error occurred during encode or decode operation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_FILE_ERROR">
            <summary>
             An error occurred while reading or writing to a file.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_NOT_FOUND">
            <summary>
             Cannot find object or property.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_EXISTS">
            <summary>
             The object or property already exists.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_NO_PROVIDER">
            <summary>
             No provider was specified for the store or object.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_SELF_SIGNED">
            <summary>
             The specified certificate is self signed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_DELETED_PREV">
            <summary>
             The previous certificate or CRL context was deleted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_NO_MATCH">
            <summary>
             Cannot find the requested object.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_UNEXPECTED_MSG_TYPE">
            <summary>
             The certificate does not have a property that references a private key.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_NO_KEY_PROPERTY">
            <summary>
             Cannot find the certificate and private key for decryption.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_NO_DECRYPT_CERT">
            <summary>
             Cannot find the certificate and private key to use for decryption.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_BAD_MSG">
            <summary>
             Not a cryptographic message or the cryptographic message is not formatted correctly.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_NO_SIGNER">
            <summary>
             The signed cryptographic message does not have a signer for the specified signer index.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_PENDING_CLOSE">
            <summary>
             Final closure is pending until additional frees or closes.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_REVOKED">
            <summary>
             The certificate is revoked.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_NO_REVOCATION_DLL">
            <summary>
             No Dll or exported function was found to verify revocation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_NO_REVOCATION_CHECK">
            <summary>
             The revocation function was unable to check revocation for the certificate.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_REVOCATION_OFFLINE">
            <summary>
             The revocation function was unable to check revocation because the revocation server was offline.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_NOT_IN_REVOCATION_DATABASE">
            <summary>
             The certificate is not in the revocation server's database.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_INVALID_NUMERIC_STRING">
            <summary>
             The string contains a non-numeric character.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_INVALID_PRINTABLE_STRING">
            <summary>
             The string contains a non-printable character.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_INVALID_IA5_STRING">
            <summary>
             The string contains a character not in the 7 bit ASCII character set.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_INVALID_X500_STRING">
            <summary>
             The string contains an invalid X500 name attribute key, oid, value or delimiter.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_NOT_CHAR_STRING">
            <summary>
             The dwValueType for the CERT_NAME_VALUE is not one of the character strings.  Most likely it is either a CERT_RDN_ENCODED_BLOB or CERT_TDN_OCTED_STRING.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_FILERESIZED">
            <summary>
             The Put operation cannot continue.  The file needs to be resized.  However, there is already a signature present.  A complete signing operation must be done.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_SECURITY_SETTINGS">
            <summary>
             The cryptographic operation failed due to a local security option setting.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_NO_VERIFY_USAGE_DLL">
            <summary>
             No DLL or exported function was found to verify subject usage.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_NO_VERIFY_USAGE_CHECK">
            <summary>
             The called function was unable to do a usage check on the subject.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_VERIFY_USAGE_OFFLINE">
            <summary>
             Since the server was offline, the called function was unable to complete the usage check.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_NOT_IN_CTL">
            <summary>
             The subject was not found in a Certificate Trust List (CTL).
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_NO_TRUSTED_SIGNER">
            <summary>
             None of the signers of the cryptographic message or certificate trust list is trusted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_MISSING_PUBKEY_PARA">
            <summary>
             The public key's algorithm parameters are missing.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_OSS_ERROR">
            <summary>
             OSS Certificate encode/decode error code base
             
             See asn1code.h for a definition of the OSS runtime errors. The OSS
             error values are offset by CRYPT_E_OSS_ERROR.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OSS_MORE_BUF">
            <summary>
             OSS ASN.1 Error: Output Buffer is too small.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OSS_NEGATIVE_UINTEGER">
            <summary>
             OSS ASN.1 Error: Signed integer is encoded as a unsigned integer.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OSS_PDU_RANGE">
            <summary>
             OSS ASN.1 Error: Unknown ASN.1 data type.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OSS_MORE_INPUT">
            <summary>
             OSS ASN.1 Error: Output buffer is too small, the decoded data has been truncated.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OSS_DATA_ERROR">
            <summary>
             OSS ASN.1 Error: Invalid data.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OSS_BAD_ARG">
            <summary>
             OSS ASN.1 Error: Invalid argument.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OSS_BAD_VERSION">
            <summary>
             OSS ASN.1 Error: Encode/Decode version mismatch.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OSS_OUT_MEMORY">
            <summary>
             OSS ASN.1 Error: Out of memory.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OSS_PDU_MISMATCH">
            <summary>
             OSS ASN.1 Error: Encode/Decode Error.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OSS_LIMITED">
            <summary>
             OSS ASN.1 Error: Internal Error.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OSS_BAD_PTR">
            <summary>
             OSS ASN.1 Error: Invalid data.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OSS_BAD_TIME">
            <summary>
             OSS ASN.1 Error: Invalid data.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OSS_INDEFINITE_NOT_SUPPORTED">
            <summary>
             OSS ASN.1 Error: Unsupported BER indefinite-length encoding.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OSS_MEM_ERROR">
            <summary>
             OSS ASN.1 Error: Access violation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OSS_BAD_TABLE">
            <summary>
             OSS ASN.1 Error: Invalid data.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OSS_TOO_LONG">
            <summary>
             OSS ASN.1 Error: Invalid data.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OSS_CONSTRAINT_VIOLATED">
            <summary>
             OSS ASN.1 Error: Invalid data.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OSS_FATAL_ERROR">
            <summary>
             OSS ASN.1 Error: Internal Error.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OSS_ACCESS_SERIALIZATION_ERROR">
            <summary>
             OSS ASN.1 Error: Multi-threading conflict.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OSS_NULL_TBL">
            <summary>
             OSS ASN.1 Error: Invalid data.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OSS_NULL_FCN">
            <summary>
             OSS ASN.1 Error: Invalid data.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OSS_BAD_ENCRULES">
            <summary>
             OSS ASN.1 Error: Invalid data.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OSS_UNAVAIL_ENCRULES">
            <summary>
             OSS ASN.1 Error: Encode/Decode function not implemented.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OSS_CANT_OPEN_TRACE_WINDOW">
            <summary>
             OSS ASN.1 Error: Trace file error.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OSS_UNIMPLEMENTED">
            <summary>
             OSS ASN.1 Error: Function not implemented.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OSS_OID_DLL_NOT_LINKED">
            <summary>
             OSS ASN.1 Error: Program link error.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OSS_CANT_OPEN_TRACE_FILE">
            <summary>
             OSS ASN.1 Error: Trace file error.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OSS_TRACE_FILE_ALREADY_OPEN">
            <summary>
             OSS ASN.1 Error: Trace file error.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OSS_TABLE_MISMATCH">
            <summary>
             OSS ASN.1 Error: Invalid data.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OSS_TYPE_NOT_SUPPORTED">
            <summary>
             OSS ASN.1 Error: Invalid data.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OSS_REAL_DLL_NOT_LINKED">
            <summary>
             OSS ASN.1 Error: Program link error.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OSS_REAL_CODE_NOT_LINKED">
            <summary>
             OSS ASN.1 Error: Program link error.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OSS_OUT_OF_RANGE">
            <summary>
             OSS ASN.1 Error: Program link error.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OSS_COPIER_DLL_NOT_LINKED">
            <summary>
             OSS ASN.1 Error: Program link error.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OSS_CONSTRAINT_DLL_NOT_LINKED">
            <summary>
             OSS ASN.1 Error: Program link error.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OSS_COMPARATOR_DLL_NOT_LINKED">
            <summary>
             OSS ASN.1 Error: Program link error.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OSS_COMPARATOR_CODE_NOT_LINKED">
            <summary>
             OSS ASN.1 Error: Program link error.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OSS_MEM_MGR_DLL_NOT_LINKED">
            <summary>
             OSS ASN.1 Error: Program link error.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OSS_PDV_DLL_NOT_LINKED">
            <summary>
             OSS ASN.1 Error: Program link error.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OSS_PDV_CODE_NOT_LINKED">
            <summary>
             OSS ASN.1 Error: Program link error.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OSS_API_DLL_NOT_LINKED">
            <summary>
             OSS ASN.1 Error: Program link error.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OSS_BERDER_DLL_NOT_LINKED">
            <summary>
             OSS ASN.1 Error: Program link error.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OSS_PER_DLL_NOT_LINKED">
            <summary>
             OSS ASN.1 Error: Program link error.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OSS_OPEN_TYPE_ERROR">
            <summary>
             OSS ASN.1 Error: Program link error.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OSS_MUTEX_NOT_CREATED">
            <summary>
             OSS ASN.1 Error: System resource error.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.OSS_CANT_CLOSE_TRACE_FILE">
            <summary>
             OSS ASN.1 Error: Trace file error.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_ASN1_ERROR">
            <summary>
             ASN1 Certificate encode/decode error code base.
             
             The ASN1 error values are offset by CRYPT_E_ASN1_ERROR.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_ASN1_INTERNAL">
            <summary>
             ASN1 internal encode or decode error.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_ASN1_EOD">
            <summary>
             ASN1 unexpected end of data.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_ASN1_CORRUPT">
            <summary>
             ASN1 corrupted data.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_ASN1_LARGE">
            <summary>
             ASN1 value too large.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_ASN1_CONSTRAINT">
            <summary>
             ASN1 constraint violated.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_ASN1_MEMORY">
            <summary>
             ASN1 out of memory.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_ASN1_OVERFLOW">
            <summary>
             ASN1 buffer overflow.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_ASN1_BADPDU">
            <summary>
             ASN1 function not supported for this PDU.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_ASN1_BADARGS">
            <summary>
             ASN1 bad arguments to function call.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_ASN1_BADREAL">
            <summary>
             ASN1 bad real value.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_ASN1_BADTAG">
            <summary>
             ASN1 bad tag value met.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_ASN1_CHOICE">
            <summary>
             ASN1 bad choice value.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_ASN1_RULE">
            <summary>
             ASN1 bad encoding rule.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_ASN1_UTF8">
            <summary>
             ASN1 bad unicode (UTF8).
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_ASN1_PDU_TYPE">
            <summary>
             ASN1 bad PDU type.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_ASN1_NYI">
            <summary>
             ASN1 not yet implemented.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_ASN1_EXTENDED">
            <summary>
             ASN1 skipped unknown extension(s).
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CRYPT_E_ASN1_NOEOD">
            <summary>
             ASN1 end of data expected
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERTSRV_E_BAD_REQUESTSUBJECT">
            <summary>
             The request subject name is invalid or too long.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERTSRV_E_NO_REQUEST">
            <summary>
             The request does not exist.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERTSRV_E_BAD_REQUESTSTATUS">
            <summary>
             The request's current status does not allow this operation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERTSRV_E_PROPERTY_EMPTY">
            <summary>
             The requested property value is empty.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERTSRV_E_INVALID_CA_CERTIFICATE">
            <summary>
             The certification authority's certificate contains invalid data.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERTSRV_E_SERVER_SUSPENDED">
            <summary>
             Certificate service has been suspended for a database restore operation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERTSRV_E_ENCODING_LENGTH">
            <summary>
             The certificate contains an encoded length that is potentially incompatible with older enrollment software.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERTSRV_E_ROLECONFLICT">
            <summary>
             The operation is denied. The user has multiple roles assigned and the certification authority is configured to enforce role separation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERTSRV_E_RESTRICTEDOFFICER">
            <summary>
             The operation is denied. It can only be performed by a certificate manager that is allowed to manage certificates for the current requester.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERTSRV_E_KEY_ARCHIVAL_NOT_CONFIGURED">
            <summary>
             Cannot archive private key.  The certification authority is not configured for key archival.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERTSRV_E_NO_VALID_KRA">
            <summary>
             Cannot archive private key.  The certification authority could not verify one or more key recovery certificates.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERTSRV_E_BAD_REQUEST_KEY_ARCHIVAL">
            <summary>
             The request is incorrectly formatted.  The encrypted private key must be in an unauthenticated attribute in an outermost signature.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERTSRV_E_NO_CAADMIN_DEFINED">
            <summary>
             At least one security principal must have the permission to manage this CA.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERTSRV_E_BAD_RENEWAL_CERT_ATTRIBUTE">
            <summary>
             The request contains an invalid renewal certificate attribute.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERTSRV_E_NO_DB_SESSIONS">
            <summary>
             An attempt was made to open a Certification Authority database session, but there are already too many active sessions.  The server may need to be configured to allow additional sessions.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERTSRV_E_ALIGNMENT_FAULT">
            <summary>
             A memory reference caused a data alignment fault.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERTSRV_E_ENROLL_DENIED">
            <summary>
             The permissions on this certification authority do not allow the current user to enroll for certificates.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERTSRV_E_TEMPLATE_DENIED">
            <summary>
             The permissions on the certificate template do not allow the current user to enroll for this type of certificate.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERTSRV_E_DOWNLEVEL_DC_SSL_OR_UPGRADE">
            <summary>
             The contacted domain controller cannot support signed LDAP traffic.  Update the domain controller or configure Certificate Services to use SSL for Active Directory access.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERTSRV_E_UNSUPPORTED_CERT_TYPE">
            <summary>
             The requested certificate template is not supported by this CA.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERTSRV_E_NO_CERT_TYPE">
            <summary>
             The request contains no certificate template information.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERTSRV_E_TEMPLATE_CONFLICT">
            <summary>
             The request contains conflicting template information.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERTSRV_E_SUBJECT_ALT_NAME_REQUIRED">
            <summary>
             The request is missing a required Subject Alternate name extension.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERTSRV_E_ARCHIVED_KEY_REQUIRED">
            <summary>
             The request is missing a required private key for archival by the server.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERTSRV_E_SMIME_REQUIRED">
            <summary>
             The request is missing a required SMIME capabilities extension.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERTSRV_E_BAD_RENEWAL_SUBJECT">
            <summary>
             The request was made on behalf of a subject other than the caller.  The certificate template must be configured to require at least one signature to authorize the request.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERTSRV_E_BAD_TEMPLATE_VERSION">
            <summary>
             The request template version is newer than the supported template version.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERTSRV_E_TEMPLATE_POLICY_REQUIRED">
            <summary>
             The template is missing a required signature policy attribute.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERTSRV_E_SIGNATURE_POLICY_REQUIRED">
            <summary>
             The request is missing required signature policy information.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERTSRV_E_SIGNATURE_COUNT">
            <summary>
             The request is missing one or more required signatures.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERTSRV_E_SIGNATURE_REJECTED">
            <summary>
             One or more signatures did not include the required application or issuance policies.  The request is missing one or more required valid signatures.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERTSRV_E_ISSUANCE_POLICY_REQUIRED">
            <summary>
             The request is missing one or more required signature issuance policies.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERTSRV_E_SUBJECT_UPN_REQUIRED">
            <summary>
             The UPN is unavailable and cannot be added to the Subject Alternate name.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERTSRV_E_SUBJECT_DIRECTORY_GUID_REQUIRED">
            <summary>
             The Active Directory GUID is unavailable and cannot be added to the Subject Alternate name.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERTSRV_E_SUBJECT_DNS_REQUIRED">
            <summary>
             The DNS name is unavailable and cannot be added to the Subject Alternate name.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERTSRV_E_ARCHIVED_KEY_UNEXPECTED">
            <summary>
             The request includes a private key for archival by the server, but key archival is not enabled for the specified certificate template.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERTSRV_E_KEY_LENGTH">
            <summary>
             The public key does not meet the minimum size required by the specified certificate template.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERTSRV_E_SUBJECT_EMAIL_REQUIRED">
            <summary>
             The EMail name is unavailable and cannot be added to the Subject or Subject Alternate name.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERTSRV_E_UNKNOWN_CERT_TYPE">
            <summary>
             One or more certificate templates to be enabled on this certification authority could not be found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERTSRV_E_CERT_TYPE_OVERLAP">
            <summary>
             The certificate template renewal period is longer than the certificate validity period.  The template should be reconfigured or the CA certificate renewed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XENROLL_E_KEY_NOT_EXPORTABLE">
            <summary>
             The key is not exportable.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XENROLL_E_CANNOT_ADD_ROOT_CERT">
            <summary>
             You cannot add the root CA certificate into your local store.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XENROLL_E_RESPONSE_KA_HASH_NOT_FOUND">
            <summary>
             The key archival hash attribute was not found in the response.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XENROLL_E_RESPONSE_UNEXPECTED_KA_HASH">
            <summary>
             An unexpected key archival hash attribute was found in the response.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XENROLL_E_RESPONSE_KA_HASH_MISMATCH">
            <summary>
             There is a key archival hash mismatch between the request and the response.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.XENROLL_E_KEYSPEC_SMIME_MISMATCH">
            <summary>
             Signing certificate cannot include SMIME extension.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.TRUST_E_SYSTEM_ERROR">
            <summary>
             A system-level error occurred while verifying trust.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.TRUST_E_NO_SIGNER_CERT">
            <summary>
             The certificate for the signer of the message is invalid or not found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.TRUST_E_COUNTER_SIGNER">
            <summary>
             One of the counter signatures was invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.TRUST_E_CERT_SIGNATURE">
            <summary>
             The signature of the certificate cannot be verified.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.TRUST_E_TIME_STAMP">
            <summary>
             The timestamp signature and/or certificate could not be verified or is malformed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.TRUST_E_BAD_DIGEST">
            <summary>
             The digital signature of the object did not verify.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.TRUST_E_BASIC_CONSTRAINTS">
            <summary>
             A certificate's basic constraint extension has not been observed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.TRUST_E_FINANCIAL_CRITERIA">
            <summary>
             The certificate does not meet or contain the Authenticode(tm) financial extensions.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.MSSIPOTF_E_OUTOFMEMRANGE">
            <summary>
             Tried to reference a part of the file outside the proper range.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.MSSIPOTF_E_CANTGETOBJECT">
            <summary>
             Could not retrieve an object from the file.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.MSSIPOTF_E_NOHEADTABLE">
            <summary>
             Could not find the head table in the file.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.MSSIPOTF_E_BAD_MAGICNUMBER">
            <summary>
             The magic number in the head table is incorrect.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.MSSIPOTF_E_BAD_OFFSET_TABLE">
            <summary>
             The offset table has incorrect values.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.MSSIPOTF_E_TABLE_TAGORDER">
            <summary>
             Duplicate table tags or tags out of alphabetical order.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.MSSIPOTF_E_TABLE_LONGWORD">
            <summary>
             A table does not start on a long word boundary.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.MSSIPOTF_E_BAD_FIRST_TABLE_PLACEMENT">
            <summary>
             First table does not appear after header information.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.MSSIPOTF_E_TABLES_OVERLAP">
            <summary>
             Two or more tables overlap.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.MSSIPOTF_E_TABLE_PADBYTES">
            <summary>
             Too many pad bytes between tables or pad bytes are not 0.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.MSSIPOTF_E_FILETOOSMALL">
            <summary>
             File is too small to contain the last table.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.MSSIPOTF_E_TABLE_CHECKSUM">
            <summary>
             A table checksum is incorrect.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.MSSIPOTF_E_FILE_CHECKSUM">
            <summary>
             The file checksum is incorrect.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.MSSIPOTF_E_FAILED_POLICY">
            <summary>
             The signature does not have the correct attributes for the policy.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.MSSIPOTF_E_FAILED_HINTS_CHECK">
            <summary>
             The file did not pass the hints check.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.MSSIPOTF_E_NOT_OPENTYPE">
            <summary>
             The file is not an OpenType file.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.MSSIPOTF_E_FILE">
            <summary>
             Failed on a file operation (open, map, read, write).
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.MSSIPOTF_E_CRYPT">
            <summary>
             A call to a CryptoAPI function failed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.MSSIPOTF_E_BADVERSION">
            <summary>
             There is a bad version number in the file.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.MSSIPOTF_E_DSIG_STRUCTURE">
            <summary>
             The structure of the DSIG table is incorrect.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.MSSIPOTF_E_PCONST_CHECK">
            <summary>
             A check failed in a partially constant table.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.MSSIPOTF_E_STRUCTURE">
            <summary>
             Some kind of structural error.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.TRUST_E_PROVIDER_UNKNOWN">
            <summary>
             Unknown trust provider.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.TRUST_E_ACTION_UNKNOWN">
            <summary>
             The trust verification action specified is not supported by the specified trust provider.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.TRUST_E_SUBJECT_FORM_UNKNOWN">
            <summary>
             The form specified for the subject is not one supported or known by the specified trust provider.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.TRUST_E_SUBJECT_NOT_TRUSTED">
            <summary>
             The subject is not trusted for the specified action.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.DIGSIG_E_ENCODE">
            <summary>
             Error due to problem in ASN.1 encoding process.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.DIGSIG_E_DECODE">
            <summary>
             Error due to problem in ASN.1 decoding process.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.DIGSIG_E_EXTENSIBILITY">
            <summary>
             Reading / writing Extensions where Attributes are appropriate, and visa versa.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.DIGSIG_E_CRYPTO">
            <summary>
             Unspecified cryptographic failure.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.PERSIST_E_SIZEDEFINITE">
            <summary>
             The size of the data could not be determined.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.PERSIST_E_SIZEINDEFINITE">
            <summary>
             The size of the indefinite-sized data could not be determined.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.PERSIST_E_NOTSELFSIZING">
            <summary>
             This object does not read and write self-sizing data.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.TRUST_E_NOSIGNATURE">
            <summary>
             No signature was present in the subject.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERT_E_EXPIRED">
            <summary>
             A required certificate is not within its validity period when verifying against the current system clock or the timestamp in the signed file.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERT_E_VALIDITYPERIODNESTING">
            <summary>
             The validity periods of the certification chain do not nest correctly.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERT_E_ROLE">
            <summary>
             A certificate that can only be used as an end-entity is being used as a CA or visa versa.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERT_E_PATHLENCONST">
            <summary>
             A path length constraint in the certification chain has been violated.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERT_E_CRITICAL">
            <summary>
             A certificate contains an unknown extension that is marked 'critical'.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERT_E_PURPOSE">
            <summary>
             A certificate being used for a purpose other than the ones specified by its CA.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERT_E_ISSUERCHAINING">
            <summary>
             A parent of a given certificate in fact did not issue that child certificate.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERT_E_MALFORMED">
            <summary>
             A certificate is missing or has an empty value for an important field, such as a subject or issuer name.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERT_E_UNTRUSTEDROOT">
            <summary>
             A certificate chain processed, but terminated in a root certificate which is not trusted by the trust provider.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERT_E_CHAINING">
            <summary>
             A certificate chain could not be built to a trusted root authority.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.TRUST_E_FAIL">
            <summary>
             Generic trust failure.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERT_E_REVOKED">
            <summary>
             A certificate was explicitly revoked by its issuer.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERT_E_UNTRUSTEDTESTROOT">
            <summary>
             The certification path terminates with the test root which is not trusted with the current policy settings.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERT_E_REVOCATION_FAILURE">
            <summary>
             The revocation process could not continue - the certificate(s) could not be checked.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERT_E_CN_NO_MATCH">
            <summary>
             The certificate's CN name does not match the passed value.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERT_E_WRONG_USAGE">
            <summary>
             The certificate is not valid for the requested usage.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.TRUST_E_EXPLICIT_DISTRUST">
            <summary>
             The certificate was explicitly marked as untrusted by the user.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERT_E_UNTRUSTEDCA">
            <summary>
             A certification chain processed correctly, but one of the CA certificates is not trusted by the policy provider.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERT_E_INVALID_POLICY">
            <summary>
             The certificate has invalid policy.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.CERT_E_INVALID_NAME">
            <summary>
             The certificate has an invalid name. The name is not included in the permitted list or is explicitly excluded.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_EXPECTED_SECTION_NAME">
            <summary>
             A non-empty line was encountered in the INF before the start of a section.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_BAD_SECTION_NAME_LINE">
            <summary>
             A section name marker in the INF is not complete, or does not exist on a line by itself.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_SECTION_NAME_TOO_LONG">
            <summary>
             An INF section was encountered whose name exceeds the maximum section name length.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_GENERAL_SYNTAX">
            <summary>
             The syntax of the INF is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_WRONG_INF_STYLE">
            <summary>
             The style of the INF is different than what was requested.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_SECTION_NOT_FOUND">
            <summary>
             The required section was not found in the INF.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_LINE_NOT_FOUND">
            <summary>
             The required line was not found in the INF.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_NO_BACKUP">
            <summary>
             The files affected by the installation of this file queue have not been backed up for uninstall.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_NO_ASSOCIATED_CLASS">
            <summary>
             The INF or the device information set or element does not have an associated install class.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_CLASS_MISMATCH">
            <summary>
             The INF or the device information set or element does not match the specified install class.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_DUPLICATE_FOUND">
            <summary>
             An existing device was found that is a duplicate of the device being manually installed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_NO_DRIVER_SELECTED">
            <summary>
             There is no driver selected for the device information set or element.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_KEY_DOES_NOT_EXIST">
            <summary>
             The requested device registry key does not exist.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_INVALID_DEVINST_NAME">
            <summary>
             The device instance name is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_INVALID_CLASS">
            <summary>
             The install class is not present or is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_DEVINST_ALREADY_EXISTS">
            <summary>
             The device instance cannot be created because it already exists.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_DEVINFO_NOT_REGISTERED">
            <summary>
             The operation cannot be performed on a device information element that has not been registered.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_INVALID_REG_PROPERTY">
            <summary>
             The device property code is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_NO_INF">
            <summary>
             The INF from which a driver list is to be built does not exist.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_NO_SUCH_DEVINST">
            <summary>
             The device instance does not exist in the hardware tree.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_CANT_LOAD_CLASS_ICON">
            <summary>
             The icon representing this install class cannot be loaded.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_INVALID_CLASS_INSTALLER">
            <summary>
             The class installer registry entry is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_DI_DO_DEFAULT">
            <summary>
             The class installer has indicated that the default action should be performed for this installation request.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_DI_NOFILECOPY">
            <summary>
             The operation does not require any files to be copied.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_INVALID_HWPROFILE">
            <summary>
             The specified hardware profile does not exist.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_NO_DEVICE_SELECTED">
            <summary>
             There is no device information element currently selected for this device information set.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_DEVINFO_LIST_LOCKED">
            <summary>
             The operation cannot be performed because the device information set is locked.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_DEVINFO_DATA_LOCKED">
            <summary>
             The operation cannot be performed because the device information element is locked.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_DI_BAD_PATH">
            <summary>
             The specified path does not contain any applicable device INFs.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_NO_CLASSINSTALL_PARAMS">
            <summary>
             No class installer parameters have been set for the device information set or element.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_FILEQUEUE_LOCKED">
            <summary>
             The operation cannot be performed because the file queue is locked.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_BAD_SERVICE_INSTALLSECT">
            <summary>
             A service installation section in this INF is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_NO_CLASS_DRIVER_LIST">
            <summary>
             There is no class driver list for the device information element.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_NO_ASSOCIATED_SERVICE">
            <summary>
             The installation failed because a function driver was not specified for this device instance.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_NO_DEFAULT_DEVICE_INTERFACE">
            <summary>
             There is presently no default device interface designated for this interface class.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_DEVICE_INTERFACE_ACTIVE">
            <summary>
             The operation cannot be performed because the device interface is currently active.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_DEVICE_INTERFACE_REMOVED">
            <summary>
             The operation cannot be performed because the device interface has been removed from the system.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_BAD_INTERFACE_INSTALLSECT">
            <summary>
             An interface installation section in this INF is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_NO_SUCH_INTERFACE_CLASS">
            <summary>
             This interface class does not exist in the system.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_INVALID_REFERENCE_STRING">
            <summary>
             The reference string supplied for this interface device is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_INVALID_MACHINENAME">
            <summary>
             The specified machine name does not conform to UNC naming conventions.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_REMOTE_COMM_FAILURE">
            <summary>
             A general remote communication error occurred.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_MACHINE_UNAVAILABLE">
            <summary>
             The machine selected for remote communication is not available at this time.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_NO_CONFIGMGR_SERVICES">
            <summary>
             The Plug and Play service is not available on the remote machine.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_INVALID_PROPPAGE_PROVIDER">
            <summary>
             The property page provider registry entry is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_NO_SUCH_DEVICE_INTERFACE">
            <summary>
             The requested device interface is not present in the system.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_DI_POSTPROCESSING_REQUIRED">
            <summary>
             The device's co-installer has additional work to perform after installation is complete.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_INVALID_COINSTALLER">
            <summary>
             The device's co-installer is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_NO_COMPAT_DRIVERS">
            <summary>
             There are no compatible drivers for this device.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_NO_DEVICE_ICON">
            <summary>
             There is no icon that represents this device or device type.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_INVALID_INF_LOGCONFIG">
            <summary>
             A logical configuration specified in this INF is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_DI_DONT_INSTALL">
            <summary>
             The class installer has denied the request to install or upgrade this device.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_INVALID_FILTER_DRIVER">
            <summary>
             One of the filter drivers installed for this device is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_NON_WINDOWS_NT_DRIVER">
            <summary>
             The driver selected for this device does not support Windows XP.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_NON_WINDOWS_DRIVER">
            <summary>
             The driver selected for this device does not support Windows.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_NO_CATALOG_FOR_OEM_INF">
            <summary>
             The third-party INF does not contain digital signature information.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_DEVINSTALL_QUEUE_NONNATIVE">
            <summary>
             An invalid attempt was made to use a device installation file queue for verification of digital signatures relative to other platforms.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_NOT_DISABLEABLE">
            <summary>
             The device cannot be disabled.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_CANT_REMOVE_DEVINST">
            <summary>
             The device could not be dynamically removed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_INVALID_TARGET">
            <summary>
             Cannot copy to specified target.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_DRIVER_NONNATIVE">
            <summary>
             Driver is not intended for this platform.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_IN_WOW64">
            <summary>
             Operation not allowed in WOW64.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_SET_SYSTEM_RESTORE_POINT">
            <summary>
             The operation involving unsigned file copying was rolled back, so that a system restore point could be set.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_INCORRECTLY_COPIED_INF">
            <summary>
             An INF was copied into the Windows INF directory in an improper manner.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_SCE_DISABLED">
            <summary>
             The Security Configuration Editor (SCE) APIs have been disabled on this Embedded product.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_UNKNOWN_EXCEPTION">
            <summary>
             An unknown exception was encountered.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_PNP_REGISTRY_ERROR">
            <summary>
             A problem was encountered when accessing the Plug and Play registry database.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_REMOTE_REQUEST_UNSUPPORTED">
            <summary>
             The requested operation is not supported for a remote machine.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_NOT_AN_INSTALLED_OEM_INF">
            <summary>
             The specified file is not an installed OEM INF.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_INF_IN_USE_BY_DEVICES">
            <summary>
             One or more devices are presently installed using the specified INF.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_DI_FUNCTION_OBSOLETE">
            <summary>
             The requested device install operation is obsolete.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_NO_AUTHENTICODE_CATALOG">
            <summary>
             A file could not be verified because it does not have an associated catalog signed via Authenticode(tm).
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_AUTHENTICODE_DISALLOWED">
            <summary>
             Authenticode(tm) signature verification is not supported for the specified INF.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_AUTHENTICODE_TRUSTED_PUBLISHER">
            <summary>
             The INF was signed with an Authenticode(tm) catalog from a trusted publisher.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_AUTHENTICODE_TRUST_NOT_ESTABLISHED">
            <summary>
             The publisher of an Authenticode(tm) signed catalog has not yet been established as trusted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_AUTHENTICODE_PUBLISHER_NOT_TRUSTED">
            <summary>
             The publisher of an Authenticode(tm) signed catalog was not established as trusted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_SIGNATURE_OSATTRIBUTE_MISMATCH">
            <summary>
             The software was tested for compliance with Windows Logo requirements on a different version of Windows, and may not be compatible with this version.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_ONLY_VALIDATE_VIA_AUTHENTICODE">
            <summary>
             The file may only be validated by a catalog signed via Authenticode(tm).
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_UNRECOVERABLE_STACK_OVERFLOW">
            <summary>  
             An unrecoverable stack overflow was encountered.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SPAPI_E_ERROR_NOT_INSTALLED">
            <summary>
             No installed components were detected.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_F_INTERNAL_ERROR">
            <summary>
             An internal consistency check failed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_E_CANCELLED">
            <summary>
             The action was cancelled by an SCardCancel request.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_E_INVALID_HANDLE">
            <summary>
             The supplied handle was invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_E_INVALID_PARAMETER">
            <summary>
             One or more of the supplied parameters could not be properly interpreted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_E_INVALID_TARGET">
            <summary>
             Registry startup information is missing or invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_E_NO_MEMORY">
            <summary>
             Not enough memory available to complete this command.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_F_WAITED_TOO_LONG">
            <summary>
             An internal consistency timer has expired.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_E_INSUFFICIENT_BUFFER">
            <summary>
             The data buffer to receive returned data is too small for the returned data.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_E_UNKNOWN_READER">
            <summary>
             The specified reader name is not recognized.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_E_TIMEOUT">
            <summary>
             The user-specified timeout value has expired.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_E_SHARING_VIOLATION">
            <summary>
             The smart card cannot be accessed because of other connections outstanding.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_E_NO_SMARTCARD">
            <summary>
             The operation requires a Smart Card, but no Smart Card is currently in the device.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_E_UNKNOWN_CARD">
            <summary>
             The specified smart card name is not recognized.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_E_CANT_DISPOSE">
            <summary>
             The system could not dispose of the media in the requested manner.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_E_PROTO_MISMATCH">
            <summary>
             The requested protocols are incompatible with the protocol currently in use with the smart card.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_E_NOT_READY">
            <summary>
             The reader or smart card is not ready to accept commands.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_E_INVALID_VALUE">
            <summary>
             One or more of the supplied parameters values could not be properly interpreted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_E_SYSTEM_CANCELLED">
            <summary>
             The action was cancelled by the system, presumably to log off or shut down.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_F_COMM_ERROR">
            <summary>
             An internal communications error has been detected.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_F_UNKNOWN_ERROR">
            <summary>
             An internal error has been detected, but the source is unknown.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_E_INVALID_ATR">
            <summary>
             An ATR obtained from the registry is not a valid ATR string.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_E_NOT_TRANSACTED">
            <summary>
             An attempt was made to end a non-existent transaction.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_E_READER_UNAVAILABLE">
            <summary>
             The specified reader is not currently available for use.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_P_SHUTDOWN">
            <summary>
             The operation has been aborted to allow the server application to exit.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_E_PCI_TOO_SMALL">
            <summary>
             The PCI Receive buffer was too small.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_E_READER_UNSUPPORTED">
            <summary>
             The reader driver does not meet minimal requirements for support.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_E_DUPLICATE_READER">
            <summary>
             The reader driver did not produce a unique reader name.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_E_CARD_UNSUPPORTED">
            <summary>
             The smart card does not meet minimal requirements for support.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_E_NO_SERVICE">
            <summary>
             The Smart card resource manager is not running.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_E_SERVICE_STOPPED">
            <summary>
             The Smart card resource manager has shut down.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_E_UNEXPECTED">
            <summary>
             An unexpected card error has occurred.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_E_ICC_INSTALLATION">
            <summary>
             No Primary Provider can be found for the smart card.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_E_ICC_CREATEORDER">
            <summary>
             The requested order of object creation is not supported.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_E_UNSUPPORTED_FEATURE">
            <summary>
             This smart card does not support the requested feature.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_E_DIR_NOT_FOUND">
            <summary>
             The identified directory does not exist in the smart card.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_E_FILE_NOT_FOUND">
            <summary>
             The identified file does not exist in the smart card.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_E_NO_DIR">
            <summary>
             The supplied path does not represent a smart card directory.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_E_NO_FILE">
            <summary>
             The supplied path does not represent a smart card file.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_E_NO_ACCESS">
            <summary>
             Access is denied to this file.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_E_WRITE_TOO_MANY">
            <summary>
             The smartcard does not have enough memory to store the information.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_E_BAD_SEEK">
            <summary>
             There was an error trying to set the smart card file object pointer.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_E_INVALID_CHV">
            <summary>
             The supplied PIN is incorrect.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_E_UNKNOWN_RES_MNG">
            <summary>
             An unrecognized error code was returned from a layered component.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_E_NO_SUCH_CERTIFICATE">
            <summary>
             The requested certificate does not exist.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_E_CERTIFICATE_UNAVAILABLE">
            <summary>
             The requested certificate could not be obtained.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_E_NO_READERS_AVAILABLE">
            <summary>
             Cannot find a smart card reader.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_E_COMM_DATA_LOST">
            <summary>
             A communications error with the smart card has been detected.  Retry the operation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_E_NO_KEY_CONTAINER">
            <summary>
             The requested key container does not exist on the smart card.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_E_SERVER_TOO_BUSY">
            <summary>
             The Smart card resource manager is too busy to complete this operation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_W_UNSUPPORTED_CARD">
            <summary>
             The reader cannot communicate with the smart card, due to ATR configuration conflicts.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_W_UNRESPONSIVE_CARD">
            <summary>
             The smart card is not responding to a reset.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_W_UNPOWERED_CARD">
            <summary>
             Power has been removed from the smart card, so that further communication is not possible.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_W_RESET_CARD">
            <summary>
             The smart card has been reset, so any shared state information is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_W_REMOVED_CARD">
            <summary>
             The smart card has been removed, so that further communication is not possible.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_W_SECURITY_VIOLATION">
            <summary>
             Access was denied because of a security violation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_W_WRONG_CHV">
            <summary>
             The card cannot be accessed because the wrong PIN was presented.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_W_CHV_BLOCKED">
            <summary>
             The card cannot be accessed because the maximum number of PIN entry attempts has been reached.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_W_EOF">
            <summary>
             The end of the smart card file has been reached.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_W_CANCELLED_BY_USER">
            <summary>
             The action was cancelled by the user.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.SCARD_W_CARD_NOT_AUTHENTICATED">
            <summary>
             No PIN was presented to the smart card.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_OBJECTERRORS">
            <summary>
             Errors occurred accessing one or more objects - the ErrorInfo collection may have more detail
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_OBJECTINVALID">
            <summary>
             One or more of the object's properties are missing or invalid
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_KEYMISSING">
            <summary>
             The object was not found in the catalog
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_ALREADYINSTALLED">
            <summary>
             The object is already registered
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_APP_FILE_WRITEFAIL">
            <summary>
             Error occurred writing to the application file
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_APP_FILE_READFAIL">
            <summary>
             Error occurred reading the application file
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_APP_FILE_VERSION">
            <summary>
             Invalid version number in application file
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_BADPATH">
            <summary>
             The file path is invalid
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_APPLICATIONEXISTS">
            <summary>
             The application is already installed
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_ROLEEXISTS">
            <summary>
             The role already exists
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_CANTCOPYFILE">
            <summary>
             An error occurred copying the file
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_NOUSER">
            <summary>
             One or more users are not valid
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_INVALIDUSERIDS">
            <summary>
             One or more users in the application file are not valid
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_NOREGISTRYCLSID">
            <summary>
             The component's CLSID is missing or corrupt
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_BADREGISTRYPROGID">
            <summary>
             The component's progID is missing or corrupt
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_AUTHENTICATIONLEVEL">
            <summary>
             Unable to set required authentication level for update request
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_USERPASSWDNOTVALID">
            <summary>
             The identity or password set on the application is not valid
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_CLSIDORIIDMISMATCH">
            <summary>
             Application file CLSIDs or IIDs do not match corresponding DLLs
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_REMOTEINTERFACE">
            <summary>
             Interface information is either missing or changed
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_DLLREGISTERSERVER">
            <summary>
             DllRegisterServer failed on component install
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_NOSERVERSHARE">
            <summary>
             No server file share available
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_DLLLOADFAILED">
            <summary>
             DLL could not be loaded
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_BADREGISTRYLIBID">
            <summary>
             The registered TypeLib ID is not valid
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_APPDIRNOTFOUND">
            <summary>
             Application install directory not found
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_REGISTRARFAILED">
            <summary>
             Errors occurred while in the component registrar
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_COMPFILE_DOESNOTEXIST">
            <summary>
             The file does not exist
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_COMPFILE_LOADDLLFAIL">
            <summary>
             The DLL could not be loaded
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_COMPFILE_GETCLASSOBJ">
            <summary>
             GetClassObject failed in the DLL
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_COMPFILE_CLASSNOTAVAIL">
            <summary>
             The DLL does not support the components listed in the TypeLib
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_COMPFILE_BADTLB">
            <summary>
             The TypeLib could not be loaded
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_COMPFILE_NOTINSTALLABLE">
            <summary>
             The file does not contain components or component information
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_NOTCHANGEABLE">
            <summary>
             Changes to this object and its sub-objects have been disabled
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_NOTDELETEABLE">
            <summary>
             The delete function has been disabled for this object
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_SESSION">
            <summary>
             The server catalog version is not supported
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_COMP_MOVE_LOCKED">
            <summary>
             The component move was disallowed, because the source or destination application is either a system application or currently locked against changes
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_COMP_MOVE_BAD_DEST">
            <summary>
             The component move failed because the destination application no longer exists
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_REGISTERTLB">
            <summary>
             The system was unable to register the TypeLib
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_SYSTEMAPP">
            <summary>
             This operation cannot be performed on the system application
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_COMPFILE_NOREGISTRAR">
            <summary>
             The component registrar referenced in this file is not available
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_COREQCOMPINSTALLED">
            <summary>
             A component in the same DLL is already installed
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_SERVICENOTINSTALLED">
            <summary>
             The service is not installed
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_PROPERTYSAVEFAILED">
            <summary>
             One or more property settings are either invalid or in conflict with each other
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_OBJECTEXISTS">
            <summary>
             The object you are attempting to add or rename already exists
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_COMPONENTEXISTS">
            <summary>
             The component already exists
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_REGFILE_CORRUPT">
            <summary>
             The registration file is corrupt
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_PROPERTY_OVERFLOW">
            <summary>
             The property value is too large
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_NOTINREGISTRY">
            <summary>
             Object was not found in registry
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_OBJECTNOTPOOLABLE">
            <summary>
             This object is not poolable
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_APPLID_MATCHES_CLSID">
            <summary>
             A CLSID with the same GUID as the new application ID is already installed on this machine
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_ROLE_DOES_NOT_EXIST">
            <summary>
             A role assigned to a component, interface, or method did not exist in the application
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_START_APP_NEEDS_COMPONENTS">
            <summary>
             You must have components in an application in order to start the application
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_REQUIRES_DIFFERENT_PLATFORM">
            <summary>
             This operation is not enabled on this platform
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_CAN_NOT_EXPORT_APP_PROXY">
            <summary>
             Application Proxy is not exportable
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_CAN_NOT_START_APP">
            <summary>
             Failed to start application because it is either a library application or an application proxy
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_CAN_NOT_EXPORT_SYS_APP">
            <summary>
             System application is not exportable
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_CANT_SUBSCRIBE_TO_COMPONENT">
            <summary>
             Unable to subscribe to this component (the component may have been imported)
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_EVENTCLASS_CANT_BE_SUBSCRIBER">
            <summary>
             An event class cannot also be a subscriber component
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_LIB_APP_PROXY_INCOMPATIBLE">
            <summary>
             Library applications and application proxies are incompatible
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_BASE_PARTITION_ONLY">
            <summary>
             This function is valid for the base partition only
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_START_APP_DISABLED">
            <summary>
             You cannot start an application that has been disabled
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_CAT_DUPLICATE_PARTITION_NAME">
            <summary>
             The specified partition name is already in use on this computer
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_CAT_INVALID_PARTITION_NAME">
            <summary>
             The specified partition name is invalid. Check that the name contains at least one visible character
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_CAT_PARTITION_IN_USE">
            <summary>
             The partition cannot be deleted because it is the default partition for one or more users
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_FILE_PARTITION_DUPLICATE_FILES">
            <summary>
             The partition cannot be exported, because one or more components in the partition have the same file name
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_CAT_IMPORTED_COMPONENTS_NOT_ALLOWED">
            <summary>
             Applications that contain one or more imported components cannot be installed into a non-base partition
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_AMBIGUOUS_APPLICATION_NAME">
            <summary>
             The application name is not unique and cannot be resolved to an application id
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_AMBIGUOUS_PARTITION_NAME">
            <summary>
             The partition name is not unique and cannot be resolved to a partition id
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_REGDB_NOTINITIALIZED">
            <summary>
             The COM+ registry database has not been initialized
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_REGDB_NOTOPEN">
            <summary>
             The COM+ registry database is not open
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_REGDB_SYSTEMERR">
            <summary>
             The COM+ registry database detected a system error
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_REGDB_ALREADYRUNNING">
            <summary>
             The COM+ registry database is already running
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_MIG_VERSIONNOTSUPPORTED">
            <summary>
             This version of the COM+ registry database cannot be migrated
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_MIG_SCHEMANOTFOUND">
            <summary>
             The schema version to be migrated could not be found in the COM+ registry database
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_CAT_BITNESSMISMATCH">
            <summary>
             There was a type mismatch between binaries
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_CAT_UNACCEPTABLEBITNESS">
            <summary>
             A binary of unknown or invalid type was provided
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_CAT_WRONGAPPBITNESS">
            <summary>
             There was a type mismatch between a binary and an application
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_CAT_PAUSE_RESUME_NOT_SUPPORTED">
            <summary>
             The application cannot be paused or resumed
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_CAT_SERVERFAULT">
            <summary>
             The COM+ Catalog Server threw an exception during execution
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMQC_E_APPLICATION_NOT_QUEUED">
            <summary>
             Only COM+ Applications marked "queued" can be invoked using the "queue" moniker
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMQC_E_NO_QUEUEABLE_INTERFACES">
            <summary>
             At least one interface must be marked "queued" in order to create a queued component instance with the "queue" moniker
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMQC_E_QUEUING_SERVICE_NOT_AVAILABLE">
            <summary>
             MSMQ is required for the requested operation and is not installed
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMQC_E_NO_IPERSISTSTREAM">
            <summary>
             Unable to marshal an interface that does not support IPersistStream
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMQC_E_BAD_MESSAGE">
            <summary>
             The message is improperly formatted or was damaged in transit
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMQC_E_UNAUTHENTICATED">
            <summary>
             An unauthenticated message was received by an application that accepts only authenticated messages
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMQC_E_UNTRUSTED_ENQUEUER">
            <summary>
             The message was requeued or moved by a user not in the "QC Trusted User" role
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.MSDTC_E_DUPLICATE_RESOURCE">
            <summary>
             Cannot create a duplicate resource of type Distributed Transaction Coordinator
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_OBJECT_PARENT_MISSING">
            <summary>
             One of the objects being inserted or updated does not belong to a valid parent collection
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_OBJECT_DOES_NOT_EXIST">
            <summary>
             One of the specified objects cannot be found
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_APP_NOT_RUNNING">
            <summary>
             The specified application is not currently running
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_INVALID_PARTITION">
            <summary>
             The partition(s) specified are not valid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_SVCAPP_NOT_POOLABLE_OR_RECYCLABLE">
            <summary>
             COM+ applications that run as NT service may not be pooled or recycled
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_USER_IN_SET">
            <summary>
             One or more users are already assigned to a local partition set.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_CANTRECYCLELIBRARYAPPS">
            <summary>
             Library applications may not be recycled.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_CANTRECYCLESERVICEAPPS">
            <summary>
             Applications running as NT services may not be recycled.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_PROCESSALREADYRECYCLED">
            <summary>
             The process has already been recycled.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_PAUSEDPROCESSMAYNOTBERECYCLED">
            <summary>
             A paused process may not be recycled.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_CANTMAKEINPROCSERVICE">
            <summary>
             Library applications may not be NT services.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_PROGIDINUSEBYCLSID">
            <summary>
             The ProgID provided to the copy operation is invalid. The ProgID is in use by another registered CLSID.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_DEFAULT_PARTITION_NOT_IN_SET">
            <summary>
             The partition specified as default is not a member of the partition set.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_RECYCLEDPROCESSMAYNOTBEPAUSED">
            <summary>
             A recycled process may not be paused.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_PARTITION_ACCESSDENIED">
            <summary>
             Access to the specified partition is denied.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_PARTITION_MSI_ONLY">
            <summary>
             Only Application Files (*.MSI files) can be installed into partitions.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_LEGACYCOMPS_NOT_ALLOWED_IN_1_0_FORMAT">
            <summary>
             Applications containing one or more legacy components may not be exported to 1.0 format.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_LEGACYCOMPS_NOT_ALLOWED_IN_NONBASE_PARTITIONS">
            <summary>
             Legacy components may not exist in non-base partitions.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_COMP_MOVE_SOURCE">
            <summary>
             A component cannot be moved (or copied) from the System Application, an application proxy or a non-changeable application
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_COMP_MOVE_DEST">
            <summary>
             A component cannot be moved (or copied) to the System Application, an application proxy or a non-changeable application
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_COMP_MOVE_PRIVATE">
            <summary>
             A private component cannot be moved (or copied) to a library application or to the base partition
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_BASEPARTITION_REQUIRED_IN_SET">
            <summary>
             The Base Application Partition exists in all partition sets and cannot be removed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_CANNOT_ALIAS_EVENTCLASS">
            <summary>
             Alas, Event Class components cannot be aliased.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_PRIVATE_ACCESSDENIED">
            <summary>
             Access is denied because the component is private.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_SAFERINVALID">
            <summary>
             The specified SAFER level is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_REGISTRY_ACCESSDENIED">
            <summary>
             The specified user cannot write to the system registry
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.COMADMIN_E_PARTITIONS_DISABLED">
            <summary>
             COM+ partitions are currently disabled.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.BUFFER_E_DEST_TOO_SMALL">
            <summary>
            Visual Studio specific.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.BUFFER_E_LOCKED">
            <summary>
            Visual Studio specific.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.BUFFER_E_READONLY">
            <summary>
            Visual Studio specific.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.BUFFER_E_READONLY_REGION">
            <summary>
            Visual Studio specific.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.BUFFER_E_SCC_READONLY">
            <summary>
            Visual Studio specific.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.BUFFER_E_TIMEOUT">
            <summary>
            Visual Studio specific.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.MARKER_E_BUFFERDESTROYED">
            <summary>
            Visual Studio specific.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.MARKER_E_INVALIDATED">
            <summary>
            Visual Studio specific.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.VIEW_E_LOCATION_HIDDEN">
            <summary>
            Visual Studio specific.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.VIEW_E_NO_BOOKMARKS">
            <summary>
            Visual Studio specific.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.VIEW_E_NO_DEBUGGER">
            <summary>
            Visual Studio specific.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.VIEW_E_USERREADONLY">
            <summary>
            Visual Studio specific.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.LINKEDUNDO_E_INTERVENING_ACTION">
            <summary>
            Visual Studio specific.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.UNDO_E_CLIENTABORT">
            <summary>
            Visual Studio specific.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.TIP_S_ONLYIFNOMARKER">
            <summary>
            Visual Studio specific.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_E_INVALIDCODEPAGE">
            <summary>
            Visual Studio specific.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_E_NOTTEXT">
            <summary>
            Visual Studio specific.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STG_S_DATALOSS">
            <summary>
            Visual Studio specific.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.E_PDB_OUT_OF_MEMORY">
            <summary>not used, use E_OUTOFMEMORY</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.E_PDB_NOT_IMPLEMENTED">
            <summary>use E_NOTIMPL</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.E_PDB_ACCESS_DENIED">
            <summary>use E_ACCESSDENIED</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_FUNCTION">
            <summary>
             Incorrect function.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_FUNCTION: <c>HRESULT_FROM_WIN32(ERROR_INVALID_FUNCTION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_FUNCTION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_FILE_NOT_FOUND">
            <summary>
             The system cannot find the file specified.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_FILE_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_FILE_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_FILE_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_PATH_NOT_FOUND">
            <summary>
             The system cannot find the path specified.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_PATH_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_PATH_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_PATH_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_TOO_MANY_OPEN_FILES">
            <summary>
             The system cannot open the file.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_TOO_MANY_OPEN_FILES: <c>HRESULT_FROM_WIN32(ERROR_TOO_MANY_OPEN_FILES)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_TOO_MANY_OPEN_FILES"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_ACCESS_DENIED">
            <summary>
             Access is denied.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_ACCESS_DENIED: <c>HRESULT_FROM_WIN32(ERROR_ACCESS_DENIED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_ACCESS_DENIED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_HANDLE">
            <summary>
             The handle is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_HANDLE: <c>HRESULT_FROM_WIN32(ERROR_INVALID_HANDLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_HANDLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_ARENA_TRASHED">
            <summary>
             The storage control blocks were destroyed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_ARENA_TRASHED: <c>HRESULT_FROM_WIN32(ERROR_ARENA_TRASHED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_ARENA_TRASHED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NOT_ENOUGH_MEMORY">
            <summary>
             Not enough storage is available to process this command.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NOT_ENOUGH_MEMORY: <c>HRESULT_FROM_WIN32(ERROR_NOT_ENOUGH_MEMORY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_ENOUGH_MEMORY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_BLOCK">
            <summary>
             The storage control block address is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_BLOCK: <c>HRESULT_FROM_WIN32(ERROR_INVALID_BLOCK)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_BLOCK"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_BAD_ENVIRONMENT">
            <summary>
             The environment is incorrect.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_BAD_ENVIRONMENT: <c>HRESULT_FROM_WIN32(ERROR_BAD_ENVIRONMENT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_ENVIRONMENT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_BAD_FORMAT">
            <summary>
             An attempt was made to load a program with an incorrect format.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_BAD_FORMAT: <c>HRESULT_FROM_WIN32(ERROR_BAD_FORMAT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_FORMAT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_ACCESS">
            <summary>
             The access code is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_ACCESS: <c>HRESULT_FROM_WIN32(ERROR_INVALID_ACCESS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_ACCESS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_DATA">
            <summary>
             The data is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_DATA: <c>HRESULT_FROM_WIN32(ERROR_INVALID_DATA)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_DATA"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_OUTOFMEMORY">
            <summary>
             Not enough storage is available to complete this operation.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_OUTOFMEMORY: <c>HRESULT_FROM_WIN32(ERROR_OUTOFMEMORY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_OUTOFMEMORY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_DRIVE">
            <summary>
             The system cannot find the drive specified.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_DRIVE: <c>HRESULT_FROM_WIN32(ERROR_INVALID_DRIVE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_DRIVE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CURRENT_DIRECTORY">
            <summary>
             The directory cannot be removed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CURRENT_DIRECTORY: <c>HRESULT_FROM_WIN32(ERROR_CURRENT_DIRECTORY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CURRENT_DIRECTORY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NOT_SAME_DEVICE">
            <summary>
             The system cannot move the file to a different disk drive.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NOT_SAME_DEVICE: <c>HRESULT_FROM_WIN32(ERROR_NOT_SAME_DEVICE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_SAME_DEVICE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NO_MORE_FILES">
            <summary>
             There are no more files.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NO_MORE_FILES: <c>HRESULT_FROM_WIN32(ERROR_NO_MORE_FILES)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_MORE_FILES"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_WRITE_PROTECT">
            <summary>
             The media is write protected.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_WRITE_PROTECT: <c>HRESULT_FROM_WIN32(ERROR_WRITE_PROTECT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_WRITE_PROTECT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_BAD_UNIT">
            <summary>
             The system cannot find the device specified.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_BAD_UNIT: <c>HRESULT_FROM_WIN32(ERROR_BAD_UNIT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_UNIT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NOT_READY">
            <summary>
             The device is not ready.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NOT_READY: <c>HRESULT_FROM_WIN32(ERROR_NOT_READY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_READY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_BAD_COMMAND">
            <summary>
             The device does not recognize the command.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_BAD_COMMAND: <c>HRESULT_FROM_WIN32(ERROR_BAD_COMMAND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_COMMAND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CRC">
            <summary>
             Data error (cyclic redundancy check).
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CRC: <c>HRESULT_FROM_WIN32(ERROR_CRC)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CRC"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_BAD_LENGTH">
            <summary>
             The program issued a command but the command length is incorrect.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_BAD_LENGTH: <c>HRESULT_FROM_WIN32(ERROR_BAD_LENGTH)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_LENGTH"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SEEK">
            <summary>
             The drive cannot locate a specific area or track on the disk.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SEEK: <c>HRESULT_FROM_WIN32(ERROR_SEEK)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SEEK"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NOT_DOS_DISK">
            <summary>
             The specified disk or diskette cannot be accessed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NOT_DOS_DISK: <c>HRESULT_FROM_WIN32(ERROR_NOT_DOS_DISK)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_DOS_DISK"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SECTOR_NOT_FOUND">
            <summary>
             The drive cannot find the sector requested.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SECTOR_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_SECTOR_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SECTOR_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_OUT_OF_PAPER">
            <summary>
             The printer is out of paper.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_OUT_OF_PAPER: <c>HRESULT_FROM_WIN32(ERROR_OUT_OF_PAPER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_OUT_OF_PAPER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_WRITE_FAULT">
            <summary>
             The system cannot write to the specified device.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_WRITE_FAULT: <c>HRESULT_FROM_WIN32(ERROR_WRITE_FAULT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_WRITE_FAULT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_READ_FAULT">
            <summary>
             The system cannot read from the specified device.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_READ_FAULT: <c>HRESULT_FROM_WIN32(ERROR_READ_FAULT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_READ_FAULT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_GEN_FAILURE">
            <summary>
             A device attached to the system is not functioning.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_GEN_FAILURE: <c>HRESULT_FROM_WIN32(ERROR_GEN_FAILURE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_GEN_FAILURE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SHARING_VIOLATION">
            <summary>
             The process cannot access the file because it is being used by another process.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SHARING_VIOLATION: <c>HRESULT_FROM_WIN32(ERROR_SHARING_VIOLATION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SHARING_VIOLATION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_LOCK_VIOLATION">
            <summary>
             The process cannot access the file because another process has locked a portion of the file.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_LOCK_VIOLATION: <c>HRESULT_FROM_WIN32(ERROR_LOCK_VIOLATION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_LOCK_VIOLATION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_WRONG_DISK">
            <summary>
             The wrong diskette is in the drive.
             Insert %2 (Volume Serial Number: %3) into drive %1.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_WRONG_DISK: <c>HRESULT_FROM_WIN32(ERROR_WRONG_DISK)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_WRONG_DISK"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SHARING_BUFFER_EXCEEDED">
            <summary>
             Too many files opened for sharing.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SHARING_BUFFER_EXCEEDED: <c>HRESULT_FROM_WIN32(ERROR_SHARING_BUFFER_EXCEEDED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SHARING_BUFFER_EXCEEDED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_HANDLE_EOF">
            <summary>
             Reached the end of the file.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_HANDLE_EOF: <c>HRESULT_FROM_WIN32(ERROR_HANDLE_EOF)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_HANDLE_EOF"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_HANDLE_DISK_FULL">
            <summary>
             The disk is full.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_HANDLE_DISK_FULL: <c>HRESULT_FROM_WIN32(ERROR_HANDLE_DISK_FULL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_HANDLE_DISK_FULL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NOT_SUPPORTED">
            <summary>
             The request is not supported.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NOT_SUPPORTED: <c>HRESULT_FROM_WIN32(ERROR_NOT_SUPPORTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_SUPPORTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_REM_NOT_LIST">
            <summary>
             Windows cannot find the network path. Verify that the network path is correct and the destination computer is not busy or turned off. If Windows still cannot find the network path, contact your network administrator.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_REM_NOT_LIST: <c>HRESULT_FROM_WIN32(ERROR_REM_NOT_LIST)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_REM_NOT_LIST"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DUP_NAME">
            <summary>
             You were not connected because a duplicate name exists on the network. Go to System in Control Panel to change the computer name and try again.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DUP_NAME: <c>HRESULT_FROM_WIN32(ERROR_DUP_NAME)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DUP_NAME"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_BAD_NETPATH">
            <summary>
             The network path was not found.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_BAD_NETPATH: <c>HRESULT_FROM_WIN32(ERROR_BAD_NETPATH)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_NETPATH"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NETWORK_BUSY">
            <summary>
             The network is busy.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NETWORK_BUSY: <c>HRESULT_FROM_WIN32(ERROR_NETWORK_BUSY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NETWORK_BUSY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DEV_NOT_EXIST">
            <summary>
             The specified network resource or device is no longer available.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DEV_NOT_EXIST: <c>HRESULT_FROM_WIN32(ERROR_DEV_NOT_EXIST)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DEV_NOT_EXIST"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_TOO_MANY_CMDS">
            <summary>
             The network BIOS command limit has been reached.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_TOO_MANY_CMDS: <c>HRESULT_FROM_WIN32(ERROR_TOO_MANY_CMDS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_TOO_MANY_CMDS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_ADAP_HDW_ERR">
            <summary>
             A network adapter hardware error occurred.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_ADAP_HDW_ERR: <c>HRESULT_FROM_WIN32(ERROR_ADAP_HDW_ERR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_ADAP_HDW_ERR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_BAD_NET_RESP">
            <summary>
             The specified server cannot perform the requested operation.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_BAD_NET_RESP: <c>HRESULT_FROM_WIN32(ERROR_BAD_NET_RESP)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_NET_RESP"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_UNEXP_NET_ERR">
            <summary>
             An unexpected network error occurred.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_UNEXP_NET_ERR: <c>HRESULT_FROM_WIN32(ERROR_UNEXP_NET_ERR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_UNEXP_NET_ERR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_BAD_REM_ADAP">
            <summary>
             The remote adapter is not compatible.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_BAD_REM_ADAP: <c>HRESULT_FROM_WIN32(ERROR_BAD_REM_ADAP)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_REM_ADAP"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_PRINTQ_FULL">
            <summary>
             The printer queue is full.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_PRINTQ_FULL: <c>HRESULT_FROM_WIN32(ERROR_PRINTQ_FULL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_PRINTQ_FULL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NO_SPOOL_SPACE">
            <summary>
             Space to store the file waiting to be printed is not available on the server.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NO_SPOOL_SPACE: <c>HRESULT_FROM_WIN32(ERROR_NO_SPOOL_SPACE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_SPOOL_SPACE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_PRINT_CANCELLED">
            <summary>
             Your file waiting to be printed was deleted.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_PRINT_CANCELLED: <c>HRESULT_FROM_WIN32(ERROR_PRINT_CANCELLED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_PRINT_CANCELLED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NETNAME_DELETED">
            <summary>
             The specified network name is no longer available.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NETNAME_DELETED: <c>HRESULT_FROM_WIN32(ERROR_NETNAME_DELETED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NETNAME_DELETED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NETWORK_ACCESS_DENIED">
            <summary>
             Network access is denied.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NETWORK_ACCESS_DENIED: <c>HRESULT_FROM_WIN32(ERROR_NETWORK_ACCESS_DENIED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NETWORK_ACCESS_DENIED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_BAD_DEV_TYPE">
            <summary>
             The network resource type is not correct.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_BAD_DEV_TYPE: <c>HRESULT_FROM_WIN32(ERROR_BAD_DEV_TYPE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_DEV_TYPE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_BAD_NET_NAME">
            <summary>
             The network name cannot be found.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_BAD_NET_NAME: <c>HRESULT_FROM_WIN32(ERROR_BAD_NET_NAME)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_NET_NAME"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_TOO_MANY_NAMES">
            <summary>
             The name limit for the local computer network adapter card was exceeded.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_TOO_MANY_NAMES: <c>HRESULT_FROM_WIN32(ERROR_TOO_MANY_NAMES)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_TOO_MANY_NAMES"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_TOO_MANY_SESS">
            <summary>
             The network BIOS session limit was exceeded.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_TOO_MANY_SESS: <c>HRESULT_FROM_WIN32(ERROR_TOO_MANY_SESS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_TOO_MANY_SESS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SHARING_PAUSED">
            <summary>
             The remote server has been paused or is in the process of being started.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SHARING_PAUSED: <c>HRESULT_FROM_WIN32(ERROR_SHARING_PAUSED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SHARING_PAUSED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_REQ_NOT_ACCEP">
            <summary>
             No more connections can be made to this remote computer at this time because there are already as many connections as the computer can accept.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_REQ_NOT_ACCEP: <c>HRESULT_FROM_WIN32(ERROR_REQ_NOT_ACCEP)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_REQ_NOT_ACCEP"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_REDIR_PAUSED">
            <summary>
             The specified printer or disk device has been paused.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_REDIR_PAUSED: <c>HRESULT_FROM_WIN32(ERROR_REDIR_PAUSED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_REDIR_PAUSED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_FILE_EXISTS">
            <summary>
             The file exists.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_FILE_EXISTS: <c>HRESULT_FROM_WIN32(ERROR_FILE_EXISTS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_FILE_EXISTS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CANNOT_MAKE">
            <summary>
             The directory or file cannot be created.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CANNOT_MAKE: <c>HRESULT_FROM_WIN32(ERROR_CANNOT_MAKE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CANNOT_MAKE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_FAIL_I24">
            <summary>
             Fail on INT 24.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_FAIL_I24: <c>HRESULT_FROM_WIN32(ERROR_FAIL_I24)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_FAIL_I24"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_OUT_OF_STRUCTURES">
            <summary>
             Storage to process this request is not available.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_OUT_OF_STRUCTURES: <c>HRESULT_FROM_WIN32(ERROR_OUT_OF_STRUCTURES)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_OUT_OF_STRUCTURES"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_ALREADY_ASSIGNED">
            <summary>
             The local device name is already in use.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_ALREADY_ASSIGNED: <c>HRESULT_FROM_WIN32(ERROR_ALREADY_ASSIGNED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_ALREADY_ASSIGNED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_PASSWORD">
            <summary>
             The specified network password is not correct.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_PASSWORD: <c>HRESULT_FROM_WIN32(ERROR_INVALID_PASSWORD)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_PASSWORD"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_PARAMETER">
            <summary>
             The parameter is incorrect.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_PARAMETER: <c>HRESULT_FROM_WIN32(ERROR_INVALID_PARAMETER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_PARAMETER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NET_WRITE_FAULT">
            <summary>
             A write fault occurred on the network.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NET_WRITE_FAULT: <c>HRESULT_FROM_WIN32(ERROR_NET_WRITE_FAULT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NET_WRITE_FAULT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NO_PROC_SLOTS">
            <summary>
             The system cannot start another process at this time.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NO_PROC_SLOTS: <c>HRESULT_FROM_WIN32(ERROR_NO_PROC_SLOTS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_PROC_SLOTS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_TOO_MANY_SEMAPHORES">
            <summary>
             Cannot create another system semaphore.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_TOO_MANY_SEMAPHORES: <c>HRESULT_FROM_WIN32(ERROR_TOO_MANY_SEMAPHORES)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_TOO_MANY_SEMAPHORES"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_EXCL_SEM_ALREADY_OWNED">
            <summary>
             The exclusive semaphore is owned by another process.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_EXCL_SEM_ALREADY_OWNED: <c>HRESULT_FROM_WIN32(ERROR_EXCL_SEM_ALREADY_OWNED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_EXCL_SEM_ALREADY_OWNED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SEM_IS_SET">
            <summary>
             The semaphore is set and cannot be closed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SEM_IS_SET: <c>HRESULT_FROM_WIN32(ERROR_SEM_IS_SET)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SEM_IS_SET"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_TOO_MANY_SEM_REQUESTS">
            <summary>
             The semaphore cannot be set again.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_TOO_MANY_SEM_REQUESTS: <c>HRESULT_FROM_WIN32(ERROR_TOO_MANY_SEM_REQUESTS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_TOO_MANY_SEM_REQUESTS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_AT_INTERRUPT_TIME">
            <summary>
             Cannot request exclusive semaphores at interrupt time.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_AT_INTERRUPT_TIME: <c>HRESULT_FROM_WIN32(ERROR_INVALID_AT_INTERRUPT_TIME)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_AT_INTERRUPT_TIME"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SEM_OWNER_DIED">
            <summary>
             The previous ownership of this semaphore has ended.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SEM_OWNER_DIED: <c>HRESULT_FROM_WIN32(ERROR_SEM_OWNER_DIED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SEM_OWNER_DIED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SEM_USER_LIMIT">
            <summary>
             Insert the diskette for drive %1.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SEM_USER_LIMIT: <c>HRESULT_FROM_WIN32(ERROR_SEM_USER_LIMIT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SEM_USER_LIMIT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DISK_CHANGE">
            <summary>
             The program stopped because an alternate diskette was not inserted.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DISK_CHANGE: <c>HRESULT_FROM_WIN32(ERROR_DISK_CHANGE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DISK_CHANGE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DRIVE_LOCKED">
            <summary>
             The disk is in use or locked by another process.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DRIVE_LOCKED: <c>HRESULT_FROM_WIN32(ERROR_DRIVE_LOCKED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DRIVE_LOCKED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_BROKEN_PIPE">
            <summary>
             The pipe has been ended.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_BROKEN_PIPE: <c>HRESULT_FROM_WIN32(ERROR_BROKEN_PIPE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_BROKEN_PIPE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_OPEN_FAILED">
            <summary>
             The system cannot open the device or file specified.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_OPEN_FAILED: <c>HRESULT_FROM_WIN32(ERROR_OPEN_FAILED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_OPEN_FAILED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_BUFFER_OVERFLOW">
            <summary>
             The file name is too long.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_BUFFER_OVERFLOW: <c>HRESULT_FROM_WIN32(ERROR_BUFFER_OVERFLOW)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_BUFFER_OVERFLOW"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DISK_FULL">
            <summary>
             There is not enough space on the disk.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DISK_FULL: <c>HRESULT_FROM_WIN32(ERROR_DISK_FULL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DISK_FULL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NO_MORE_SEARCH_HANDLES">
            <summary>
             No more internal file identifiers available.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NO_MORE_SEARCH_HANDLES: <c>HRESULT_FROM_WIN32(ERROR_NO_MORE_SEARCH_HANDLES)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_MORE_SEARCH_HANDLES"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_TARGET_HANDLE">
            <summary>
             The target internal file identifier is incorrect.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_TARGET_HANDLE: <c>HRESULT_FROM_WIN32(ERROR_INVALID_TARGET_HANDLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_TARGET_HANDLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_CATEGORY">
            <summary>
             The IOCTL call made by the application program is not correct.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_CATEGORY: <c>HRESULT_FROM_WIN32(ERROR_INVALID_CATEGORY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_CATEGORY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_VERIFY_SWITCH">
            <summary>
             The verify-on-write switch parameter value is not correct.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_VERIFY_SWITCH: <c>HRESULT_FROM_WIN32(ERROR_INVALID_VERIFY_SWITCH)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_VERIFY_SWITCH"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_BAD_DRIVER_LEVEL">
            <summary>
             The system does not support the command requested.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_BAD_DRIVER_LEVEL: <c>HRESULT_FROM_WIN32(ERROR_BAD_DRIVER_LEVEL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_DRIVER_LEVEL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CALL_NOT_IMPLEMENTED">
            <summary>
             This function is not supported on this system.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CALL_NOT_IMPLEMENTED: <c>HRESULT_FROM_WIN32(ERROR_CALL_NOT_IMPLEMENTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CALL_NOT_IMPLEMENTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SEM_TIMEOUT">
            <summary>
             The semaphore timeout period has expired.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SEM_TIMEOUT: <c>HRESULT_FROM_WIN32(ERROR_SEM_TIMEOUT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SEM_TIMEOUT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INSUFFICIENT_BUFFER">
            <summary>
             The data area passed to a system call is too small.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INSUFFICIENT_BUFFER: <c>HRESULT_FROM_WIN32(ERROR_INSUFFICIENT_BUFFER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INSUFFICIENT_BUFFER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_NAME">
            <summary>
             The filename, directory name, or volume label syntax is incorrect.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_NAME: <c>HRESULT_FROM_WIN32(ERROR_INVALID_NAME)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_NAME"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_LEVEL">
            <summary>
             The system call level is not correct.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_LEVEL: <c>HRESULT_FROM_WIN32(ERROR_INVALID_LEVEL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_LEVEL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NO_VOLUME_LABEL">
            <summary>
             The disk has no volume label.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NO_VOLUME_LABEL: <c>HRESULT_FROM_WIN32(ERROR_NO_VOLUME_LABEL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_VOLUME_LABEL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_MOD_NOT_FOUND">
            <summary>
             The specified module could not be found.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_MOD_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_MOD_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_MOD_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_PROC_NOT_FOUND">
            <summary>
             The specified procedure could not be found.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_PROC_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_PROC_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_PROC_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_WAIT_NO_CHILDREN">
            <summary>
             There are no child processes to wait for.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_WAIT_NO_CHILDREN: <c>HRESULT_FROM_WIN32(ERROR_WAIT_NO_CHILDREN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_WAIT_NO_CHILDREN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CHILD_NOT_COMPLETE">
            <summary>
             The %1 application cannot be run in Win32 mode.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CHILD_NOT_COMPLETE: <c>HRESULT_FROM_WIN32(ERROR_CHILD_NOT_COMPLETE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CHILD_NOT_COMPLETE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DIRECT_ACCESS_HANDLE">
            <summary>
             Attempt to use a file handle to an open disk partition for an operation other than raw disk I/O.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DIRECT_ACCESS_HANDLE: <c>HRESULT_FROM_WIN32(ERROR_DIRECT_ACCESS_HANDLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DIRECT_ACCESS_HANDLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NEGATIVE_SEEK">
            <summary>
             An attempt was made to move the file pointer before the beginning of the file.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NEGATIVE_SEEK: <c>HRESULT_FROM_WIN32(ERROR_NEGATIVE_SEEK)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NEGATIVE_SEEK"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SEEK_ON_DEVICE">
            <summary>
             The file pointer cannot be set on the specified device or file.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SEEK_ON_DEVICE: <c>HRESULT_FROM_WIN32(ERROR_SEEK_ON_DEVICE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SEEK_ON_DEVICE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IS_JOIN_TARGET">
            <summary>
             A JOIN or SUBST command cannot be used for a drive that contains previously joined drives.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IS_JOIN_TARGET: <c>HRESULT_FROM_WIN32(ERROR_IS_JOIN_TARGET)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IS_JOIN_TARGET"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IS_JOINED">
            <summary>
             An attempt was made to use a JOIN or SUBST command on a drive that has already been joined.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IS_JOINED: <c>HRESULT_FROM_WIN32(ERROR_IS_JOINED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IS_JOINED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IS_SUBSTED">
            <summary>
             An attempt was made to use a JOIN or SUBST command on a drive that has already been substituted.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IS_SUBSTED: <c>HRESULT_FROM_WIN32(ERROR_IS_SUBSTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IS_SUBSTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NOT_JOINED">
            <summary>
             The system tried to delete the JOIN of a drive that is not joined.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NOT_JOINED: <c>HRESULT_FROM_WIN32(ERROR_NOT_JOINED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_JOINED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NOT_SUBSTED">
            <summary>
             The system tried to delete the substitution of a drive that is not substituted.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NOT_SUBSTED: <c>HRESULT_FROM_WIN32(ERROR_NOT_SUBSTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_SUBSTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_JOIN_TO_JOIN">
            <summary>
             The system tried to join a drive to a directory on a joined drive.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_JOIN_TO_JOIN: <c>HRESULT_FROM_WIN32(ERROR_JOIN_TO_JOIN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_JOIN_TO_JOIN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SUBST_TO_SUBST">
            <summary>
             The system tried to substitute a drive to a directory on a substituted drive.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SUBST_TO_SUBST: <c>HRESULT_FROM_WIN32(ERROR_SUBST_TO_SUBST)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SUBST_TO_SUBST"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_JOIN_TO_SUBST">
            <summary>
             The system tried to join a drive to a directory on a substituted drive.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_JOIN_TO_SUBST: <c>HRESULT_FROM_WIN32(ERROR_JOIN_TO_SUBST)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_JOIN_TO_SUBST"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SUBST_TO_JOIN">
            <summary>
             The system tried to SUBST a drive to a directory on a joined drive.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SUBST_TO_JOIN: <c>HRESULT_FROM_WIN32(ERROR_SUBST_TO_JOIN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SUBST_TO_JOIN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_BUSY_DRIVE">
            <summary>
             The system cannot perform a JOIN or SUBST at this time.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_BUSY_DRIVE: <c>HRESULT_FROM_WIN32(ERROR_BUSY_DRIVE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_BUSY_DRIVE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SAME_DRIVE">
            <summary>
             The system cannot join or substitute a drive to or for a directory on the same drive.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SAME_DRIVE: <c>HRESULT_FROM_WIN32(ERROR_SAME_DRIVE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SAME_DRIVE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DIR_NOT_ROOT">
            <summary>
             The directory is not a subdirectory of the root directory.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DIR_NOT_ROOT: <c>HRESULT_FROM_WIN32(ERROR_DIR_NOT_ROOT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DIR_NOT_ROOT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DIR_NOT_EMPTY">
            <summary>
             The directory is not empty.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DIR_NOT_EMPTY: <c>HRESULT_FROM_WIN32(ERROR_DIR_NOT_EMPTY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DIR_NOT_EMPTY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IS_SUBST_PATH">
            <summary>
             The path specified is being used in a substitute.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IS_SUBST_PATH: <c>HRESULT_FROM_WIN32(ERROR_IS_SUBST_PATH)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IS_SUBST_PATH"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IS_JOIN_PATH">
            <summary>
             Not enough resources are available to process this command.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IS_JOIN_PATH: <c>HRESULT_FROM_WIN32(ERROR_IS_JOIN_PATH)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IS_JOIN_PATH"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_PATH_BUSY">
            <summary>
             The path specified cannot be used at this time.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_PATH_BUSY: <c>HRESULT_FROM_WIN32(ERROR_PATH_BUSY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_PATH_BUSY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IS_SUBST_TARGET">
            <summary>
             An attempt was made to join or substitute a drive for which a directory on the drive is the target of a previous substitute.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IS_SUBST_TARGET: <c>HRESULT_FROM_WIN32(ERROR_IS_SUBST_TARGET)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IS_SUBST_TARGET"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SYSTEM_TRACE">
            <summary>
             System trace information was not specified in your CONFIG.SYS file, or tracing is disallowed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SYSTEM_TRACE: <c>HRESULT_FROM_WIN32(ERROR_SYSTEM_TRACE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SYSTEM_TRACE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_EVENT_COUNT">
            <summary>
             The number of specified semaphore events for DosMuxSemWait is not correct.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_EVENT_COUNT: <c>HRESULT_FROM_WIN32(ERROR_INVALID_EVENT_COUNT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_EVENT_COUNT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_TOO_MANY_MUXWAITERS">
            <summary>
             DosMuxSemWait did not execute; too many semaphores are already set.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_TOO_MANY_MUXWAITERS: <c>HRESULT_FROM_WIN32(ERROR_TOO_MANY_MUXWAITERS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_TOO_MANY_MUXWAITERS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_LIST_FORMAT">
            <summary>
             The DosMuxSemWait list is not correct.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_LIST_FORMAT: <c>HRESULT_FROM_WIN32(ERROR_INVALID_LIST_FORMAT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_LIST_FORMAT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_LABEL_TOO_LONG">
            <summary>
             The volume label you entered exceeds the label character limit of the target file system.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_LABEL_TOO_LONG: <c>HRESULT_FROM_WIN32(ERROR_LABEL_TOO_LONG)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_LABEL_TOO_LONG"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_TOO_MANY_TCBS">
            <summary>
             Cannot create another thread.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_TOO_MANY_TCBS: <c>HRESULT_FROM_WIN32(ERROR_TOO_MANY_TCBS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_TOO_MANY_TCBS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SIGNAL_REFUSED">
            <summary>
             The recipient process has refused the signal.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SIGNAL_REFUSED: <c>HRESULT_FROM_WIN32(ERROR_SIGNAL_REFUSED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SIGNAL_REFUSED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DISCARDED">
            <summary>
             The segment is already discarded and cannot be locked.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DISCARDED: <c>HRESULT_FROM_WIN32(ERROR_DISCARDED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DISCARDED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NOT_LOCKED">
            <summary>
             The segment is already unlocked.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NOT_LOCKED: <c>HRESULT_FROM_WIN32(ERROR_NOT_LOCKED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_LOCKED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_BAD_THREADID_ADDR">
            <summary>
             The address for the thread ID is not correct.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_BAD_THREADID_ADDR: <c>HRESULT_FROM_WIN32(ERROR_BAD_THREADID_ADDR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_THREADID_ADDR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_BAD_ARGUMENTS">
            <summary>
             One or more arguments are not correct.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_BAD_ARGUMENTS: <c>HRESULT_FROM_WIN32(ERROR_BAD_ARGUMENTS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_ARGUMENTS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_BAD_PATHNAME">
            <summary>
             The specified path is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_BAD_PATHNAME: <c>HRESULT_FROM_WIN32(ERROR_BAD_PATHNAME)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_PATHNAME"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SIGNAL_PENDING">
            <summary>
             A signal is already pending.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SIGNAL_PENDING: <c>HRESULT_FROM_WIN32(ERROR_SIGNAL_PENDING)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SIGNAL_PENDING"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_MAX_THRDS_REACHED">
            <summary>
             No more threads can be created in the system.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_MAX_THRDS_REACHED: <c>HRESULT_FROM_WIN32(ERROR_MAX_THRDS_REACHED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_MAX_THRDS_REACHED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_LOCK_FAILED">
            <summary>
             Unable to lock a region of a file.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_LOCK_FAILED: <c>HRESULT_FROM_WIN32(ERROR_LOCK_FAILED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_LOCK_FAILED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_BUSY">
            <summary>
             The requested resource is in use.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_BUSY: <c>HRESULT_FROM_WIN32(ERROR_BUSY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_BUSY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CANCEL_VIOLATION">
            <summary>
             A lock request was not outstanding for the supplied cancel region.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CANCEL_VIOLATION: <c>HRESULT_FROM_WIN32(ERROR_CANCEL_VIOLATION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CANCEL_VIOLATION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_ATOMIC_LOCKS_NOT_SUPPORTED">
            <summary>
             The file system does not support atomic changes to the lock type.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_ATOMIC_LOCKS_NOT_SUPPORTED: <c>HRESULT_FROM_WIN32(ERROR_ATOMIC_LOCKS_NOT_SUPPORTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_ATOMIC_LOCKS_NOT_SUPPORTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_SEGMENT_NUMBER">
            <summary>
             The system detected a segment number that was not correct.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_SEGMENT_NUMBER: <c>HRESULT_FROM_WIN32(ERROR_INVALID_SEGMENT_NUMBER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_SEGMENT_NUMBER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_ORDINAL">
            <summary>
             The operating system cannot run %1.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_ORDINAL: <c>HRESULT_FROM_WIN32(ERROR_INVALID_ORDINAL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_ORDINAL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_ALREADY_EXISTS">
            <summary>
             Cannot create a file when that file already exists.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_ALREADY_EXISTS: <c>HRESULT_FROM_WIN32(ERROR_ALREADY_EXISTS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_ALREADY_EXISTS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_FLAG_NUMBER">
            <summary>
             The flag passed is not correct.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_FLAG_NUMBER: <c>HRESULT_FROM_WIN32(ERROR_INVALID_FLAG_NUMBER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_FLAG_NUMBER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SEM_NOT_FOUND">
            <summary>
             The specified system semaphore name was not found.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SEM_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_SEM_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SEM_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_STARTING_CODESEG">
            <summary>
             The operating system cannot run %1.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_STARTING_CODESEG: <c>HRESULT_FROM_WIN32(ERROR_INVALID_STARTING_CODESEG)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_STARTING_CODESEG"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_STACKSEG">
            <summary>
             The operating system cannot run %1.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_STACKSEG: <c>HRESULT_FROM_WIN32(ERROR_INVALID_STACKSEG)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_STACKSEG"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_MODULETYPE">
            <summary>
             The operating system cannot run %1.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_MODULETYPE: <c>HRESULT_FROM_WIN32(ERROR_INVALID_MODULETYPE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_MODULETYPE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_EXE_SIGNATURE">
            <summary>
             Cannot run %1 in Win32 mode.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_EXE_SIGNATURE: <c>HRESULT_FROM_WIN32(ERROR_INVALID_EXE_SIGNATURE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_EXE_SIGNATURE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_EXE_MARKED_INVALID">
            <summary>
             The operating system cannot run %1.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_EXE_MARKED_INVALID: <c>HRESULT_FROM_WIN32(ERROR_EXE_MARKED_INVALID)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_EXE_MARKED_INVALID"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_BAD_EXE_FORMAT">
            <summary>
             %1 is not a valid Win32 application.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_BAD_EXE_FORMAT: <c>HRESULT_FROM_WIN32(ERROR_BAD_EXE_FORMAT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_EXE_FORMAT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_ITERATED_DATA_EXCEEDS_64k">
            <summary>
             The operating system cannot run %1.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_ITERATED_DATA_EXCEEDS_64k: <c>HRESULT_FROM_WIN32(ERROR_ITERATED_DATA_EXCEEDS_64k)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_ITERATED_DATA_EXCEEDS_64k"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_MINALLOCSIZE">
            <summary>
             The operating system cannot run %1.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_MINALLOCSIZE: <c>HRESULT_FROM_WIN32(ERROR_INVALID_MINALLOCSIZE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_MINALLOCSIZE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DYNLINK_FROM_INVALID_RING">
            <summary>
             The operating system cannot run this application program.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DYNLINK_FROM_INVALID_RING: <c>HRESULT_FROM_WIN32(ERROR_DYNLINK_FROM_INVALID_RING)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DYNLINK_FROM_INVALID_RING"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IOPL_NOT_ENABLED">
            <summary>
             The operating system is not presently configured to run this application.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IOPL_NOT_ENABLED: <c>HRESULT_FROM_WIN32(ERROR_IOPL_NOT_ENABLED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IOPL_NOT_ENABLED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_SEGDPL">
            <summary>
             The operating system cannot run %1.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_SEGDPL: <c>HRESULT_FROM_WIN32(ERROR_INVALID_SEGDPL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_SEGDPL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_AUTODATASEG_EXCEEDS_64k">
            <summary>
             The operating system cannot run this application program.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_AUTODATASEG_EXCEEDS_64k: <c>HRESULT_FROM_WIN32(ERROR_AUTODATASEG_EXCEEDS_64k)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_AUTODATASEG_EXCEEDS_64k"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_RING2SEG_MUST_BE_MOVABLE">
            <summary>
             The code segment cannot be greater than or equal to 64K.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_RING2SEG_MUST_BE_MOVABLE: <c>HRESULT_FROM_WIN32(ERROR_RING2SEG_MUST_BE_MOVABLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_RING2SEG_MUST_BE_MOVABLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_RELOC_CHAIN_XEEDS_SEGLIM">
            <summary>
             The operating system cannot run %1.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_RELOC_CHAIN_XEEDS_SEGLIM: <c>HRESULT_FROM_WIN32(ERROR_RELOC_CHAIN_XEEDS_SEGLIM)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_RELOC_CHAIN_XEEDS_SEGLIM"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INFLOOP_IN_RELOC_CHAIN">
            <summary>
             The operating system cannot run %1.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INFLOOP_IN_RELOC_CHAIN: <c>HRESULT_FROM_WIN32(ERROR_INFLOOP_IN_RELOC_CHAIN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INFLOOP_IN_RELOC_CHAIN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_ENVVAR_NOT_FOUND">
            <summary>
             The system could not find the environment option that was entered.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_ENVVAR_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_ENVVAR_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_ENVVAR_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NO_SIGNAL_SENT">
            <summary>
             No process in the command subtree has a signal handler.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NO_SIGNAL_SENT: <c>HRESULT_FROM_WIN32(ERROR_NO_SIGNAL_SENT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_SIGNAL_SENT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_FILENAME_EXCED_RANGE">
            <summary>
             The filename or extension is too long.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_FILENAME_EXCED_RANGE: <c>HRESULT_FROM_WIN32(ERROR_FILENAME_EXCED_RANGE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_FILENAME_EXCED_RANGE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_RING2_STACK_IN_USE">
            <summary>
             The ring 2 stack is in use.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_RING2_STACK_IN_USE: <c>HRESULT_FROM_WIN32(ERROR_RING2_STACK_IN_USE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_RING2_STACK_IN_USE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_META_EXPANSION_TOO_LONG">
            <summary>
             The global filename characters, * or ?, are entered incorrectly or too many global filename characters are specified.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_META_EXPANSION_TOO_LONG: <c>HRESULT_FROM_WIN32(ERROR_META_EXPANSION_TOO_LONG)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_META_EXPANSION_TOO_LONG"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_SIGNAL_NUMBER">
            <summary>
             The signal being posted is not correct.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_SIGNAL_NUMBER: <c>HRESULT_FROM_WIN32(ERROR_INVALID_SIGNAL_NUMBER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_SIGNAL_NUMBER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_THREAD_1_INACTIVE">
            <summary>
             The signal handler cannot be set.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_THREAD_1_INACTIVE: <c>HRESULT_FROM_WIN32(ERROR_THREAD_1_INACTIVE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_THREAD_1_INACTIVE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_LOCKED">
            <summary>
             The segment is locked and cannot be reallocated.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_LOCKED: <c>HRESULT_FROM_WIN32(ERROR_LOCKED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_LOCKED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_TOO_MANY_MODULES">
            <summary>
             Too many dynamic-link modules are attached to this program or dynamic-link module.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_TOO_MANY_MODULES: <c>HRESULT_FROM_WIN32(ERROR_TOO_MANY_MODULES)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_TOO_MANY_MODULES"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NESTING_NOT_ALLOWED">
            <summary>
             Cannot nest calls to LoadModule.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NESTING_NOT_ALLOWED: <c>HRESULT_FROM_WIN32(ERROR_NESTING_NOT_ALLOWED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NESTING_NOT_ALLOWED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_EXE_MACHINE_TYPE_MISMATCH">
            <summary>
             The image file %1 is valid, but is for a machine type other than the current machine.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_EXE_MACHINE_TYPE_MISMATCH: <c>HRESULT_FROM_WIN32(ERROR_EXE_MACHINE_TYPE_MISMATCH)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_EXE_MACHINE_TYPE_MISMATCH"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_EXE_CANNOT_MODIFY_SIGNED_BINARY">
            <summary>
             The image file %1 is signed, unable to modify.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_EXE_CANNOT_MODIFY_SIGNED_BINARY: <c>HRESULT_FROM_WIN32(ERROR_EXE_CANNOT_MODIFY_SIGNED_BINARY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_EXE_CANNOT_MODIFY_SIGNED_BINARY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY">
            <summary>
             The image file %1 is strong signed, unable to modify.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY: <c>HRESULT_FROM_WIN32(ERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_BAD_PIPE">
            <summary>
             The pipe state is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_BAD_PIPE: <c>HRESULT_FROM_WIN32(ERROR_BAD_PIPE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_PIPE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_PIPE_BUSY">
            <summary>
             All pipe instances are busy.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_PIPE_BUSY: <c>HRESULT_FROM_WIN32(ERROR_PIPE_BUSY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_PIPE_BUSY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NO_DATA">
            <summary>
             The pipe is being closed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NO_DATA: <c>HRESULT_FROM_WIN32(ERROR_NO_DATA)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_DATA"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_PIPE_NOT_CONNECTED">
            <summary>
             No process is on the other end of the pipe.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_PIPE_NOT_CONNECTED: <c>HRESULT_FROM_WIN32(ERROR_PIPE_NOT_CONNECTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_PIPE_NOT_CONNECTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_MORE_DATA">
            <summary>
             More data is available.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_MORE_DATA: <c>HRESULT_FROM_WIN32(ERROR_MORE_DATA)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_MORE_DATA"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_VC_DISCONNECTED">
            <summary>
             The session was canceled.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_VC_DISCONNECTED: <c>HRESULT_FROM_WIN32(ERROR_VC_DISCONNECTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_VC_DISCONNECTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_EA_NAME">
            <summary>
             The specified extended attribute name was invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_EA_NAME: <c>HRESULT_FROM_WIN32(ERROR_INVALID_EA_NAME)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_EA_NAME"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_EA_LIST_INCONSISTENT">
            <summary>
             The extended attributes are inconsistent.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_EA_LIST_INCONSISTENT: <c>HRESULT_FROM_WIN32(ERROR_EA_LIST_INCONSISTENT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_EA_LIST_INCONSISTENT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WAIT_TIMEOUT">
            <summary>
             The wait operation timed out.
            </summary>
            <remarks>An HRESULT from Windows error code WAIT_TIMEOUT: <c>HRESULT_FROM_WIN32(WAIT_TIMEOUT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WAIT_TIMEOUT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NO_MORE_ITEMS">
            <summary>
             No more data is available.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NO_MORE_ITEMS: <c>HRESULT_FROM_WIN32(ERROR_NO_MORE_ITEMS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_MORE_ITEMS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CANNOT_COPY">
            <summary>
             The copy functions cannot be used.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CANNOT_COPY: <c>HRESULT_FROM_WIN32(ERROR_CANNOT_COPY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CANNOT_COPY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DIRECTORY">
            <summary>
             The directory name is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DIRECTORY: <c>HRESULT_FROM_WIN32(ERROR_DIRECTORY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DIRECTORY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_EAS_DIDNT_FIT">
            <summary>
             The extended attributes did not fit in the buffer.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_EAS_DIDNT_FIT: <c>HRESULT_FROM_WIN32(ERROR_EAS_DIDNT_FIT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_EAS_DIDNT_FIT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_EA_FILE_CORRUPT">
            <summary>
             The extended attribute file on the mounted file system is corrupt.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_EA_FILE_CORRUPT: <c>HRESULT_FROM_WIN32(ERROR_EA_FILE_CORRUPT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_EA_FILE_CORRUPT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_EA_TABLE_FULL">
            <summary>
             The extended attribute table file is full.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_EA_TABLE_FULL: <c>HRESULT_FROM_WIN32(ERROR_EA_TABLE_FULL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_EA_TABLE_FULL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_EA_HANDLE">
            <summary>
             The specified extended attribute handle is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_EA_HANDLE: <c>HRESULT_FROM_WIN32(ERROR_INVALID_EA_HANDLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_EA_HANDLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_EAS_NOT_SUPPORTED">
            <summary>
             The mounted file system does not support extended attributes.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_EAS_NOT_SUPPORTED: <c>HRESULT_FROM_WIN32(ERROR_EAS_NOT_SUPPORTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_EAS_NOT_SUPPORTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NOT_OWNER">
            <summary>
             Attempt to release mutex not owned by caller.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NOT_OWNER: <c>HRESULT_FROM_WIN32(ERROR_NOT_OWNER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_OWNER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_TOO_MANY_POSTS">
            <summary>
             Too many posts were made to a semaphore.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_TOO_MANY_POSTS: <c>HRESULT_FROM_WIN32(ERROR_TOO_MANY_POSTS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_TOO_MANY_POSTS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_PARTIAL_COPY">
            <summary>
             Only part of a ReadProcessMemory or WriteProcessMemory request was completed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_PARTIAL_COPY: <c>HRESULT_FROM_WIN32(ERROR_PARTIAL_COPY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_PARTIAL_COPY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_OPLOCK_NOT_GRANTED">
            <summary>
             The oplock request is denied.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_OPLOCK_NOT_GRANTED: <c>HRESULT_FROM_WIN32(ERROR_OPLOCK_NOT_GRANTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_OPLOCK_NOT_GRANTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_OPLOCK_PROTOCOL">
            <summary>
             An invalid oplock acknowledgment was received by the system.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_OPLOCK_PROTOCOL: <c>HRESULT_FROM_WIN32(ERROR_INVALID_OPLOCK_PROTOCOL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_OPLOCK_PROTOCOL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DISK_TOO_FRAGMENTED">
            <summary>
             The volume is too fragmented to complete this operation.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DISK_TOO_FRAGMENTED: <c>HRESULT_FROM_WIN32(ERROR_DISK_TOO_FRAGMENTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DISK_TOO_FRAGMENTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DELETE_PENDING">
            <summary>
             The file cannot be opened because it is in the process of being deleted.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DELETE_PENDING: <c>HRESULT_FROM_WIN32(ERROR_DELETE_PENDING)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DELETE_PENDING"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_MR_MID_NOT_FOUND">
            <summary>
             The system cannot find message text for message number 0x%1 in the message file for %2.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_MR_MID_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_MR_MID_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_MR_MID_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SCOPE_NOT_FOUND">
            <summary>
             The scope specified was not found.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SCOPE_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_SCOPE_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SCOPE_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_ADDRESS">
            <summary>
             Attempt to access invalid address.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_ADDRESS: <c>HRESULT_FROM_WIN32(ERROR_INVALID_ADDRESS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_ADDRESS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_ARITHMETIC_OVERFLOW">
            <summary>
             Arithmetic result exceeded 32 bits.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_ARITHMETIC_OVERFLOW: <c>HRESULT_FROM_WIN32(ERROR_ARITHMETIC_OVERFLOW)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_ARITHMETIC_OVERFLOW"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_PIPE_CONNECTED">
            <summary>
             There is a process on other end of the pipe.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_PIPE_CONNECTED: <c>HRESULT_FROM_WIN32(ERROR_PIPE_CONNECTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_PIPE_CONNECTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_PIPE_LISTENING">
            <summary>
             Waiting for a process to open the other end of the pipe.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_PIPE_LISTENING: <c>HRESULT_FROM_WIN32(ERROR_PIPE_LISTENING)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_PIPE_LISTENING"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_EA_ACCESS_DENIED">
            <summary>
             Access to the extended attribute was denied.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_EA_ACCESS_DENIED: <c>HRESULT_FROM_WIN32(ERROR_EA_ACCESS_DENIED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_EA_ACCESS_DENIED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_OPERATION_ABORTED">
            <summary>
             The I/O operation has been aborted because of either a thread exit or an application request.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_OPERATION_ABORTED: <c>HRESULT_FROM_WIN32(ERROR_OPERATION_ABORTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_OPERATION_ABORTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IO_INCOMPLETE">
            <summary>
             Overlapped I/O event is not in a signaled state.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IO_INCOMPLETE: <c>HRESULT_FROM_WIN32(ERROR_IO_INCOMPLETE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IO_INCOMPLETE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IO_PENDING">
            <summary>
             Overlapped I/O operation is in progress.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IO_PENDING: <c>HRESULT_FROM_WIN32(ERROR_IO_PENDING)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IO_PENDING"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NOACCESS">
            <summary>
             Invalid access to memory location.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NOACCESS: <c>HRESULT_FROM_WIN32(ERROR_NOACCESS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NOACCESS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SWAPERROR">
            <summary>
             Error performing inpage operation.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SWAPERROR: <c>HRESULT_FROM_WIN32(ERROR_SWAPERROR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SWAPERROR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_STACK_OVERFLOW">
            <summary>
             Recursion too deep; the stack overflowed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_STACK_OVERFLOW: <c>HRESULT_FROM_WIN32(ERROR_STACK_OVERFLOW)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_STACK_OVERFLOW"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_MESSAGE">
            <summary>
             The window cannot act on the sent message.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_MESSAGE: <c>HRESULT_FROM_WIN32(ERROR_INVALID_MESSAGE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_MESSAGE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CAN_NOT_COMPLETE">
            <summary>
             Cannot complete this function.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CAN_NOT_COMPLETE: <c>HRESULT_FROM_WIN32(ERROR_CAN_NOT_COMPLETE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CAN_NOT_COMPLETE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_FLAGS">
            <summary>
             Invalid flags.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_FLAGS: <c>HRESULT_FROM_WIN32(ERROR_INVALID_FLAGS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_FLAGS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_UNRECOGNIZED_VOLUME">
            <summary>
             The volume does not contain a recognized file system.
             Please make sure that all required file system drivers are loaded and that the volume is not corrupted.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_UNRECOGNIZED_VOLUME: <c>HRESULT_FROM_WIN32(ERROR_UNRECOGNIZED_VOLUME)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_UNRECOGNIZED_VOLUME"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_FILE_INVALID">
            <summary>
             The volume for a file has been externally altered so that the opened file is no longer valid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_FILE_INVALID: <c>HRESULT_FROM_WIN32(ERROR_FILE_INVALID)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_FILE_INVALID"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_FULLSCREEN_MODE">
            <summary>
             The requested operation cannot be performed in full-screen mode.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_FULLSCREEN_MODE: <c>HRESULT_FROM_WIN32(ERROR_FULLSCREEN_MODE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_FULLSCREEN_MODE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NO_TOKEN">
            <summary>
             An attempt was made to reference a token that does not exist.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NO_TOKEN: <c>HRESULT_FROM_WIN32(ERROR_NO_TOKEN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_TOKEN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_BADDB">
            <summary>
             The configuration registry database is corrupt.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_BADDB: <c>HRESULT_FROM_WIN32(ERROR_BADDB)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_BADDB"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_BADKEY">
            <summary>
             The configuration registry key is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_BADKEY: <c>HRESULT_FROM_WIN32(ERROR_BADKEY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_BADKEY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CANTOPEN">
            <summary>
             The configuration registry key could not be opened.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CANTOPEN: <c>HRESULT_FROM_WIN32(ERROR_CANTOPEN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CANTOPEN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CANTREAD">
            <summary>
             The configuration registry key could not be read.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CANTREAD: <c>HRESULT_FROM_WIN32(ERROR_CANTREAD)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CANTREAD"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CANTWRITE">
            <summary>
             The configuration registry key could not be written.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CANTWRITE: <c>HRESULT_FROM_WIN32(ERROR_CANTWRITE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CANTWRITE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_REGISTRY_RECOVERED">
            <summary>
             One of the files in the registry database had to be recovered by use of a log or alternate copy. The recovery was successful.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_REGISTRY_RECOVERED: <c>HRESULT_FROM_WIN32(ERROR_REGISTRY_RECOVERED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_REGISTRY_RECOVERED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_REGISTRY_CORRUPT">
            <summary>
             The registry is corrupted. The structure of one of the files containing registry data is corrupted, or the system's memory image of the file is corrupted, or the file could not be recovered because the alternate copy or log was absent or corrupted.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_REGISTRY_CORRUPT: <c>HRESULT_FROM_WIN32(ERROR_REGISTRY_CORRUPT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_REGISTRY_CORRUPT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_REGISTRY_IO_FAILED">
            <summary>
             An I/O operation initiated by the registry failed unrecoverably. The registry could not read in, or write out, or flush, one of the files that contain the system's image of the registry.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_REGISTRY_IO_FAILED: <c>HRESULT_FROM_WIN32(ERROR_REGISTRY_IO_FAILED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_REGISTRY_IO_FAILED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NOT_REGISTRY_FILE">
            <summary>
             The system has attempted to load or restore a file into the registry, but the specified file is not in a registry file format.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NOT_REGISTRY_FILE: <c>HRESULT_FROM_WIN32(ERROR_NOT_REGISTRY_FILE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_REGISTRY_FILE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_KEY_DELETED">
            <summary>
             Illegal operation attempted on a registry key that has been marked for deletion.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_KEY_DELETED: <c>HRESULT_FROM_WIN32(ERROR_KEY_DELETED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_KEY_DELETED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NO_LOG_SPACE">
            <summary>
             System could not allocate the required space in a registry log.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NO_LOG_SPACE: <c>HRESULT_FROM_WIN32(ERROR_NO_LOG_SPACE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_LOG_SPACE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_KEY_HAS_CHILDREN">
            <summary>
             Cannot create a symbolic link in a registry key that already has subkeys or values.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_KEY_HAS_CHILDREN: <c>HRESULT_FROM_WIN32(ERROR_KEY_HAS_CHILDREN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_KEY_HAS_CHILDREN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CHILD_MUST_BE_VOLATILE">
            <summary>
             Cannot create a stable subkey under a volatile parent key.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CHILD_MUST_BE_VOLATILE: <c>HRESULT_FROM_WIN32(ERROR_CHILD_MUST_BE_VOLATILE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CHILD_MUST_BE_VOLATILE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NOTIFY_ENUM_DIR">
            <summary>
             A notify change request is being completed and the information is not being returned in the caller's buffer. The caller now needs to enumerate the files to find the changes.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NOTIFY_ENUM_DIR: <c>HRESULT_FROM_WIN32(ERROR_NOTIFY_ENUM_DIR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NOTIFY_ENUM_DIR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DEPENDENT_SERVICES_RUNNING">
            <summary>
             A stop control has been sent to a service that other running services are dependent on.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DEPENDENT_SERVICES_RUNNING: <c>HRESULT_FROM_WIN32(ERROR_DEPENDENT_SERVICES_RUNNING)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DEPENDENT_SERVICES_RUNNING"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_SERVICE_CONTROL">
            <summary>
             The requested control is not valid for this service.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_SERVICE_CONTROL: <c>HRESULT_FROM_WIN32(ERROR_INVALID_SERVICE_CONTROL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_SERVICE_CONTROL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SERVICE_REQUEST_TIMEOUT">
            <summary>
             The service did not respond to the start or control request in a timely fashion.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SERVICE_REQUEST_TIMEOUT: <c>HRESULT_FROM_WIN32(ERROR_SERVICE_REQUEST_TIMEOUT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SERVICE_REQUEST_TIMEOUT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SERVICE_NO_THREAD">
            <summary>
             A thread could not be created for the service.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SERVICE_NO_THREAD: <c>HRESULT_FROM_WIN32(ERROR_SERVICE_NO_THREAD)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SERVICE_NO_THREAD"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SERVICE_DATABASE_LOCKED">
            <summary>
             The service database is locked.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SERVICE_DATABASE_LOCKED: <c>HRESULT_FROM_WIN32(ERROR_SERVICE_DATABASE_LOCKED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SERVICE_DATABASE_LOCKED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SERVICE_ALREADY_RUNNING">
            <summary>
             An instance of the service is already running.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SERVICE_ALREADY_RUNNING: <c>HRESULT_FROM_WIN32(ERROR_SERVICE_ALREADY_RUNNING)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SERVICE_ALREADY_RUNNING"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_SERVICE_ACCOUNT">
            <summary>
             The account name is invalid or does not exist, or the password is invalid for the account name specified.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_SERVICE_ACCOUNT: <c>HRESULT_FROM_WIN32(ERROR_INVALID_SERVICE_ACCOUNT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_SERVICE_ACCOUNT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SERVICE_DISABLED">
            <summary>
             The service cannot be started, either because it is disabled or because it has no enabled devices associated with it.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SERVICE_DISABLED: <c>HRESULT_FROM_WIN32(ERROR_SERVICE_DISABLED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SERVICE_DISABLED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CIRCULAR_DEPENDENCY">
            <summary>
             Circular service dependency was specified.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CIRCULAR_DEPENDENCY: <c>HRESULT_FROM_WIN32(ERROR_CIRCULAR_DEPENDENCY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CIRCULAR_DEPENDENCY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SERVICE_DOES_NOT_EXIST">
            <summary>
             The specified service does not exist as an installed service.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SERVICE_DOES_NOT_EXIST: <c>HRESULT_FROM_WIN32(ERROR_SERVICE_DOES_NOT_EXIST)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SERVICE_DOES_NOT_EXIST"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SERVICE_CANNOT_ACCEPT_CTRL">
            <summary>
             The service cannot accept control messages at this time.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SERVICE_CANNOT_ACCEPT_CTRL: <c>HRESULT_FROM_WIN32(ERROR_SERVICE_CANNOT_ACCEPT_CTRL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SERVICE_CANNOT_ACCEPT_CTRL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SERVICE_NOT_ACTIVE">
            <summary>
             The service has not been started.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SERVICE_NOT_ACTIVE: <c>HRESULT_FROM_WIN32(ERROR_SERVICE_NOT_ACTIVE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SERVICE_NOT_ACTIVE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_FAILED_SERVICE_CONTROLLER_CONNECT">
            <summary>
             The service process could not connect to the service controller.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_FAILED_SERVICE_CONTROLLER_CONNECT: <c>HRESULT_FROM_WIN32(ERROR_FAILED_SERVICE_CONTROLLER_CONNECT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_FAILED_SERVICE_CONTROLLER_CONNECT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_EXCEPTION_IN_SERVICE">
            <summary>
             An exception occurred in the service when handling the control request.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_EXCEPTION_IN_SERVICE: <c>HRESULT_FROM_WIN32(ERROR_EXCEPTION_IN_SERVICE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_EXCEPTION_IN_SERVICE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DATABASE_DOES_NOT_EXIST">
            <summary>
             The database specified does not exist.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DATABASE_DOES_NOT_EXIST: <c>HRESULT_FROM_WIN32(ERROR_DATABASE_DOES_NOT_EXIST)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DATABASE_DOES_NOT_EXIST"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SERVICE_SPECIFIC_ERROR">
            <summary>
             The service has returned a service-specific error code.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SERVICE_SPECIFIC_ERROR: <c>HRESULT_FROM_WIN32(ERROR_SERVICE_SPECIFIC_ERROR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SERVICE_SPECIFIC_ERROR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_PROCESS_ABORTED">
            <summary>
             The process terminated unexpectedly.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_PROCESS_ABORTED: <c>HRESULT_FROM_WIN32(ERROR_PROCESS_ABORTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_PROCESS_ABORTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SERVICE_DEPENDENCY_FAIL">
            <summary>
             The dependency service or group failed to start.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SERVICE_DEPENDENCY_FAIL: <c>HRESULT_FROM_WIN32(ERROR_SERVICE_DEPENDENCY_FAIL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SERVICE_DEPENDENCY_FAIL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SERVICE_LOGON_FAILED">
            <summary>
             The service did not start due to a logon failure.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SERVICE_LOGON_FAILED: <c>HRESULT_FROM_WIN32(ERROR_SERVICE_LOGON_FAILED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SERVICE_LOGON_FAILED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SERVICE_START_HANG">
            <summary>
             After starting, the service hung in a start-pending state.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SERVICE_START_HANG: <c>HRESULT_FROM_WIN32(ERROR_SERVICE_START_HANG)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SERVICE_START_HANG"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_SERVICE_LOCK">
            <summary>
             The specified service database lock is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_SERVICE_LOCK: <c>HRESULT_FROM_WIN32(ERROR_INVALID_SERVICE_LOCK)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_SERVICE_LOCK"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SERVICE_MARKED_FOR_DELETE">
            <summary>
             The specified service has been marked for deletion.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SERVICE_MARKED_FOR_DELETE: <c>HRESULT_FROM_WIN32(ERROR_SERVICE_MARKED_FOR_DELETE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SERVICE_MARKED_FOR_DELETE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SERVICE_EXISTS">
            <summary>
             The specified service already exists.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SERVICE_EXISTS: <c>HRESULT_FROM_WIN32(ERROR_SERVICE_EXISTS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SERVICE_EXISTS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_ALREADY_RUNNING_LKG">
            <summary>
             The system is currently running with the last-known-good configuration.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_ALREADY_RUNNING_LKG: <c>HRESULT_FROM_WIN32(ERROR_ALREADY_RUNNING_LKG)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_ALREADY_RUNNING_LKG"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SERVICE_DEPENDENCY_DELETED">
            <summary>
             The dependency service does not exist or has been marked for deletion.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SERVICE_DEPENDENCY_DELETED: <c>HRESULT_FROM_WIN32(ERROR_SERVICE_DEPENDENCY_DELETED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SERVICE_DEPENDENCY_DELETED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_BOOT_ALREADY_ACCEPTED">
            <summary>
             The current boot has already been accepted for use as the last-known-good control set.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_BOOT_ALREADY_ACCEPTED: <c>HRESULT_FROM_WIN32(ERROR_BOOT_ALREADY_ACCEPTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_BOOT_ALREADY_ACCEPTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SERVICE_NEVER_STARTED">
            <summary>
             No attempts to start the service have been made since the last boot.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SERVICE_NEVER_STARTED: <c>HRESULT_FROM_WIN32(ERROR_SERVICE_NEVER_STARTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SERVICE_NEVER_STARTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DUPLICATE_SERVICE_NAME">
            <summary>
             The name is already in use as either a service name or a service display name.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DUPLICATE_SERVICE_NAME: <c>HRESULT_FROM_WIN32(ERROR_DUPLICATE_SERVICE_NAME)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DUPLICATE_SERVICE_NAME"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DIFFERENT_SERVICE_ACCOUNT">
            <summary>
             The account specified for this service is different from the account specified for other services running in the same process.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DIFFERENT_SERVICE_ACCOUNT: <c>HRESULT_FROM_WIN32(ERROR_DIFFERENT_SERVICE_ACCOUNT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DIFFERENT_SERVICE_ACCOUNT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CANNOT_DETECT_DRIVER_FAILURE">
            <summary>
             Failure actions can only be set for Win32 services, not for drivers.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CANNOT_DETECT_DRIVER_FAILURE: <c>HRESULT_FROM_WIN32(ERROR_CANNOT_DETECT_DRIVER_FAILURE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CANNOT_DETECT_DRIVER_FAILURE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CANNOT_DETECT_PROCESS_ABORT">
            <summary>
             This service runs in the same process as the service control manager.
             Therefore, the service control manager cannot take action if this service's process terminates unexpectedly.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CANNOT_DETECT_PROCESS_ABORT: <c>HRESULT_FROM_WIN32(ERROR_CANNOT_DETECT_PROCESS_ABORT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CANNOT_DETECT_PROCESS_ABORT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NO_RECOVERY_PROGRAM">
            <summary>
             No recovery program has been configured for this service.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NO_RECOVERY_PROGRAM: <c>HRESULT_FROM_WIN32(ERROR_NO_RECOVERY_PROGRAM)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_RECOVERY_PROGRAM"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SERVICE_NOT_IN_EXE">
            <summary>
             The executable program that this service is configured to run in does not implement the service.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SERVICE_NOT_IN_EXE: <c>HRESULT_FROM_WIN32(ERROR_SERVICE_NOT_IN_EXE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SERVICE_NOT_IN_EXE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NOT_SAFEBOOT_SERVICE">
            <summary>
             This service cannot be started in Safe Mode
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NOT_SAFEBOOT_SERVICE: <c>HRESULT_FROM_WIN32(ERROR_NOT_SAFEBOOT_SERVICE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_SAFEBOOT_SERVICE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_END_OF_MEDIA">
            <summary>
             The physical end of the tape has been reached.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_END_OF_MEDIA: <c>HRESULT_FROM_WIN32(ERROR_END_OF_MEDIA)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_END_OF_MEDIA"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_FILEMARK_DETECTED">
            <summary>
             A tape access reached a filemark.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_FILEMARK_DETECTED: <c>HRESULT_FROM_WIN32(ERROR_FILEMARK_DETECTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_FILEMARK_DETECTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_BEGINNING_OF_MEDIA">
            <summary>
             The beginning of the tape or a partition was encountered.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_BEGINNING_OF_MEDIA: <c>HRESULT_FROM_WIN32(ERROR_BEGINNING_OF_MEDIA)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_BEGINNING_OF_MEDIA"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SETMARK_DETECTED">
            <summary>
             A tape access reached the end of a set of files.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SETMARK_DETECTED: <c>HRESULT_FROM_WIN32(ERROR_SETMARK_DETECTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SETMARK_DETECTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NO_DATA_DETECTED">
            <summary>
             No more data is on the tape.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NO_DATA_DETECTED: <c>HRESULT_FROM_WIN32(ERROR_NO_DATA_DETECTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_DATA_DETECTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_PARTITION_FAILURE">
            <summary>
             Tape could not be partitioned.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_PARTITION_FAILURE: <c>HRESULT_FROM_WIN32(ERROR_PARTITION_FAILURE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_PARTITION_FAILURE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_BLOCK_LENGTH">
            <summary>
             When accessing a new tape of a multivolume partition, the current block size is incorrect.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_BLOCK_LENGTH: <c>HRESULT_FROM_WIN32(ERROR_INVALID_BLOCK_LENGTH)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_BLOCK_LENGTH"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DEVICE_NOT_PARTITIONED">
            <summary>
             Tape partition information could not be found when loading a tape.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DEVICE_NOT_PARTITIONED: <c>HRESULT_FROM_WIN32(ERROR_DEVICE_NOT_PARTITIONED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DEVICE_NOT_PARTITIONED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_UNABLE_TO_LOCK_MEDIA">
            <summary>
             Unable to lock the media eject mechanism.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_UNABLE_TO_LOCK_MEDIA: <c>HRESULT_FROM_WIN32(ERROR_UNABLE_TO_LOCK_MEDIA)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_UNABLE_TO_LOCK_MEDIA"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_UNABLE_TO_UNLOAD_MEDIA">
            <summary>
             Unable to unload the media.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_UNABLE_TO_UNLOAD_MEDIA: <c>HRESULT_FROM_WIN32(ERROR_UNABLE_TO_UNLOAD_MEDIA)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_UNABLE_TO_UNLOAD_MEDIA"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_MEDIA_CHANGED">
            <summary>
             The media in the drive may have changed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_MEDIA_CHANGED: <c>HRESULT_FROM_WIN32(ERROR_MEDIA_CHANGED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_MEDIA_CHANGED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_BUS_RESET">
            <summary>
             The I/O bus was reset.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_BUS_RESET: <c>HRESULT_FROM_WIN32(ERROR_BUS_RESET)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_BUS_RESET"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NO_MEDIA_IN_DRIVE">
            <summary>
             No media in drive.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NO_MEDIA_IN_DRIVE: <c>HRESULT_FROM_WIN32(ERROR_NO_MEDIA_IN_DRIVE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_MEDIA_IN_DRIVE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NO_UNICODE_TRANSLATION">
            <summary>
             No mapping for the Unicode character exists in the target multi-byte code page.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NO_UNICODE_TRANSLATION: <c>HRESULT_FROM_WIN32(ERROR_NO_UNICODE_TRANSLATION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_UNICODE_TRANSLATION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DLL_INIT_FAILED">
            <summary>
             A dynamic link library (DLL) initialization routine failed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DLL_INIT_FAILED: <c>HRESULT_FROM_WIN32(ERROR_DLL_INIT_FAILED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DLL_INIT_FAILED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SHUTDOWN_IN_PROGRESS">
            <summary>
             A system shutdown is in progress.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SHUTDOWN_IN_PROGRESS: <c>HRESULT_FROM_WIN32(ERROR_SHUTDOWN_IN_PROGRESS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SHUTDOWN_IN_PROGRESS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NO_SHUTDOWN_IN_PROGRESS">
            <summary>
             Unable to abort the system shutdown because no shutdown was in progress.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NO_SHUTDOWN_IN_PROGRESS: <c>HRESULT_FROM_WIN32(ERROR_NO_SHUTDOWN_IN_PROGRESS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_SHUTDOWN_IN_PROGRESS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IO_DEVICE">
            <summary>
             The request could not be performed because of an I/O device error.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IO_DEVICE: <c>HRESULT_FROM_WIN32(ERROR_IO_DEVICE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IO_DEVICE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SERIAL_NO_DEVICE">
            <summary>
             No serial device was successfully initialized. The serial driver will unload.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SERIAL_NO_DEVICE: <c>HRESULT_FROM_WIN32(ERROR_SERIAL_NO_DEVICE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SERIAL_NO_DEVICE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IRQ_BUSY">
            <summary>
             Unable to open a device that was sharing an interrupt request (IRQ) with other devices. At least one other device that uses that IRQ was already opened.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IRQ_BUSY: <c>HRESULT_FROM_WIN32(ERROR_IRQ_BUSY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IRQ_BUSY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_MORE_WRITES">
            <summary>
             A serial I/O operation was completed by another write to the serial port.
             (The IOCTL_SERIAL_XOFF_COUNTER reached zero.)
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_MORE_WRITES: <c>HRESULT_FROM_WIN32(ERROR_MORE_WRITES)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_MORE_WRITES"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_COUNTER_TIMEOUT">
            <summary>
             A serial I/O operation completed because the timeout period expired.
             (The IOCTL_SERIAL_XOFF_COUNTER did not reach zero.)
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_COUNTER_TIMEOUT: <c>HRESULT_FROM_WIN32(ERROR_COUNTER_TIMEOUT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_COUNTER_TIMEOUT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_FLOPPY_ID_MARK_NOT_FOUND">
            <summary>
             No ID address mark was found on the floppy disk.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_FLOPPY_ID_MARK_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_FLOPPY_ID_MARK_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_FLOPPY_ID_MARK_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_FLOPPY_WRONG_CYLINDER">
            <summary>
             Mismatch between the floppy disk sector ID field and the floppy disk controller track address.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_FLOPPY_WRONG_CYLINDER: <c>HRESULT_FROM_WIN32(ERROR_FLOPPY_WRONG_CYLINDER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_FLOPPY_WRONG_CYLINDER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_FLOPPY_UNKNOWN_ERROR">
            <summary>
             The floppy disk controller reported an error that is not recognized by the floppy disk driver.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_FLOPPY_UNKNOWN_ERROR: <c>HRESULT_FROM_WIN32(ERROR_FLOPPY_UNKNOWN_ERROR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_FLOPPY_UNKNOWN_ERROR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_FLOPPY_BAD_REGISTERS">
            <summary>
             The floppy disk controller returned inconsistent results in its registers.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_FLOPPY_BAD_REGISTERS: <c>HRESULT_FROM_WIN32(ERROR_FLOPPY_BAD_REGISTERS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_FLOPPY_BAD_REGISTERS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DISK_RECALIBRATE_FAILED">
            <summary>
             While accessing the hard disk, a recalibrate operation failed, even after retries.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DISK_RECALIBRATE_FAILED: <c>HRESULT_FROM_WIN32(ERROR_DISK_RECALIBRATE_FAILED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DISK_RECALIBRATE_FAILED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DISK_OPERATION_FAILED">
            <summary>
             While accessing the hard disk, a disk operation failed even after retries.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DISK_OPERATION_FAILED: <c>HRESULT_FROM_WIN32(ERROR_DISK_OPERATION_FAILED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DISK_OPERATION_FAILED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DISK_RESET_FAILED">
            <summary>
             While accessing the hard disk, a disk controller reset was needed, but even that failed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DISK_RESET_FAILED: <c>HRESULT_FROM_WIN32(ERROR_DISK_RESET_FAILED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DISK_RESET_FAILED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_EOM_OVERFLOW">
            <summary>
             Physical end of tape encountered.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_EOM_OVERFLOW: <c>HRESULT_FROM_WIN32(ERROR_EOM_OVERFLOW)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_EOM_OVERFLOW"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NOT_ENOUGH_SERVER_MEMORY">
            <summary>
             Not enough server storage is available to process this command.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NOT_ENOUGH_SERVER_MEMORY: <c>HRESULT_FROM_WIN32(ERROR_NOT_ENOUGH_SERVER_MEMORY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_ENOUGH_SERVER_MEMORY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_POSSIBLE_DEADLOCK">
            <summary>
             A potential deadlock condition has been detected.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_POSSIBLE_DEADLOCK: <c>HRESULT_FROM_WIN32(ERROR_POSSIBLE_DEADLOCK)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_POSSIBLE_DEADLOCK"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_MAPPED_ALIGNMENT">
            <summary>
             The base address or the file offset specified does not have the proper alignment.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_MAPPED_ALIGNMENT: <c>HRESULT_FROM_WIN32(ERROR_MAPPED_ALIGNMENT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_MAPPED_ALIGNMENT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SET_POWER_STATE_VETOED">
            <summary>
             An attempt to change the system power state was vetoed by another application or driver.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SET_POWER_STATE_VETOED: <c>HRESULT_FROM_WIN32(ERROR_SET_POWER_STATE_VETOED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SET_POWER_STATE_VETOED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SET_POWER_STATE_FAILED">
            <summary>
             The system BIOS failed an attempt to change the system power state.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SET_POWER_STATE_FAILED: <c>HRESULT_FROM_WIN32(ERROR_SET_POWER_STATE_FAILED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SET_POWER_STATE_FAILED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_TOO_MANY_LINKS">
            <summary>
             An attempt was made to create more links on a file than the file system supports.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_TOO_MANY_LINKS: <c>HRESULT_FROM_WIN32(ERROR_TOO_MANY_LINKS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_TOO_MANY_LINKS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_OLD_WIN_VERSION">
            <summary>
             The specified program requires a newer version of Windows.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_OLD_WIN_VERSION: <c>HRESULT_FROM_WIN32(ERROR_OLD_WIN_VERSION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_OLD_WIN_VERSION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_APP_WRONG_OS">
            <summary>
             The specified program is not a Windows or MS-DOS program.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_APP_WRONG_OS: <c>HRESULT_FROM_WIN32(ERROR_APP_WRONG_OS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_APP_WRONG_OS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SINGLE_INSTANCE_APP">
            <summary>
             Cannot start more than one instance of the specified program.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SINGLE_INSTANCE_APP: <c>HRESULT_FROM_WIN32(ERROR_SINGLE_INSTANCE_APP)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SINGLE_INSTANCE_APP"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_RMODE_APP">
            <summary>
             The specified program was written for an earlier version of Windows.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_RMODE_APP: <c>HRESULT_FROM_WIN32(ERROR_RMODE_APP)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_RMODE_APP"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_DLL">
            <summary>
             One of the library files needed to run this application is damaged.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_DLL: <c>HRESULT_FROM_WIN32(ERROR_INVALID_DLL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_DLL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NO_ASSOCIATION">
            <summary>
             No application is associated with the specified file for this operation.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NO_ASSOCIATION: <c>HRESULT_FROM_WIN32(ERROR_NO_ASSOCIATION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_ASSOCIATION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DDE_FAIL">
            <summary>
             An error occurred in sending the command to the application.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DDE_FAIL: <c>HRESULT_FROM_WIN32(ERROR_DDE_FAIL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DDE_FAIL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DLL_NOT_FOUND">
            <summary>
             One of the library files needed to run this application cannot be found.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DLL_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_DLL_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DLL_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NO_MORE_USER_HANDLES">
            <summary>
             The current process has used all of its system allowance of handles for Window Manager objects.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NO_MORE_USER_HANDLES: <c>HRESULT_FROM_WIN32(ERROR_NO_MORE_USER_HANDLES)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_MORE_USER_HANDLES"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_MESSAGE_SYNC_ONLY">
            <summary>
             The message can be used only with synchronous operations.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_MESSAGE_SYNC_ONLY: <c>HRESULT_FROM_WIN32(ERROR_MESSAGE_SYNC_ONLY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_MESSAGE_SYNC_ONLY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SOURCE_ELEMENT_EMPTY">
            <summary>
             The indicated source element has no media.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SOURCE_ELEMENT_EMPTY: <c>HRESULT_FROM_WIN32(ERROR_SOURCE_ELEMENT_EMPTY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SOURCE_ELEMENT_EMPTY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DESTINATION_ELEMENT_FULL">
            <summary>
             The indicated destination element already contains media.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DESTINATION_ELEMENT_FULL: <c>HRESULT_FROM_WIN32(ERROR_DESTINATION_ELEMENT_FULL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DESTINATION_ELEMENT_FULL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_ILLEGAL_ELEMENT_ADDRESS">
            <summary>
             The indicated element does not exist.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_ILLEGAL_ELEMENT_ADDRESS: <c>HRESULT_FROM_WIN32(ERROR_ILLEGAL_ELEMENT_ADDRESS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_ILLEGAL_ELEMENT_ADDRESS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_MAGAZINE_NOT_PRESENT">
            <summary>
             The indicated element is part of a magazine that is not present.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_MAGAZINE_NOT_PRESENT: <c>HRESULT_FROM_WIN32(ERROR_MAGAZINE_NOT_PRESENT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_MAGAZINE_NOT_PRESENT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DEVICE_REINITIALIZATION_NEEDED">
            <summary>
             The indicated device requires reinitialization due to hardware errors.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DEVICE_REINITIALIZATION_NEEDED: <c>HRESULT_FROM_WIN32(ERROR_DEVICE_REINITIALIZATION_NEEDED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DEVICE_REINITIALIZATION_NEEDED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DEVICE_REQUIRES_CLEANING">
            <summary>
             The device has indicated that cleaning is required before further operations are attempted.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DEVICE_REQUIRES_CLEANING: <c>HRESULT_FROM_WIN32(ERROR_DEVICE_REQUIRES_CLEANING)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DEVICE_REQUIRES_CLEANING"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DEVICE_DOOR_OPEN">
            <summary>
             The device has indicated that its door is open.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DEVICE_DOOR_OPEN: <c>HRESULT_FROM_WIN32(ERROR_DEVICE_DOOR_OPEN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DEVICE_DOOR_OPEN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DEVICE_NOT_CONNECTED">
            <summary>
             The device is not connected.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DEVICE_NOT_CONNECTED: <c>HRESULT_FROM_WIN32(ERROR_DEVICE_NOT_CONNECTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DEVICE_NOT_CONNECTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NOT_FOUND">
            <summary>
             Element not found.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NO_MATCH">
            <summary>
             There was no match for the specified key in the index.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NO_MATCH: <c>HRESULT_FROM_WIN32(ERROR_NO_MATCH)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_MATCH"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SET_NOT_FOUND">
            <summary>
             The property set specified does not exist on the object.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SET_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_SET_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SET_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_POINT_NOT_FOUND">
            <summary>
             The point passed to GetMouseMovePoints is not in the buffer.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_POINT_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_POINT_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_POINT_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NO_TRACKING_SERVICE">
            <summary>
             The tracking (workstation) service is not running.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NO_TRACKING_SERVICE: <c>HRESULT_FROM_WIN32(ERROR_NO_TRACKING_SERVICE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_TRACKING_SERVICE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NO_VOLUME_ID">
            <summary>
             The Volume ID could not be found.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NO_VOLUME_ID: <c>HRESULT_FROM_WIN32(ERROR_NO_VOLUME_ID)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_VOLUME_ID"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_UNABLE_TO_REMOVE_REPLACED">
            <summary>
             Unable to remove the file to be replaced.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_UNABLE_TO_REMOVE_REPLACED: <c>HRESULT_FROM_WIN32(ERROR_UNABLE_TO_REMOVE_REPLACED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_UNABLE_TO_REMOVE_REPLACED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_UNABLE_TO_MOVE_REPLACEMENT">
            <summary>
             Unable to move the replacement file to the file to be replaced. The file to be replaced has retained its original name.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_UNABLE_TO_MOVE_REPLACEMENT: <c>HRESULT_FROM_WIN32(ERROR_UNABLE_TO_MOVE_REPLACEMENT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_UNABLE_TO_MOVE_REPLACEMENT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_UNABLE_TO_MOVE_REPLACEMENT_2">
            <summary>
             Unable to move the replacement file to the file to be replaced. The file to be replaced has been renamed using the backup name.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_UNABLE_TO_MOVE_REPLACEMENT_2: <c>HRESULT_FROM_WIN32(ERROR_UNABLE_TO_MOVE_REPLACEMENT_2)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_UNABLE_TO_MOVE_REPLACEMENT_2"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_JOURNAL_DELETE_IN_PROGRESS">
            <summary>
             The volume change journal is being deleted.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_JOURNAL_DELETE_IN_PROGRESS: <c>HRESULT_FROM_WIN32(ERROR_JOURNAL_DELETE_IN_PROGRESS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_JOURNAL_DELETE_IN_PROGRESS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_JOURNAL_NOT_ACTIVE">
            <summary>
             The volume change journal is not active.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_JOURNAL_NOT_ACTIVE: <c>HRESULT_FROM_WIN32(ERROR_JOURNAL_NOT_ACTIVE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_JOURNAL_NOT_ACTIVE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_POTENTIAL_FILE_FOUND">
            <summary>
             A file was found, but it may not be the correct file.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_POTENTIAL_FILE_FOUND: <c>HRESULT_FROM_WIN32(ERROR_POTENTIAL_FILE_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_POTENTIAL_FILE_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_JOURNAL_ENTRY_DELETED">
            <summary>
             The journal entry has been deleted from the journal.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_JOURNAL_ENTRY_DELETED: <c>HRESULT_FROM_WIN32(ERROR_JOURNAL_ENTRY_DELETED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_JOURNAL_ENTRY_DELETED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_BAD_DEVICE">
            <summary>
             The specified device name is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_BAD_DEVICE: <c>HRESULT_FROM_WIN32(ERROR_BAD_DEVICE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_DEVICE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CONNECTION_UNAVAIL">
            <summary>
             The device is not currently connected but it is a remembered connection.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CONNECTION_UNAVAIL: <c>HRESULT_FROM_WIN32(ERROR_CONNECTION_UNAVAIL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CONNECTION_UNAVAIL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DEVICE_ALREADY_REMEMBERED">
            <summary>
             The local device name has a remembered connection to another network resource.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DEVICE_ALREADY_REMEMBERED: <c>HRESULT_FROM_WIN32(ERROR_DEVICE_ALREADY_REMEMBERED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DEVICE_ALREADY_REMEMBERED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NO_NET_OR_BAD_PATH">
            <summary>
             No network provider accepted the given network path.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NO_NET_OR_BAD_PATH: <c>HRESULT_FROM_WIN32(ERROR_NO_NET_OR_BAD_PATH)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_NET_OR_BAD_PATH"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_BAD_PROVIDER">
            <summary>
             The specified network provider name is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_BAD_PROVIDER: <c>HRESULT_FROM_WIN32(ERROR_BAD_PROVIDER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_PROVIDER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CANNOT_OPEN_PROFILE">
            <summary>
             Unable to open the network connection profile.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CANNOT_OPEN_PROFILE: <c>HRESULT_FROM_WIN32(ERROR_CANNOT_OPEN_PROFILE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CANNOT_OPEN_PROFILE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_BAD_PROFILE">
            <summary>
             The network connection profile is corrupted.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_BAD_PROFILE: <c>HRESULT_FROM_WIN32(ERROR_BAD_PROFILE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_PROFILE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NOT_CONTAINER">
            <summary>
             Cannot enumerate a noncontainer.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NOT_CONTAINER: <c>HRESULT_FROM_WIN32(ERROR_NOT_CONTAINER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_CONTAINER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_EXTENDED_ERROR">
            <summary>
             An extended error has occurred.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_EXTENDED_ERROR: <c>HRESULT_FROM_WIN32(ERROR_EXTENDED_ERROR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_EXTENDED_ERROR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_GROUPNAME">
            <summary>
             The format of the specified group name is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_GROUPNAME: <c>HRESULT_FROM_WIN32(ERROR_INVALID_GROUPNAME)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_GROUPNAME"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_COMPUTERNAME">
            <summary>
             The format of the specified computer name is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_COMPUTERNAME: <c>HRESULT_FROM_WIN32(ERROR_INVALID_COMPUTERNAME)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_COMPUTERNAME"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_EVENTNAME">
            <summary>
             The format of the specified event name is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_EVENTNAME: <c>HRESULT_FROM_WIN32(ERROR_INVALID_EVENTNAME)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_EVENTNAME"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_DOMAINNAME">
            <summary>
             The format of the specified domain name is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_DOMAINNAME: <c>HRESULT_FROM_WIN32(ERROR_INVALID_DOMAINNAME)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_DOMAINNAME"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_SERVICENAME">
            <summary>
             The format of the specified service name is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_SERVICENAME: <c>HRESULT_FROM_WIN32(ERROR_INVALID_SERVICENAME)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_SERVICENAME"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_NETNAME">
            <summary>
             The format of the specified network name is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_NETNAME: <c>HRESULT_FROM_WIN32(ERROR_INVALID_NETNAME)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_NETNAME"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_SHARENAME">
            <summary>
             The format of the specified share name is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_SHARENAME: <c>HRESULT_FROM_WIN32(ERROR_INVALID_SHARENAME)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_SHARENAME"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_PASSWORDNAME">
            <summary>
             The format of the specified password is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_PASSWORDNAME: <c>HRESULT_FROM_WIN32(ERROR_INVALID_PASSWORDNAME)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_PASSWORDNAME"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_MESSAGENAME">
            <summary>
             The format of the specified message name is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_MESSAGENAME: <c>HRESULT_FROM_WIN32(ERROR_INVALID_MESSAGENAME)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_MESSAGENAME"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_MESSAGEDEST">
            <summary>
             The format of the specified message destination is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_MESSAGEDEST: <c>HRESULT_FROM_WIN32(ERROR_INVALID_MESSAGEDEST)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_MESSAGEDEST"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SESSION_CREDENTIAL_CONFLICT">
            <summary>
             Multiple connections to a server or shared resource by the same user, using more than one user name, are not allowed. Disconnect all previous connections to the server or shared resource and try again.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SESSION_CREDENTIAL_CONFLICT: <c>HRESULT_FROM_WIN32(ERROR_SESSION_CREDENTIAL_CONFLICT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SESSION_CREDENTIAL_CONFLICT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_REMOTE_SESSION_LIMIT_EXCEEDED">
            <summary>
             An attempt was made to establish a session to a network server, but there are already too many sessions established to that server.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_REMOTE_SESSION_LIMIT_EXCEEDED: <c>HRESULT_FROM_WIN32(ERROR_REMOTE_SESSION_LIMIT_EXCEEDED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_REMOTE_SESSION_LIMIT_EXCEEDED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DUP_DOMAINNAME">
            <summary>
             The workgroup or domain name is already in use by another computer on the network.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DUP_DOMAINNAME: <c>HRESULT_FROM_WIN32(ERROR_DUP_DOMAINNAME)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DUP_DOMAINNAME"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NO_NETWORK">
            <summary>
             The network is not present or not started.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NO_NETWORK: <c>HRESULT_FROM_WIN32(ERROR_NO_NETWORK)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_NETWORK"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CANCELLED">
            <summary>
             The operation was canceled by the user.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CANCELLED: <c>HRESULT_FROM_WIN32(ERROR_CANCELLED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CANCELLED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_USER_MAPPED_FILE">
            <summary>
             The requested operation cannot be performed on a file with a user-mapped section open.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_USER_MAPPED_FILE: <c>HRESULT_FROM_WIN32(ERROR_USER_MAPPED_FILE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_USER_MAPPED_FILE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CONNECTION_REFUSED">
            <summary>
             The remote system refused the network connection.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CONNECTION_REFUSED: <c>HRESULT_FROM_WIN32(ERROR_CONNECTION_REFUSED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CONNECTION_REFUSED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_GRACEFUL_DISCONNECT">
            <summary>
             The network connection was gracefully closed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_GRACEFUL_DISCONNECT: <c>HRESULT_FROM_WIN32(ERROR_GRACEFUL_DISCONNECT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_GRACEFUL_DISCONNECT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_ADDRESS_ALREADY_ASSOCIATED">
            <summary>
             The network transport endpoint already has an address associated with it.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_ADDRESS_ALREADY_ASSOCIATED: <c>HRESULT_FROM_WIN32(ERROR_ADDRESS_ALREADY_ASSOCIATED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_ADDRESS_ALREADY_ASSOCIATED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_ADDRESS_NOT_ASSOCIATED">
            <summary>
             An address has not yet been associated with the network endpoint.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_ADDRESS_NOT_ASSOCIATED: <c>HRESULT_FROM_WIN32(ERROR_ADDRESS_NOT_ASSOCIATED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_ADDRESS_NOT_ASSOCIATED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CONNECTION_INVALID">
            <summary>
             An operation was attempted on a nonexistent network connection.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CONNECTION_INVALID: <c>HRESULT_FROM_WIN32(ERROR_CONNECTION_INVALID)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CONNECTION_INVALID"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CONNECTION_ACTIVE">
            <summary>
             An invalid operation was attempted on an active network connection.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CONNECTION_ACTIVE: <c>HRESULT_FROM_WIN32(ERROR_CONNECTION_ACTIVE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CONNECTION_ACTIVE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NETWORK_UNREACHABLE">
            <summary>
             The network location cannot be reached. For information about network troubleshooting, see Windows Help.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NETWORK_UNREACHABLE: <c>HRESULT_FROM_WIN32(ERROR_NETWORK_UNREACHABLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NETWORK_UNREACHABLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_HOST_UNREACHABLE">
            <summary>
             The network location cannot be reached. For information about network troubleshooting, see Windows Help.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_HOST_UNREACHABLE: <c>HRESULT_FROM_WIN32(ERROR_HOST_UNREACHABLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_HOST_UNREACHABLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_PROTOCOL_UNREACHABLE">
            <summary>
             The network location cannot be reached. For information about network troubleshooting, see Windows Help.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_PROTOCOL_UNREACHABLE: <c>HRESULT_FROM_WIN32(ERROR_PROTOCOL_UNREACHABLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_PROTOCOL_UNREACHABLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_PORT_UNREACHABLE">
            <summary>
             No service is operating at the destination network endpoint on the remote system.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_PORT_UNREACHABLE: <c>HRESULT_FROM_WIN32(ERROR_PORT_UNREACHABLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_PORT_UNREACHABLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_REQUEST_ABORTED">
            <summary>
             The request was aborted.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_REQUEST_ABORTED: <c>HRESULT_FROM_WIN32(ERROR_REQUEST_ABORTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_REQUEST_ABORTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CONNECTION_ABORTED">
            <summary>
             The network connection was aborted by the local system.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CONNECTION_ABORTED: <c>HRESULT_FROM_WIN32(ERROR_CONNECTION_ABORTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CONNECTION_ABORTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_RETRY">
            <summary>
             The operation could not be completed. A retry should be performed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_RETRY: <c>HRESULT_FROM_WIN32(ERROR_RETRY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_RETRY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CONNECTION_COUNT_LIMIT">
            <summary>
             A connection to the server could not be made because the limit on the number of concurrent connections for this account has been reached.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CONNECTION_COUNT_LIMIT: <c>HRESULT_FROM_WIN32(ERROR_CONNECTION_COUNT_LIMIT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CONNECTION_COUNT_LIMIT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_LOGIN_TIME_RESTRICTION">
            <summary>
             Attempting to log in during an unauthorized time of day for this account.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_LOGIN_TIME_RESTRICTION: <c>HRESULT_FROM_WIN32(ERROR_LOGIN_TIME_RESTRICTION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_LOGIN_TIME_RESTRICTION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_LOGIN_WKSTA_RESTRICTION">
            <summary>
             The account is not authorized to log in from this station.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_LOGIN_WKSTA_RESTRICTION: <c>HRESULT_FROM_WIN32(ERROR_LOGIN_WKSTA_RESTRICTION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_LOGIN_WKSTA_RESTRICTION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INCORRECT_ADDRESS">
            <summary>
             The network address could not be used for the operation requested.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INCORRECT_ADDRESS: <c>HRESULT_FROM_WIN32(ERROR_INCORRECT_ADDRESS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INCORRECT_ADDRESS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_ALREADY_REGISTERED">
            <summary>
             The service is already registered.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_ALREADY_REGISTERED: <c>HRESULT_FROM_WIN32(ERROR_ALREADY_REGISTERED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_ALREADY_REGISTERED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SERVICE_NOT_FOUND">
            <summary>
             The specified service does not exist.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SERVICE_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_SERVICE_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SERVICE_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NOT_AUTHENTICATED">
            <summary>
             The operation being requested was not performed because the user has not been authenticated.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NOT_AUTHENTICATED: <c>HRESULT_FROM_WIN32(ERROR_NOT_AUTHENTICATED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_AUTHENTICATED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NOT_LOGGED_ON">
            <summary>
             The operation being requested was not performed because the user has not logged on to the network.
             The specified service does not exist.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NOT_LOGGED_ON: <c>HRESULT_FROM_WIN32(ERROR_NOT_LOGGED_ON)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_LOGGED_ON"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CONTINUE">
            <summary>
             Continue with work in progress.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CONTINUE: <c>HRESULT_FROM_WIN32(ERROR_CONTINUE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CONTINUE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_ALREADY_INITIALIZED">
            <summary>
             An attempt was made to perform an initialization operation when initialization has already been completed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_ALREADY_INITIALIZED: <c>HRESULT_FROM_WIN32(ERROR_ALREADY_INITIALIZED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_ALREADY_INITIALIZED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NO_MORE_DEVICES">
            <summary>
             No more local devices.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NO_MORE_DEVICES: <c>HRESULT_FROM_WIN32(ERROR_NO_MORE_DEVICES)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_MORE_DEVICES"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NO_SUCH_SITE">
            <summary>
             The specified site does not exist.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NO_SUCH_SITE: <c>HRESULT_FROM_WIN32(ERROR_NO_SUCH_SITE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_SUCH_SITE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DOMAIN_CONTROLLER_EXISTS">
            <summary>
             A domain controller with the specified name already exists.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DOMAIN_CONTROLLER_EXISTS: <c>HRESULT_FROM_WIN32(ERROR_DOMAIN_CONTROLLER_EXISTS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DOMAIN_CONTROLLER_EXISTS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_ONLY_IF_CONNECTED">
            <summary>
             This operation is supported only when you are connected to the server.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_ONLY_IF_CONNECTED: <c>HRESULT_FROM_WIN32(ERROR_ONLY_IF_CONNECTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_ONLY_IF_CONNECTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_OVERRIDE_NOCHANGES">
            <summary>
             The group policy framework should call the extension even if there are no changes.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_OVERRIDE_NOCHANGES: <c>HRESULT_FROM_WIN32(ERROR_OVERRIDE_NOCHANGES)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_OVERRIDE_NOCHANGES"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_BAD_USER_PROFILE">
            <summary>
             The specified user does not have a valid profile.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_BAD_USER_PROFILE: <c>HRESULT_FROM_WIN32(ERROR_BAD_USER_PROFILE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_USER_PROFILE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NOT_SUPPORTED_ON_SBS">
            <summary>
             This operation is not supported on a computer running Windows Server 2003 for Small Business Server
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NOT_SUPPORTED_ON_SBS: <c>HRESULT_FROM_WIN32(ERROR_NOT_SUPPORTED_ON_SBS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_SUPPORTED_ON_SBS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SERVER_SHUTDOWN_IN_PROGRESS">
            <summary>
             The server machine is shutting down.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SERVER_SHUTDOWN_IN_PROGRESS: <c>HRESULT_FROM_WIN32(ERROR_SERVER_SHUTDOWN_IN_PROGRESS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SERVER_SHUTDOWN_IN_PROGRESS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_HOST_DOWN">
            <summary>
             The remote system is not available. For information about network troubleshooting, see Windows Help.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_HOST_DOWN: <c>HRESULT_FROM_WIN32(ERROR_HOST_DOWN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_HOST_DOWN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NON_ACCOUNT_SID">
            <summary>
             The security identifier provided is not from an account domain.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NON_ACCOUNT_SID: <c>HRESULT_FROM_WIN32(ERROR_NON_ACCOUNT_SID)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NON_ACCOUNT_SID"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NON_DOMAIN_SID">
            <summary>
             The security identifier provided does not have a domain component.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NON_DOMAIN_SID: <c>HRESULT_FROM_WIN32(ERROR_NON_DOMAIN_SID)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NON_DOMAIN_SID"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_APPHELP_BLOCK">
            <summary>
             AppHelp dialog canceled thus preventing the application from starting.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_APPHELP_BLOCK: <c>HRESULT_FROM_WIN32(ERROR_APPHELP_BLOCK)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_APPHELP_BLOCK"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_ACCESS_DISABLED_BY_POLICY">
            <summary>
             Windows cannot open this program because it has been prevented by a software restriction policy. For more information, open Event Viewer or contact your system administrator.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_ACCESS_DISABLED_BY_POLICY: <c>HRESULT_FROM_WIN32(ERROR_ACCESS_DISABLED_BY_POLICY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_ACCESS_DISABLED_BY_POLICY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_REG_NAT_CONSUMPTION">
            <summary>
             A program attempt to use an invalid register value.  Normally caused by an uninitialized register. This error is Itanium specific.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_REG_NAT_CONSUMPTION: <c>HRESULT_FROM_WIN32(ERROR_REG_NAT_CONSUMPTION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_REG_NAT_CONSUMPTION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CSCSHARE_OFFLINE">
            <summary>
             The share is currently offline or does not exist.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CSCSHARE_OFFLINE: <c>HRESULT_FROM_WIN32(ERROR_CSCSHARE_OFFLINE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CSCSHARE_OFFLINE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_PKINIT_FAILURE">
            <summary>
             The kerberos protocol encountered an error while validating the
             KDC certificate during smartcard logon.  There is more information in the
             system event log.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_PKINIT_FAILURE: <c>HRESULT_FROM_WIN32(ERROR_PKINIT_FAILURE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_PKINIT_FAILURE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SMARTCARD_SUBSYSTEM_FAILURE">
            <summary>
             The kerberos protocol encountered an error while attempting to utilize
             the smartcard subsystem.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SMARTCARD_SUBSYSTEM_FAILURE: <c>HRESULT_FROM_WIN32(ERROR_SMARTCARD_SUBSYSTEM_FAILURE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SMARTCARD_SUBSYSTEM_FAILURE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DOWNGRADE_DETECTED">
            <summary>
             The system detected a possible attempt to compromise security. Please ensure that you can contact the server that authenticated you.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DOWNGRADE_DETECTED: <c>HRESULT_FROM_WIN32(ERROR_DOWNGRADE_DETECTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DOWNGRADE_DETECTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_MACHINE_LOCKED">
            <summary>
             The machine is locked and cannot be shut down without the force option.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_MACHINE_LOCKED: <c>HRESULT_FROM_WIN32(ERROR_MACHINE_LOCKED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_MACHINE_LOCKED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CALLBACK_SUPPLIED_INVALID_DATA">
            <summary>
             An application-defined callback gave invalid data when called.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CALLBACK_SUPPLIED_INVALID_DATA: <c>HRESULT_FROM_WIN32(ERROR_CALLBACK_SUPPLIED_INVALID_DATA)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CALLBACK_SUPPLIED_INVALID_DATA"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SYNC_FOREGROUND_REFRESH_REQUIRED">
            <summary>
             The group policy framework should call the extension in the synchronous foreground policy refresh.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SYNC_FOREGROUND_REFRESH_REQUIRED: <c>HRESULT_FROM_WIN32(ERROR_SYNC_FOREGROUND_REFRESH_REQUIRED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SYNC_FOREGROUND_REFRESH_REQUIRED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DRIVER_BLOCKED">
            <summary>
             This driver has been blocked from loading
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DRIVER_BLOCKED: <c>HRESULT_FROM_WIN32(ERROR_DRIVER_BLOCKED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DRIVER_BLOCKED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_IMPORT_OF_NON_DLL">
            <summary>
             A dynamic link library (DLL) referenced a module that was neither a DLL nor the process's executable image.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_IMPORT_OF_NON_DLL: <c>HRESULT_FROM_WIN32(ERROR_INVALID_IMPORT_OF_NON_DLL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_IMPORT_OF_NON_DLL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_ACCESS_DISABLED_WEBBLADE">
            <summary>
             Windows cannot open this program since it has been disabled.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_ACCESS_DISABLED_WEBBLADE: <c>HRESULT_FROM_WIN32(ERROR_ACCESS_DISABLED_WEBBLADE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_ACCESS_DISABLED_WEBBLADE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_ACCESS_DISABLED_WEBBLADE_TAMPER">
            <summary>
             Windows cannot open this program because the license enforcement system has been tampered with or become corrupted.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_ACCESS_DISABLED_WEBBLADE_TAMPER: <c>HRESULT_FROM_WIN32(ERROR_ACCESS_DISABLED_WEBBLADE_TAMPER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_ACCESS_DISABLED_WEBBLADE_TAMPER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_RECOVERY_FAILURE">
            <summary>
             A transaction recover failed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_RECOVERY_FAILURE: <c>HRESULT_FROM_WIN32(ERROR_RECOVERY_FAILURE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_RECOVERY_FAILURE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_ALREADY_FIBER">
            <summary>
             The current thread has already been converted to a fiber.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_ALREADY_FIBER: <c>HRESULT_FROM_WIN32(ERROR_ALREADY_FIBER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_ALREADY_FIBER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_ALREADY_THREAD">
            <summary>
             The current thread has already been converted from a fiber.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_ALREADY_THREAD: <c>HRESULT_FROM_WIN32(ERROR_ALREADY_THREAD)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_ALREADY_THREAD"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_STACK_BUFFER_OVERRUN">
            <summary>
             The system detected an overrun of a stack-based buffer in this application.  This
             overrun could potentially allow a malicious user to gain control of this application.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_STACK_BUFFER_OVERRUN: <c>HRESULT_FROM_WIN32(ERROR_STACK_BUFFER_OVERRUN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_STACK_BUFFER_OVERRUN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_PARAMETER_QUOTA_EXCEEDED">
            <summary>
             Data present in one of the parameters is more than the function can operate on.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_PARAMETER_QUOTA_EXCEEDED: <c>HRESULT_FROM_WIN32(ERROR_PARAMETER_QUOTA_EXCEEDED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_PARAMETER_QUOTA_EXCEEDED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DEBUGGER_INACTIVE">
            <summary>
             An attempt to do an operation on a debug object failed because the object is in the process of being deleted.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DEBUGGER_INACTIVE: <c>HRESULT_FROM_WIN32(ERROR_DEBUGGER_INACTIVE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DEBUGGER_INACTIVE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DELAY_LOAD_FAILED">
            <summary>
             An attempt to delay-load a .dll or get a function address in a delay-loaded .dll failed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DELAY_LOAD_FAILED: <c>HRESULT_FROM_WIN32(ERROR_DELAY_LOAD_FAILED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DELAY_LOAD_FAILED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_VDM_DISALLOWED">
            <summary>
             %1 is a 16-bit application. You do not have permissions to execute 16-bit applications. Check your permissions with your system administrator.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_VDM_DISALLOWED: <c>HRESULT_FROM_WIN32(ERROR_VDM_DISALLOWED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_VDM_DISALLOWED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_UNIDENTIFIED_ERROR">
            <summary>
             Insufficient information exists to identify the cause of failure.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_UNIDENTIFIED_ERROR: <c>HRESULT_FROM_WIN32(ERROR_UNIDENTIFIED_ERROR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_UNIDENTIFIED_ERROR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NOT_ALL_ASSIGNED">
            <summary>
             Not all privileges referenced are assigned to the caller.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NOT_ALL_ASSIGNED: <c>HRESULT_FROM_WIN32(ERROR_NOT_ALL_ASSIGNED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_ALL_ASSIGNED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SOME_NOT_MAPPED">
            <summary>
             Some mapping between account names and security IDs was not done.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SOME_NOT_MAPPED: <c>HRESULT_FROM_WIN32(ERROR_SOME_NOT_MAPPED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SOME_NOT_MAPPED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NO_QUOTAS_FOR_ACCOUNT">
            <summary>
             No system quota limits are specifically set for this account.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NO_QUOTAS_FOR_ACCOUNT: <c>HRESULT_FROM_WIN32(ERROR_NO_QUOTAS_FOR_ACCOUNT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_QUOTAS_FOR_ACCOUNT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_LOCAL_USER_SESSION_KEY">
            <summary>
             No encryption key is available. A well-known encryption key was returned.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_LOCAL_USER_SESSION_KEY: <c>HRESULT_FROM_WIN32(ERROR_LOCAL_USER_SESSION_KEY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_LOCAL_USER_SESSION_KEY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NULL_LM_PASSWORD">
            <summary>
             The password is too complex to be converted to a LAN Manager password. The LAN Manager password returned is a NULL string.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NULL_LM_PASSWORD: <c>HRESULT_FROM_WIN32(ERROR_NULL_LM_PASSWORD)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NULL_LM_PASSWORD"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_UNKNOWN_REVISION">
            <summary>
             The revision level is unknown.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_UNKNOWN_REVISION: <c>HRESULT_FROM_WIN32(ERROR_UNKNOWN_REVISION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_UNKNOWN_REVISION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_REVISION_MISMATCH">
            <summary>
             Indicates two revision levels are incompatible.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_REVISION_MISMATCH: <c>HRESULT_FROM_WIN32(ERROR_REVISION_MISMATCH)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_REVISION_MISMATCH"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_OWNER">
            <summary>
             This security ID may not be assigned as the owner of this object.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_OWNER: <c>HRESULT_FROM_WIN32(ERROR_INVALID_OWNER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_OWNER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_PRIMARY_GROUP">
            <summary>
             This security ID may not be assigned as the primary group of an object.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_PRIMARY_GROUP: <c>HRESULT_FROM_WIN32(ERROR_INVALID_PRIMARY_GROUP)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_PRIMARY_GROUP"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NO_IMPERSONATION_TOKEN">
            <summary>
             An attempt has been made to operate on an impersonation token by a thread that is not currently impersonating a client.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NO_IMPERSONATION_TOKEN: <c>HRESULT_FROM_WIN32(ERROR_NO_IMPERSONATION_TOKEN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_IMPERSONATION_TOKEN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CANT_DISABLE_MANDATORY">
            <summary>
             The group may not be disabled.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CANT_DISABLE_MANDATORY: <c>HRESULT_FROM_WIN32(ERROR_CANT_DISABLE_MANDATORY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CANT_DISABLE_MANDATORY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NO_LOGON_SERVERS">
            <summary>
             There are currently no logon servers available to service the logon request.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NO_LOGON_SERVERS: <c>HRESULT_FROM_WIN32(ERROR_NO_LOGON_SERVERS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_LOGON_SERVERS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NO_SUCH_LOGON_SESSION">
            <summary>
             A specified logon session does not exist. It may already have been terminated.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NO_SUCH_LOGON_SESSION: <c>HRESULT_FROM_WIN32(ERROR_NO_SUCH_LOGON_SESSION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_SUCH_LOGON_SESSION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NO_SUCH_PRIVILEGE">
            <summary>
             A specified privilege does not exist.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NO_SUCH_PRIVILEGE: <c>HRESULT_FROM_WIN32(ERROR_NO_SUCH_PRIVILEGE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_SUCH_PRIVILEGE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_PRIVILEGE_NOT_HELD">
            <summary>
             A required privilege is not held by the client.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_PRIVILEGE_NOT_HELD: <c>HRESULT_FROM_WIN32(ERROR_PRIVILEGE_NOT_HELD)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_PRIVILEGE_NOT_HELD"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_ACCOUNT_NAME">
            <summary>
             The name provided is not a properly formed account name.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_ACCOUNT_NAME: <c>HRESULT_FROM_WIN32(ERROR_INVALID_ACCOUNT_NAME)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_ACCOUNT_NAME"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_USER_EXISTS">
            <summary>
             The specified user already exists.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_USER_EXISTS: <c>HRESULT_FROM_WIN32(ERROR_USER_EXISTS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_USER_EXISTS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NO_SUCH_USER">
            <summary>
             The specified user does not exist.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NO_SUCH_USER: <c>HRESULT_FROM_WIN32(ERROR_NO_SUCH_USER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_SUCH_USER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_GROUP_EXISTS">
            <summary>
             The specified group already exists.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_GROUP_EXISTS: <c>HRESULT_FROM_WIN32(ERROR_GROUP_EXISTS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_GROUP_EXISTS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NO_SUCH_GROUP">
            <summary>
             The specified group does not exist.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NO_SUCH_GROUP: <c>HRESULT_FROM_WIN32(ERROR_NO_SUCH_GROUP)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_SUCH_GROUP"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_MEMBER_IN_GROUP">
            <summary>
             Either the specified user account is already a member of the specified group, or the specified group cannot be deleted because it contains a member.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_MEMBER_IN_GROUP: <c>HRESULT_FROM_WIN32(ERROR_MEMBER_IN_GROUP)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_MEMBER_IN_GROUP"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_MEMBER_NOT_IN_GROUP">
            <summary>
             The specified user account is not a member of the specified group account.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_MEMBER_NOT_IN_GROUP: <c>HRESULT_FROM_WIN32(ERROR_MEMBER_NOT_IN_GROUP)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_MEMBER_NOT_IN_GROUP"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_LAST_ADMIN">
            <summary>
             The last remaining administration account cannot be disabled or deleted.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_LAST_ADMIN: <c>HRESULT_FROM_WIN32(ERROR_LAST_ADMIN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_LAST_ADMIN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_WRONG_PASSWORD">
            <summary>
             Unable to update the password. The value provided as the current password is incorrect.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_WRONG_PASSWORD: <c>HRESULT_FROM_WIN32(ERROR_WRONG_PASSWORD)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_WRONG_PASSWORD"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_ILL_FORMED_PASSWORD">
            <summary>
             Unable to update the password. The value provided for the new password contains values that are not allowed in passwords.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_ILL_FORMED_PASSWORD: <c>HRESULT_FROM_WIN32(ERROR_ILL_FORMED_PASSWORD)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_ILL_FORMED_PASSWORD"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_PASSWORD_RESTRICTION">
            <summary>
             Unable to update the password. The value provided for the new password does not meet the length, complexity, or history requirement of the domain.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_PASSWORD_RESTRICTION: <c>HRESULT_FROM_WIN32(ERROR_PASSWORD_RESTRICTION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_PASSWORD_RESTRICTION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_LOGON_FAILURE">
            <summary>
             Logon failure: unknown user name or bad password.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_LOGON_FAILURE: <c>HRESULT_FROM_WIN32(ERROR_LOGON_FAILURE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_LOGON_FAILURE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_ACCOUNT_RESTRICTION">
            <summary>
             Logon failure: user account restriction.  Possible reasons are blank passwords not allowed, logon hour restrictions, or a policy restriction has been enforced.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_ACCOUNT_RESTRICTION: <c>HRESULT_FROM_WIN32(ERROR_ACCOUNT_RESTRICTION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_ACCOUNT_RESTRICTION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_LOGON_HOURS">
            <summary>
             Logon failure: account logon time restriction violation.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_LOGON_HOURS: <c>HRESULT_FROM_WIN32(ERROR_INVALID_LOGON_HOURS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_LOGON_HOURS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_WORKSTATION">
            <summary>
             Logon failure: user not allowed to log on to this computer.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_WORKSTATION: <c>HRESULT_FROM_WIN32(ERROR_INVALID_WORKSTATION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_WORKSTATION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_PASSWORD_EXPIRED">
            <summary>
             Logon failure: the specified account password has expired.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_PASSWORD_EXPIRED: <c>HRESULT_FROM_WIN32(ERROR_PASSWORD_EXPIRED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_PASSWORD_EXPIRED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_ACCOUNT_DISABLED">
            <summary>
             Logon failure: account currently disabled.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_ACCOUNT_DISABLED: <c>HRESULT_FROM_WIN32(ERROR_ACCOUNT_DISABLED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_ACCOUNT_DISABLED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NONE_MAPPED">
            <summary>
             No mapping between account names and security IDs was done.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NONE_MAPPED: <c>HRESULT_FROM_WIN32(ERROR_NONE_MAPPED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NONE_MAPPED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_TOO_MANY_LUIDS_REQUESTED">
            <summary>
             Too many local user identifiers (LUIDs) were requested at one time.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_TOO_MANY_LUIDS_REQUESTED: <c>HRESULT_FROM_WIN32(ERROR_TOO_MANY_LUIDS_REQUESTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_TOO_MANY_LUIDS_REQUESTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_LUIDS_EXHAUSTED">
            <summary>
             No more local user identifiers (LUIDs) are available.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_LUIDS_EXHAUSTED: <c>HRESULT_FROM_WIN32(ERROR_LUIDS_EXHAUSTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_LUIDS_EXHAUSTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_SUB_AUTHORITY">
            <summary>
             The subauthority part of a security ID is invalid for this particular use.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_SUB_AUTHORITY: <c>HRESULT_FROM_WIN32(ERROR_INVALID_SUB_AUTHORITY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_SUB_AUTHORITY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_ACL">
            <summary>
             The access control list (ACL) structure is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_ACL: <c>HRESULT_FROM_WIN32(ERROR_INVALID_ACL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_ACL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_SID">
            <summary>
             The security ID structure is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_SID: <c>HRESULT_FROM_WIN32(ERROR_INVALID_SID)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_SID"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_SECURITY_DESCR">
            <summary>
             The security descriptor structure is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_SECURITY_DESCR: <c>HRESULT_FROM_WIN32(ERROR_INVALID_SECURITY_DESCR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_SECURITY_DESCR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_BAD_INHERITANCE_ACL">
            <summary>
             The inherited access control list (ACL) or access control entry (ACE) could not be built.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_BAD_INHERITANCE_ACL: <c>HRESULT_FROM_WIN32(ERROR_BAD_INHERITANCE_ACL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_INHERITANCE_ACL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SERVER_DISABLED">
            <summary>
             The server is currently disabled.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SERVER_DISABLED: <c>HRESULT_FROM_WIN32(ERROR_SERVER_DISABLED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SERVER_DISABLED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SERVER_NOT_DISABLED">
            <summary>
             The server is currently enabled.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SERVER_NOT_DISABLED: <c>HRESULT_FROM_WIN32(ERROR_SERVER_NOT_DISABLED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SERVER_NOT_DISABLED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_ID_AUTHORITY">
            <summary>
             The value provided was an invalid value for an identifier authority.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_ID_AUTHORITY: <c>HRESULT_FROM_WIN32(ERROR_INVALID_ID_AUTHORITY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_ID_AUTHORITY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_ALLOTTED_SPACE_EXCEEDED">
            <summary>
             No more memory is available for security information updates.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_ALLOTTED_SPACE_EXCEEDED: <c>HRESULT_FROM_WIN32(ERROR_ALLOTTED_SPACE_EXCEEDED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_ALLOTTED_SPACE_EXCEEDED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_GROUP_ATTRIBUTES">
            <summary>
             The specified attributes are invalid, or incompatible with the attributes for the group as a whole.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_GROUP_ATTRIBUTES: <c>HRESULT_FROM_WIN32(ERROR_INVALID_GROUP_ATTRIBUTES)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_GROUP_ATTRIBUTES"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_BAD_IMPERSONATION_LEVEL">
            <summary>
             Either a required impersonation level was not provided, or the provided impersonation level is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_BAD_IMPERSONATION_LEVEL: <c>HRESULT_FROM_WIN32(ERROR_BAD_IMPERSONATION_LEVEL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_IMPERSONATION_LEVEL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CANT_OPEN_ANONYMOUS">
            <summary>
             Cannot open an anonymous level security token.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CANT_OPEN_ANONYMOUS: <c>HRESULT_FROM_WIN32(ERROR_CANT_OPEN_ANONYMOUS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CANT_OPEN_ANONYMOUS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_BAD_VALIDATION_CLASS">
            <summary>
             The validation information class requested was invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_BAD_VALIDATION_CLASS: <c>HRESULT_FROM_WIN32(ERROR_BAD_VALIDATION_CLASS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_VALIDATION_CLASS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_BAD_TOKEN_TYPE">
            <summary>
             The type of the token is inappropriate for its attempted use.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_BAD_TOKEN_TYPE: <c>HRESULT_FROM_WIN32(ERROR_BAD_TOKEN_TYPE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_TOKEN_TYPE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NO_SECURITY_ON_OBJECT">
            <summary>
             Unable to perform a security operation on an object that has no associated security.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NO_SECURITY_ON_OBJECT: <c>HRESULT_FROM_WIN32(ERROR_NO_SECURITY_ON_OBJECT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_SECURITY_ON_OBJECT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CANT_ACCESS_DOMAIN_INFO">
            <summary>
             Configuration information could not be read from the domain controller, either because the machine is unavailable, or access has been denied.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CANT_ACCESS_DOMAIN_INFO: <c>HRESULT_FROM_WIN32(ERROR_CANT_ACCESS_DOMAIN_INFO)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CANT_ACCESS_DOMAIN_INFO"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_SERVER_STATE">
            <summary>
             The security account manager (SAM) or local security authority (LSA) server was in the wrong state to perform the security operation.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_SERVER_STATE: <c>HRESULT_FROM_WIN32(ERROR_INVALID_SERVER_STATE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_SERVER_STATE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_DOMAIN_STATE">
            <summary>
             The domain was in the wrong state to perform the security operation.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_DOMAIN_STATE: <c>HRESULT_FROM_WIN32(ERROR_INVALID_DOMAIN_STATE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_DOMAIN_STATE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_DOMAIN_ROLE">
            <summary>
             This operation is only allowed for the Primary Domain Controller of the domain.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_DOMAIN_ROLE: <c>HRESULT_FROM_WIN32(ERROR_INVALID_DOMAIN_ROLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_DOMAIN_ROLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NO_SUCH_DOMAIN">
            <summary>
             The specified domain either does not exist or could not be contacted.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NO_SUCH_DOMAIN: <c>HRESULT_FROM_WIN32(ERROR_NO_SUCH_DOMAIN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_SUCH_DOMAIN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DOMAIN_EXISTS">
            <summary>
             The specified domain already exists.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DOMAIN_EXISTS: <c>HRESULT_FROM_WIN32(ERROR_DOMAIN_EXISTS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DOMAIN_EXISTS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DOMAIN_LIMIT_EXCEEDED">
            <summary>
             An attempt was made to exceed the limit on the number of domains per server.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DOMAIN_LIMIT_EXCEEDED: <c>HRESULT_FROM_WIN32(ERROR_DOMAIN_LIMIT_EXCEEDED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DOMAIN_LIMIT_EXCEEDED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INTERNAL_DB_CORRUPTION">
            <summary>
             Unable to complete the requested operation because of either a catastrophic media failure or a data structure corruption on the disk.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INTERNAL_DB_CORRUPTION: <c>HRESULT_FROM_WIN32(ERROR_INTERNAL_DB_CORRUPTION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INTERNAL_DB_CORRUPTION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INTERNAL_ERROR">
            <summary>
             An internal error occurred.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INTERNAL_ERROR: <c>HRESULT_FROM_WIN32(ERROR_INTERNAL_ERROR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INTERNAL_ERROR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_GENERIC_NOT_MAPPED">
            <summary>
             Generic access types were contained in an access mask which should already be mapped to nongeneric types.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_GENERIC_NOT_MAPPED: <c>HRESULT_FROM_WIN32(ERROR_GENERIC_NOT_MAPPED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_GENERIC_NOT_MAPPED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_BAD_DESCRIPTOR_FORMAT">
            <summary>
             A security descriptor is not in the right format (absolute or self-relative).
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_BAD_DESCRIPTOR_FORMAT: <c>HRESULT_FROM_WIN32(ERROR_BAD_DESCRIPTOR_FORMAT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_DESCRIPTOR_FORMAT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NOT_LOGON_PROCESS">
            <summary>
             The requested action is restricted for use by logon processes only. The calling process has not registered as a logon process.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NOT_LOGON_PROCESS: <c>HRESULT_FROM_WIN32(ERROR_NOT_LOGON_PROCESS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_LOGON_PROCESS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_LOGON_SESSION_EXISTS">
            <summary>
             Cannot start a new logon session with an ID that is already in use.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_LOGON_SESSION_EXISTS: <c>HRESULT_FROM_WIN32(ERROR_LOGON_SESSION_EXISTS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_LOGON_SESSION_EXISTS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NO_SUCH_PACKAGE">
            <summary>
             A specified authentication package is unknown.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NO_SUCH_PACKAGE: <c>HRESULT_FROM_WIN32(ERROR_NO_SUCH_PACKAGE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_SUCH_PACKAGE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_BAD_LOGON_SESSION_STATE">
            <summary>
             The logon session is not in a state that is consistent with the requested operation.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_BAD_LOGON_SESSION_STATE: <c>HRESULT_FROM_WIN32(ERROR_BAD_LOGON_SESSION_STATE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_LOGON_SESSION_STATE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_LOGON_SESSION_COLLISION">
            <summary>
             The logon session ID is already in use.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_LOGON_SESSION_COLLISION: <c>HRESULT_FROM_WIN32(ERROR_LOGON_SESSION_COLLISION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_LOGON_SESSION_COLLISION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_LOGON_TYPE">
            <summary>
             A logon request contained an invalid logon type value.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_LOGON_TYPE: <c>HRESULT_FROM_WIN32(ERROR_INVALID_LOGON_TYPE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_LOGON_TYPE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CANNOT_IMPERSONATE">
            <summary>
             Unable to impersonate using a named pipe until data has been read from that pipe.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CANNOT_IMPERSONATE: <c>HRESULT_FROM_WIN32(ERROR_CANNOT_IMPERSONATE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CANNOT_IMPERSONATE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_RXACT_INVALID_STATE">
            <summary>
             The transaction state of a registry subtree is incompatible with the requested operation.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_RXACT_INVALID_STATE: <c>HRESULT_FROM_WIN32(ERROR_RXACT_INVALID_STATE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_RXACT_INVALID_STATE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_RXACT_COMMIT_FAILURE">
            <summary>
             An internal security database corruption has been encountered.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_RXACT_COMMIT_FAILURE: <c>HRESULT_FROM_WIN32(ERROR_RXACT_COMMIT_FAILURE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_RXACT_COMMIT_FAILURE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SPECIAL_ACCOUNT">
            <summary>
             Cannot perform this operation on built-in accounts.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SPECIAL_ACCOUNT: <c>HRESULT_FROM_WIN32(ERROR_SPECIAL_ACCOUNT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SPECIAL_ACCOUNT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SPECIAL_GROUP">
            <summary>
             Cannot perform this operation on this built-in special group.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SPECIAL_GROUP: <c>HRESULT_FROM_WIN32(ERROR_SPECIAL_GROUP)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SPECIAL_GROUP"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SPECIAL_USER">
            <summary>
             Cannot perform this operation on this built-in special user.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SPECIAL_USER: <c>HRESULT_FROM_WIN32(ERROR_SPECIAL_USER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SPECIAL_USER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_MEMBERS_PRIMARY_GROUP">
            <summary>
             The user cannot be removed from a group because the group is currently the user's primary group.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_MEMBERS_PRIMARY_GROUP: <c>HRESULT_FROM_WIN32(ERROR_MEMBERS_PRIMARY_GROUP)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_MEMBERS_PRIMARY_GROUP"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_TOKEN_ALREADY_IN_USE">
            <summary>
             The token is already in use as a primary token.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_TOKEN_ALREADY_IN_USE: <c>HRESULT_FROM_WIN32(ERROR_TOKEN_ALREADY_IN_USE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_TOKEN_ALREADY_IN_USE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NO_SUCH_ALIAS">
            <summary>
             The specified local group does not exist.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NO_SUCH_ALIAS: <c>HRESULT_FROM_WIN32(ERROR_NO_SUCH_ALIAS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_SUCH_ALIAS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_MEMBER_NOT_IN_ALIAS">
            <summary>
             The specified account name is not a member of the local group.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_MEMBER_NOT_IN_ALIAS: <c>HRESULT_FROM_WIN32(ERROR_MEMBER_NOT_IN_ALIAS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_MEMBER_NOT_IN_ALIAS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_MEMBER_IN_ALIAS">
            <summary>
             The specified account name is already a member of the local group.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_MEMBER_IN_ALIAS: <c>HRESULT_FROM_WIN32(ERROR_MEMBER_IN_ALIAS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_MEMBER_IN_ALIAS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_ALIAS_EXISTS">
            <summary>
             The specified local group already exists.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_ALIAS_EXISTS: <c>HRESULT_FROM_WIN32(ERROR_ALIAS_EXISTS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_ALIAS_EXISTS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_LOGON_NOT_GRANTED">
            <summary>
             Logon failure: the user has not been granted the requested logon type at this computer.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_LOGON_NOT_GRANTED: <c>HRESULT_FROM_WIN32(ERROR_LOGON_NOT_GRANTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_LOGON_NOT_GRANTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_TOO_MANY_SECRETS">
            <summary>
             The maximum number of secrets that may be stored in a single system has been exceeded.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_TOO_MANY_SECRETS: <c>HRESULT_FROM_WIN32(ERROR_TOO_MANY_SECRETS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_TOO_MANY_SECRETS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SECRET_TOO_LONG">
            <summary>
             The length of a secret exceeds the maximum length allowed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SECRET_TOO_LONG: <c>HRESULT_FROM_WIN32(ERROR_SECRET_TOO_LONG)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SECRET_TOO_LONG"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INTERNAL_DB_ERROR">
            <summary>
             The local security authority database contains an internal inconsistency.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INTERNAL_DB_ERROR: <c>HRESULT_FROM_WIN32(ERROR_INTERNAL_DB_ERROR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INTERNAL_DB_ERROR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_TOO_MANY_CONTEXT_IDS">
            <summary>
             During a logon attempt, the user's security context accumulated too many security IDs.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_TOO_MANY_CONTEXT_IDS: <c>HRESULT_FROM_WIN32(ERROR_TOO_MANY_CONTEXT_IDS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_TOO_MANY_CONTEXT_IDS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_LOGON_TYPE_NOT_GRANTED">
            <summary>
             Logon failure: the user has not been granted the requested logon type at this computer.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_LOGON_TYPE_NOT_GRANTED: <c>HRESULT_FROM_WIN32(ERROR_LOGON_TYPE_NOT_GRANTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_LOGON_TYPE_NOT_GRANTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NT_CROSS_ENCRYPTION_REQUIRED">
            <summary>
             A cross-encrypted password is necessary to change a user password.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NT_CROSS_ENCRYPTION_REQUIRED: <c>HRESULT_FROM_WIN32(ERROR_NT_CROSS_ENCRYPTION_REQUIRED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NT_CROSS_ENCRYPTION_REQUIRED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NO_SUCH_MEMBER">
            <summary>
             A member could not be added to or removed from the local group because the member does not exist.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NO_SUCH_MEMBER: <c>HRESULT_FROM_WIN32(ERROR_NO_SUCH_MEMBER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_SUCH_MEMBER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_MEMBER">
            <summary>
             A new member could not be added to a local group because the member has the wrong account type.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_MEMBER: <c>HRESULT_FROM_WIN32(ERROR_INVALID_MEMBER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_MEMBER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_TOO_MANY_SIDS">
            <summary>
             Too many security IDs have been specified.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_TOO_MANY_SIDS: <c>HRESULT_FROM_WIN32(ERROR_TOO_MANY_SIDS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_TOO_MANY_SIDS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_LM_CROSS_ENCRYPTION_REQUIRED">
            <summary>
             A cross-encrypted password is necessary to change this user password.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_LM_CROSS_ENCRYPTION_REQUIRED: <c>HRESULT_FROM_WIN32(ERROR_LM_CROSS_ENCRYPTION_REQUIRED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_LM_CROSS_ENCRYPTION_REQUIRED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NO_INHERITANCE">
            <summary>
             Indicates an ACL contains no inheritable components.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NO_INHERITANCE: <c>HRESULT_FROM_WIN32(ERROR_NO_INHERITANCE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_INHERITANCE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_FILE_CORRUPT">
            <summary>
             The file or directory is corrupted and unreadable.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_FILE_CORRUPT: <c>HRESULT_FROM_WIN32(ERROR_FILE_CORRUPT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_FILE_CORRUPT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DISK_CORRUPT">
            <summary>
             The disk structure is corrupted and unreadable.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DISK_CORRUPT: <c>HRESULT_FROM_WIN32(ERROR_DISK_CORRUPT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DISK_CORRUPT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NO_USER_SESSION_KEY">
            <summary>
             There is no user session key for the specified logon session.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NO_USER_SESSION_KEY: <c>HRESULT_FROM_WIN32(ERROR_NO_USER_SESSION_KEY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_USER_SESSION_KEY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_LICENSE_QUOTA_EXCEEDED">
            <summary>
             The service being accessed is licensed for a particular number of connections.
             No more connections can be made to the service at this time because there are already as many connections as the service can accept.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_LICENSE_QUOTA_EXCEEDED: <c>HRESULT_FROM_WIN32(ERROR_LICENSE_QUOTA_EXCEEDED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_LICENSE_QUOTA_EXCEEDED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_WRONG_TARGET_NAME">
            <summary>
             Logon Failure: The target account name is incorrect.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_WRONG_TARGET_NAME: <c>HRESULT_FROM_WIN32(ERROR_WRONG_TARGET_NAME)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_WRONG_TARGET_NAME"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_MUTUAL_AUTH_FAILED">
            <summary>
             Mutual Authentication failed. The server's password is out of date at the domain controller.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_MUTUAL_AUTH_FAILED: <c>HRESULT_FROM_WIN32(ERROR_MUTUAL_AUTH_FAILED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_MUTUAL_AUTH_FAILED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_TIME_SKEW">
            <summary>
             There is a time and/or date difference between the client and server.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_TIME_SKEW: <c>HRESULT_FROM_WIN32(ERROR_TIME_SKEW)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_TIME_SKEW"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CURRENT_DOMAIN_NOT_ALLOWED">
            <summary>
             This operation cannot be performed on the current domain.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CURRENT_DOMAIN_NOT_ALLOWED: <c>HRESULT_FROM_WIN32(ERROR_CURRENT_DOMAIN_NOT_ALLOWED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CURRENT_DOMAIN_NOT_ALLOWED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_WINDOW_HANDLE">
            <summary>
             Invalid window handle.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_WINDOW_HANDLE: <c>HRESULT_FROM_WIN32(ERROR_INVALID_WINDOW_HANDLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_WINDOW_HANDLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_MENU_HANDLE">
            <summary>
             Invalid menu handle.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_MENU_HANDLE: <c>HRESULT_FROM_WIN32(ERROR_INVALID_MENU_HANDLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_MENU_HANDLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_CURSOR_HANDLE">
            <summary>
             Invalid cursor handle.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_CURSOR_HANDLE: <c>HRESULT_FROM_WIN32(ERROR_INVALID_CURSOR_HANDLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_CURSOR_HANDLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_ACCEL_HANDLE">
            <summary>
             Invalid accelerator table handle.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_ACCEL_HANDLE: <c>HRESULT_FROM_WIN32(ERROR_INVALID_ACCEL_HANDLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_ACCEL_HANDLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_HOOK_HANDLE">
            <summary>
             Invalid hook handle.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_HOOK_HANDLE: <c>HRESULT_FROM_WIN32(ERROR_INVALID_HOOK_HANDLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_HOOK_HANDLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_DWP_HANDLE">
            <summary>
             Invalid handle to a multiple-window position structure.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_DWP_HANDLE: <c>HRESULT_FROM_WIN32(ERROR_INVALID_DWP_HANDLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_DWP_HANDLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_TLW_WITH_WSCHILD">
            <summary>
             Cannot create a top-level child window.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_TLW_WITH_WSCHILD: <c>HRESULT_FROM_WIN32(ERROR_TLW_WITH_WSCHILD)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_TLW_WITH_WSCHILD"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CANNOT_FIND_WND_CLASS">
            <summary>
             Cannot find window class.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CANNOT_FIND_WND_CLASS: <c>HRESULT_FROM_WIN32(ERROR_CANNOT_FIND_WND_CLASS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CANNOT_FIND_WND_CLASS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_WINDOW_OF_OTHER_THREAD">
            <summary>
             Invalid window; it belongs to other thread.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_WINDOW_OF_OTHER_THREAD: <c>HRESULT_FROM_WIN32(ERROR_WINDOW_OF_OTHER_THREAD)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_WINDOW_OF_OTHER_THREAD"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_HOTKEY_ALREADY_REGISTERED">
            <summary>
             Hot key is already registered.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_HOTKEY_ALREADY_REGISTERED: <c>HRESULT_FROM_WIN32(ERROR_HOTKEY_ALREADY_REGISTERED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_HOTKEY_ALREADY_REGISTERED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLASS_ALREADY_EXISTS">
            <summary>
             Class already exists.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLASS_ALREADY_EXISTS: <c>HRESULT_FROM_WIN32(ERROR_CLASS_ALREADY_EXISTS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLASS_ALREADY_EXISTS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLASS_DOES_NOT_EXIST">
            <summary>
             Class does not exist.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLASS_DOES_NOT_EXIST: <c>HRESULT_FROM_WIN32(ERROR_CLASS_DOES_NOT_EXIST)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLASS_DOES_NOT_EXIST"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLASS_HAS_WINDOWS">
            <summary>
             Class still has open windows.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLASS_HAS_WINDOWS: <c>HRESULT_FROM_WIN32(ERROR_CLASS_HAS_WINDOWS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLASS_HAS_WINDOWS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_INDEX">
            <summary>
             Invalid index.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_INDEX: <c>HRESULT_FROM_WIN32(ERROR_INVALID_INDEX)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_INDEX"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_ICON_HANDLE">
            <summary>
             Invalid icon handle.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_ICON_HANDLE: <c>HRESULT_FROM_WIN32(ERROR_INVALID_ICON_HANDLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_ICON_HANDLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_PRIVATE_DIALOG_INDEX">
            <summary>
             Using private DIALOG window words.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_PRIVATE_DIALOG_INDEX: <c>HRESULT_FROM_WIN32(ERROR_PRIVATE_DIALOG_INDEX)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_PRIVATE_DIALOG_INDEX"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_LISTBOX_ID_NOT_FOUND">
            <summary>
             The list box identifier was not found.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_LISTBOX_ID_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_LISTBOX_ID_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_LISTBOX_ID_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NO_WILDCARD_CHARACTERS">
            <summary>
             No wildcards were found.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NO_WILDCARD_CHARACTERS: <c>HRESULT_FROM_WIN32(ERROR_NO_WILDCARD_CHARACTERS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_WILDCARD_CHARACTERS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLIPBOARD_NOT_OPEN">
            <summary>
             Thread does not have a clipboard open.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLIPBOARD_NOT_OPEN: <c>HRESULT_FROM_WIN32(ERROR_CLIPBOARD_NOT_OPEN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLIPBOARD_NOT_OPEN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_HOTKEY_NOT_REGISTERED">
            <summary>
             Hot key is not registered.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_HOTKEY_NOT_REGISTERED: <c>HRESULT_FROM_WIN32(ERROR_HOTKEY_NOT_REGISTERED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_HOTKEY_NOT_REGISTERED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_WINDOW_NOT_DIALOG">
            <summary>
             The window is not a valid dialog window.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_WINDOW_NOT_DIALOG: <c>HRESULT_FROM_WIN32(ERROR_WINDOW_NOT_DIALOG)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_WINDOW_NOT_DIALOG"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CONTROL_ID_NOT_FOUND">
            <summary>
             Control ID not found.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CONTROL_ID_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_CONTROL_ID_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CONTROL_ID_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_COMBOBOX_MESSAGE">
            <summary>
             Invalid message for a combo box because it does not have an edit control.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_COMBOBOX_MESSAGE: <c>HRESULT_FROM_WIN32(ERROR_INVALID_COMBOBOX_MESSAGE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_COMBOBOX_MESSAGE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_WINDOW_NOT_COMBOBOX">
            <summary>
             The window is not a combo box.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_WINDOW_NOT_COMBOBOX: <c>HRESULT_FROM_WIN32(ERROR_WINDOW_NOT_COMBOBOX)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_WINDOW_NOT_COMBOBOX"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_EDIT_HEIGHT">
            <summary>
             Height must be less than 256.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_EDIT_HEIGHT: <c>HRESULT_FROM_WIN32(ERROR_INVALID_EDIT_HEIGHT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_EDIT_HEIGHT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DC_NOT_FOUND">
            <summary>
             Invalid device context (DC) handle.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DC_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_DC_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DC_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_HOOK_FILTER">
            <summary>
             Invalid hook procedure type.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_HOOK_FILTER: <c>HRESULT_FROM_WIN32(ERROR_INVALID_HOOK_FILTER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_HOOK_FILTER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_FILTER_PROC">
            <summary>
             Invalid hook procedure.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_FILTER_PROC: <c>HRESULT_FROM_WIN32(ERROR_INVALID_FILTER_PROC)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_FILTER_PROC"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_HOOK_NEEDS_HMOD">
            <summary>
             Cannot set nonlocal hook without a module handle.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_HOOK_NEEDS_HMOD: <c>HRESULT_FROM_WIN32(ERROR_HOOK_NEEDS_HMOD)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_HOOK_NEEDS_HMOD"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_GLOBAL_ONLY_HOOK">
            <summary>
             This hook procedure can only be set globally.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_GLOBAL_ONLY_HOOK: <c>HRESULT_FROM_WIN32(ERROR_GLOBAL_ONLY_HOOK)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_GLOBAL_ONLY_HOOK"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_JOURNAL_HOOK_SET">
            <summary>
             The journal hook procedure is already installed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_JOURNAL_HOOK_SET: <c>HRESULT_FROM_WIN32(ERROR_JOURNAL_HOOK_SET)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_JOURNAL_HOOK_SET"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_HOOK_NOT_INSTALLED">
            <summary>
             The hook procedure is not installed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_HOOK_NOT_INSTALLED: <c>HRESULT_FROM_WIN32(ERROR_HOOK_NOT_INSTALLED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_HOOK_NOT_INSTALLED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_LB_MESSAGE">
            <summary>
             Invalid message for single-selection list box.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_LB_MESSAGE: <c>HRESULT_FROM_WIN32(ERROR_INVALID_LB_MESSAGE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_LB_MESSAGE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SETCOUNT_ON_BAD_LB">
            <summary>
             LB_SETCOUNT sent to non-lazy list box.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SETCOUNT_ON_BAD_LB: <c>HRESULT_FROM_WIN32(ERROR_SETCOUNT_ON_BAD_LB)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SETCOUNT_ON_BAD_LB"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_LB_WITHOUT_TABSTOPS">
            <summary>
             This list box does not support tab stops.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_LB_WITHOUT_TABSTOPS: <c>HRESULT_FROM_WIN32(ERROR_LB_WITHOUT_TABSTOPS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_LB_WITHOUT_TABSTOPS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DESTROY_OBJECT_OF_OTHER_THREAD">
            <summary>
             Cannot destroy object created by another thread.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DESTROY_OBJECT_OF_OTHER_THREAD: <c>HRESULT_FROM_WIN32(ERROR_DESTROY_OBJECT_OF_OTHER_THREAD)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DESTROY_OBJECT_OF_OTHER_THREAD"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CHILD_WINDOW_MENU">
            <summary>
             Child windows cannot have menus.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CHILD_WINDOW_MENU: <c>HRESULT_FROM_WIN32(ERROR_CHILD_WINDOW_MENU)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CHILD_WINDOW_MENU"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NO_SYSTEM_MENU">
            <summary>
             The window does not have a system menu.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NO_SYSTEM_MENU: <c>HRESULT_FROM_WIN32(ERROR_NO_SYSTEM_MENU)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_SYSTEM_MENU"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_MSGBOX_STYLE">
            <summary>
             Invalid message box style.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_MSGBOX_STYLE: <c>HRESULT_FROM_WIN32(ERROR_INVALID_MSGBOX_STYLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_MSGBOX_STYLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_SPI_VALUE">
            <summary>
             Invalid system-wide (SPI_*) parameter.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_SPI_VALUE: <c>HRESULT_FROM_WIN32(ERROR_INVALID_SPI_VALUE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_SPI_VALUE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SCREEN_ALREADY_LOCKED">
            <summary>
             Screen already locked.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SCREEN_ALREADY_LOCKED: <c>HRESULT_FROM_WIN32(ERROR_SCREEN_ALREADY_LOCKED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SCREEN_ALREADY_LOCKED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_HWNDS_HAVE_DIFF_PARENT">
            <summary>
             All handles to windows in a multiple-window position structure must have the same parent.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_HWNDS_HAVE_DIFF_PARENT: <c>HRESULT_FROM_WIN32(ERROR_HWNDS_HAVE_DIFF_PARENT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_HWNDS_HAVE_DIFF_PARENT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NOT_CHILD_WINDOW">
            <summary>
             The window is not a child window.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NOT_CHILD_WINDOW: <c>HRESULT_FROM_WIN32(ERROR_NOT_CHILD_WINDOW)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_CHILD_WINDOW"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_GW_COMMAND">
            <summary>
             Invalid GW_* command.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_GW_COMMAND: <c>HRESULT_FROM_WIN32(ERROR_INVALID_GW_COMMAND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_GW_COMMAND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_THREAD_ID">
            <summary>
             Invalid thread identifier.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_THREAD_ID: <c>HRESULT_FROM_WIN32(ERROR_INVALID_THREAD_ID)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_THREAD_ID"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NON_MDICHILD_WINDOW">
            <summary>
             Cannot process a message from a window that is not a multiple document interface (MDI) window.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NON_MDICHILD_WINDOW: <c>HRESULT_FROM_WIN32(ERROR_NON_MDICHILD_WINDOW)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NON_MDICHILD_WINDOW"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_POPUP_ALREADY_ACTIVE">
            <summary>
             Popup menu already active.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_POPUP_ALREADY_ACTIVE: <c>HRESULT_FROM_WIN32(ERROR_POPUP_ALREADY_ACTIVE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_POPUP_ALREADY_ACTIVE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NO_SCROLLBARS">
            <summary>
             The window does not have scroll bars.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NO_SCROLLBARS: <c>HRESULT_FROM_WIN32(ERROR_NO_SCROLLBARS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_SCROLLBARS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_SCROLLBAR_RANGE">
            <summary>
             Scroll bar range cannot be greater than MAXLONG.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_SCROLLBAR_RANGE: <c>HRESULT_FROM_WIN32(ERROR_INVALID_SCROLLBAR_RANGE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_SCROLLBAR_RANGE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_SHOWWIN_COMMAND">
            <summary>
             Cannot show or remove the window in the way specified.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_SHOWWIN_COMMAND: <c>HRESULT_FROM_WIN32(ERROR_INVALID_SHOWWIN_COMMAND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_SHOWWIN_COMMAND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NO_SYSTEM_RESOURCES">
            <summary>
             Insufficient system resources exist to complete the requested service.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NO_SYSTEM_RESOURCES: <c>HRESULT_FROM_WIN32(ERROR_NO_SYSTEM_RESOURCES)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_SYSTEM_RESOURCES"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NONPAGED_SYSTEM_RESOURCES">
            <summary>
             Insufficient system resources exist to complete the requested service.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NONPAGED_SYSTEM_RESOURCES: <c>HRESULT_FROM_WIN32(ERROR_NONPAGED_SYSTEM_RESOURCES)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NONPAGED_SYSTEM_RESOURCES"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_PAGED_SYSTEM_RESOURCES">
            <summary>
             Insufficient system resources exist to complete the requested service.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_PAGED_SYSTEM_RESOURCES: <c>HRESULT_FROM_WIN32(ERROR_PAGED_SYSTEM_RESOURCES)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_PAGED_SYSTEM_RESOURCES"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_WORKING_SET_QUOTA">
            <summary>
             Insufficient quota to complete the requested service.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_WORKING_SET_QUOTA: <c>HRESULT_FROM_WIN32(ERROR_WORKING_SET_QUOTA)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_WORKING_SET_QUOTA"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_PAGEFILE_QUOTA">
            <summary>
             Insufficient quota to complete the requested service.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_PAGEFILE_QUOTA: <c>HRESULT_FROM_WIN32(ERROR_PAGEFILE_QUOTA)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_PAGEFILE_QUOTA"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_COMMITMENT_LIMIT">
            <summary>
             The paging file is too small for this operation to complete.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_COMMITMENT_LIMIT: <c>HRESULT_FROM_WIN32(ERROR_COMMITMENT_LIMIT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_COMMITMENT_LIMIT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_MENU_ITEM_NOT_FOUND">
            <summary>
             A menu item was not found.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_MENU_ITEM_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_MENU_ITEM_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_MENU_ITEM_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_KEYBOARD_HANDLE">
            <summary>
             Invalid keyboard layout handle.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_KEYBOARD_HANDLE: <c>HRESULT_FROM_WIN32(ERROR_INVALID_KEYBOARD_HANDLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_KEYBOARD_HANDLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_HOOK_TYPE_NOT_ALLOWED">
            <summary>
             Hook type not allowed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_HOOK_TYPE_NOT_ALLOWED: <c>HRESULT_FROM_WIN32(ERROR_HOOK_TYPE_NOT_ALLOWED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_HOOK_TYPE_NOT_ALLOWED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION">
            <summary>
             This operation requires an interactive window station.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION: <c>HRESULT_FROM_WIN32(ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_TIMEOUT">
            <summary>
             This operation returned because the timeout period expired.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_TIMEOUT: <c>HRESULT_FROM_WIN32(ERROR_TIMEOUT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_TIMEOUT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_MONITOR_HANDLE">
            <summary>
             Invalid monitor handle.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_MONITOR_HANDLE: <c>HRESULT_FROM_WIN32(ERROR_INVALID_MONITOR_HANDLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_MONITOR_HANDLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INCORRECT_SIZE">
            <summary>
             Incorrect size argument.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INCORRECT_SIZE: <c>HRESULT_FROM_WIN32(ERROR_INCORRECT_SIZE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INCORRECT_SIZE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_EVENTLOG_FILE_CORRUPT">
            <summary>
             The event log file is corrupted.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_EVENTLOG_FILE_CORRUPT: <c>HRESULT_FROM_WIN32(ERROR_EVENTLOG_FILE_CORRUPT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_EVENTLOG_FILE_CORRUPT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_EVENTLOG_CANT_START">
            <summary>
             No event log file could be opened, so the event logging service did not start.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_EVENTLOG_CANT_START: <c>HRESULT_FROM_WIN32(ERROR_EVENTLOG_CANT_START)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_EVENTLOG_CANT_START"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_LOG_FILE_FULL">
            <summary>
             The event log file is full.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_LOG_FILE_FULL: <c>HRESULT_FROM_WIN32(ERROR_LOG_FILE_FULL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_LOG_FILE_FULL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_EVENTLOG_FILE_CHANGED">
            <summary>
             The event log file has changed between read operations.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_EVENTLOG_FILE_CHANGED: <c>HRESULT_FROM_WIN32(ERROR_EVENTLOG_FILE_CHANGED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_EVENTLOG_FILE_CHANGED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INSTALL_SERVICE_FAILURE">
            <summary> 
             The Windows Installer Service could not be accessed. This can occur if you are running Windows in safe mode, or if the Windows Installer is not correctly installed. Contact your support personnel for assistance.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INSTALL_SERVICE_FAILURE: <c>HRESULT_FROM_WIN32(ERROR_INSTALL_SERVICE_FAILURE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INSTALL_SERVICE_FAILURE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INSTALL_USEREXIT">
            <summary>
             User cancelled installation.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INSTALL_USEREXIT: <c>HRESULT_FROM_WIN32(ERROR_INSTALL_USEREXIT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INSTALL_USEREXIT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INSTALL_FAILURE">
            <summary>
             Fatal error during installation.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INSTALL_FAILURE: <c>HRESULT_FROM_WIN32(ERROR_INSTALL_FAILURE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INSTALL_FAILURE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INSTALL_SUSPEND">
            <summary>
             Installation suspended, incomplete.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INSTALL_SUSPEND: <c>HRESULT_FROM_WIN32(ERROR_INSTALL_SUSPEND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INSTALL_SUSPEND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_UNKNOWN_PRODUCT">
            <summary>
             This action is only valid for products that are currently installed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_UNKNOWN_PRODUCT: <c>HRESULT_FROM_WIN32(ERROR_UNKNOWN_PRODUCT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_UNKNOWN_PRODUCT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_UNKNOWN_FEATURE">
            <summary>
             Feature ID not registered.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_UNKNOWN_FEATURE: <c>HRESULT_FROM_WIN32(ERROR_UNKNOWN_FEATURE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_UNKNOWN_FEATURE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_UNKNOWN_COMPONENT">
            <summary>
             Component ID not registered.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_UNKNOWN_COMPONENT: <c>HRESULT_FROM_WIN32(ERROR_UNKNOWN_COMPONENT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_UNKNOWN_COMPONENT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_UNKNOWN_PROPERTY">
            <summary>
             Unknown property.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_UNKNOWN_PROPERTY: <c>HRESULT_FROM_WIN32(ERROR_UNKNOWN_PROPERTY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_UNKNOWN_PROPERTY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_HANDLE_STATE">
            <summary>
             Handle is in an invalid state.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_HANDLE_STATE: <c>HRESULT_FROM_WIN32(ERROR_INVALID_HANDLE_STATE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_HANDLE_STATE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_BAD_CONFIGURATION">
            <summary>
             The configuration data for this product is corrupt.  Contact your support personnel.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_BAD_CONFIGURATION: <c>HRESULT_FROM_WIN32(ERROR_BAD_CONFIGURATION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_CONFIGURATION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INDEX_ABSENT">
            <summary>
             Component qualifier not present.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INDEX_ABSENT: <c>HRESULT_FROM_WIN32(ERROR_INDEX_ABSENT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INDEX_ABSENT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INSTALL_SOURCE_ABSENT">
            <summary>
             The installation source for this product is not available.  Verify that the source exists and that you can access it.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INSTALL_SOURCE_ABSENT: <c>HRESULT_FROM_WIN32(ERROR_INSTALL_SOURCE_ABSENT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INSTALL_SOURCE_ABSENT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INSTALL_PACKAGE_VERSION">
            <summary>
             This installation package cannot be installed by the Windows Installer service.  You must install a Windows service pack that contains a newer version of the Windows Installer service.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INSTALL_PACKAGE_VERSION: <c>HRESULT_FROM_WIN32(ERROR_INSTALL_PACKAGE_VERSION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INSTALL_PACKAGE_VERSION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_PRODUCT_UNINSTALLED">
            <summary>
             Product is uninstalled.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_PRODUCT_UNINSTALLED: <c>HRESULT_FROM_WIN32(ERROR_PRODUCT_UNINSTALLED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_PRODUCT_UNINSTALLED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_BAD_QUERY_SYNTAX">
            <summary>
             SQL query syntax invalid or unsupported.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_BAD_QUERY_SYNTAX: <c>HRESULT_FROM_WIN32(ERROR_BAD_QUERY_SYNTAX)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_QUERY_SYNTAX"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_FIELD">
            <summary>
             Record field does not exist.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_FIELD: <c>HRESULT_FROM_WIN32(ERROR_INVALID_FIELD)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_FIELD"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DEVICE_REMOVED">
            <summary>
             The device has been removed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DEVICE_REMOVED: <c>HRESULT_FROM_WIN32(ERROR_DEVICE_REMOVED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DEVICE_REMOVED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INSTALL_ALREADY_RUNNING">
            <summary>
             Another installation is already in progress.  Complete that installation before proceeding with this install.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INSTALL_ALREADY_RUNNING: <c>HRESULT_FROM_WIN32(ERROR_INSTALL_ALREADY_RUNNING)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INSTALL_ALREADY_RUNNING"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INSTALL_PACKAGE_OPEN_FAILED">
            <summary>
             This installation package could not be opened.  Verify that the package exists and that you can access it, or contact the application vendor to verify that this is a valid Windows Installer package.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INSTALL_PACKAGE_OPEN_FAILED: <c>HRESULT_FROM_WIN32(ERROR_INSTALL_PACKAGE_OPEN_FAILED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INSTALL_PACKAGE_OPEN_FAILED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INSTALL_PACKAGE_INVALID">
            <summary>
             This installation package could not be opened.  Contact the application vendor to verify that this is a valid Windows Installer package.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INSTALL_PACKAGE_INVALID: <c>HRESULT_FROM_WIN32(ERROR_INSTALL_PACKAGE_INVALID)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INSTALL_PACKAGE_INVALID"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INSTALL_UI_FAILURE">
            <summary>
             There was an error starting the Windows Installer service user interface.  Contact your support personnel.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INSTALL_UI_FAILURE: <c>HRESULT_FROM_WIN32(ERROR_INSTALL_UI_FAILURE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INSTALL_UI_FAILURE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INSTALL_LOG_FAILURE">
            <summary>
             Error opening installation log file. Verify that the specified log file location exists and that you can write to it.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INSTALL_LOG_FAILURE: <c>HRESULT_FROM_WIN32(ERROR_INSTALL_LOG_FAILURE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INSTALL_LOG_FAILURE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INSTALL_LANGUAGE_UNSUPPORTED">
            <summary>
             The language of this installation package is not supported by your system.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INSTALL_LANGUAGE_UNSUPPORTED: <c>HRESULT_FROM_WIN32(ERROR_INSTALL_LANGUAGE_UNSUPPORTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INSTALL_LANGUAGE_UNSUPPORTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INSTALL_TRANSFORM_FAILURE">
            <summary>
             Error applying transforms.  Verify that the specified transform paths are valid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INSTALL_TRANSFORM_FAILURE: <c>HRESULT_FROM_WIN32(ERROR_INSTALL_TRANSFORM_FAILURE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INSTALL_TRANSFORM_FAILURE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INSTALL_PACKAGE_REJECTED">
            <summary>
             This installation is forbidden by system policy.  Contact your system administrator.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INSTALL_PACKAGE_REJECTED: <c>HRESULT_FROM_WIN32(ERROR_INSTALL_PACKAGE_REJECTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INSTALL_PACKAGE_REJECTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_FUNCTION_NOT_CALLED">
            <summary>
             Function could not be executed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_FUNCTION_NOT_CALLED: <c>HRESULT_FROM_WIN32(ERROR_FUNCTION_NOT_CALLED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_FUNCTION_NOT_CALLED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_FUNCTION_FAILED">
            <summary>
             Function failed during execution.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_FUNCTION_FAILED: <c>HRESULT_FROM_WIN32(ERROR_FUNCTION_FAILED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_FUNCTION_FAILED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_TABLE">
            <summary>
             Invalid or unknown table specified.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_TABLE: <c>HRESULT_FROM_WIN32(ERROR_INVALID_TABLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_TABLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DATATYPE_MISMATCH">
            <summary>
             Data supplied is of wrong type.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DATATYPE_MISMATCH: <c>HRESULT_FROM_WIN32(ERROR_DATATYPE_MISMATCH)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DATATYPE_MISMATCH"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_UNSUPPORTED_TYPE">
            <summary>
             Data of this type is not supported.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_UNSUPPORTED_TYPE: <c>HRESULT_FROM_WIN32(ERROR_UNSUPPORTED_TYPE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_UNSUPPORTED_TYPE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CREATE_FAILED">
            <summary>
             The Windows Installer service failed to start.  Contact your support personnel.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CREATE_FAILED: <c>HRESULT_FROM_WIN32(ERROR_CREATE_FAILED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CREATE_FAILED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INSTALL_TEMP_UNWRITABLE">
            <summary>
             The Temp folder is on a drive that is full or is inaccessible. Free up space on the drive or verify that you have write permission on the Temp folder.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INSTALL_TEMP_UNWRITABLE: <c>HRESULT_FROM_WIN32(ERROR_INSTALL_TEMP_UNWRITABLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INSTALL_TEMP_UNWRITABLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INSTALL_PLATFORM_UNSUPPORTED">
            <summary>
             This installation package is not supported by this processor type. Contact your product vendor.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INSTALL_PLATFORM_UNSUPPORTED: <c>HRESULT_FROM_WIN32(ERROR_INSTALL_PLATFORM_UNSUPPORTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INSTALL_PLATFORM_UNSUPPORTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INSTALL_NOTUSED">
            <summary>
             Component not used on this computer.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INSTALL_NOTUSED: <c>HRESULT_FROM_WIN32(ERROR_INSTALL_NOTUSED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INSTALL_NOTUSED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_PATCH_PACKAGE_OPEN_FAILED">
            <summary>
             This patch package could not be opened.  Verify that the patch package exists and that you can access it, or contact the application vendor to verify that this is a valid Windows Installer patch package.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_PATCH_PACKAGE_OPEN_FAILED: <c>HRESULT_FROM_WIN32(ERROR_PATCH_PACKAGE_OPEN_FAILED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_PATCH_PACKAGE_OPEN_FAILED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_PATCH_PACKAGE_INVALID">
            <summary>
             This patch package could not be opened.  Contact the application vendor to verify that this is a valid Windows Installer patch package.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_PATCH_PACKAGE_INVALID: <c>HRESULT_FROM_WIN32(ERROR_PATCH_PACKAGE_INVALID)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_PATCH_PACKAGE_INVALID"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_PATCH_PACKAGE_UNSUPPORTED">
            <summary>
             This patch package cannot be processed by the Windows Installer service.  You must install a Windows service pack that contains a newer version of the Windows Installer service.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_PATCH_PACKAGE_UNSUPPORTED: <c>HRESULT_FROM_WIN32(ERROR_PATCH_PACKAGE_UNSUPPORTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_PATCH_PACKAGE_UNSUPPORTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_PRODUCT_VERSION">
            <summary>
             Another version of this product is already installed.  Installation of this version cannot continue.  To configure or remove the existing version of this product, use Add/Remove Programs on the Control Panel.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_PRODUCT_VERSION: <c>HRESULT_FROM_WIN32(ERROR_PRODUCT_VERSION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_PRODUCT_VERSION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_COMMAND_LINE">
            <summary>
             Invalid command line argument.  Consult the Windows Installer SDK for detailed command line help.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_COMMAND_LINE: <c>HRESULT_FROM_WIN32(ERROR_INVALID_COMMAND_LINE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_COMMAND_LINE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INSTALL_REMOTE_DISALLOWED">
            <summary>
             Only administrators have permission to add, remove, or configure server software during a Terminal services remote session. If you want to install or configure software on the server, contact your network administrator.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INSTALL_REMOTE_DISALLOWED: <c>HRESULT_FROM_WIN32(ERROR_INSTALL_REMOTE_DISALLOWED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INSTALL_REMOTE_DISALLOWED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SUCCESS_REBOOT_INITIATED">
            <summary>
             The requested operation completed successfully.  The system will be restarted so the changes can take effect.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SUCCESS_REBOOT_INITIATED: <c>HRESULT_FROM_WIN32(ERROR_SUCCESS_REBOOT_INITIATED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SUCCESS_REBOOT_INITIATED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_PATCH_TARGET_NOT_FOUND">
            <summary>
             The upgrade patch cannot be installed by the Windows Installer service because the program to be upgraded may be missing, or the upgrade patch may update a different version of the program. Verify that the program to be upgraded exists on your computer an
             d that you have the correct upgrade patch.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_PATCH_TARGET_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_PATCH_TARGET_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_PATCH_TARGET_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_PATCH_PACKAGE_REJECTED">
            <summary>
             The patch package is not permitted by software restriction policy.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_PATCH_PACKAGE_REJECTED: <c>HRESULT_FROM_WIN32(ERROR_PATCH_PACKAGE_REJECTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_PATCH_PACKAGE_REJECTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INSTALL_TRANSFORM_REJECTED">
            <summary>
             One or more customizations are not permitted by software restriction policy.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INSTALL_TRANSFORM_REJECTED: <c>HRESULT_FROM_WIN32(ERROR_INSTALL_TRANSFORM_REJECTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INSTALL_TRANSFORM_REJECTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INSTALL_REMOTE_PROHIBITED">
            <summary>
             The Windows Installer does not permit installation from a Remote Desktop Connection.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INSTALL_REMOTE_PROHIBITED: <c>HRESULT_FROM_WIN32(ERROR_INSTALL_REMOTE_PROHIBITED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INSTALL_REMOTE_PROHIBITED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_INVALID_STRING_BINDING">
            <summary>
             The string binding is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_INVALID_STRING_BINDING: <c>HRESULT_FROM_WIN32(RPC_S_INVALID_STRING_BINDING)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_INVALID_STRING_BINDING"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_WRONG_KIND_OF_BINDING">
            <summary>
             The binding handle is not the correct type.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_WRONG_KIND_OF_BINDING: <c>HRESULT_FROM_WIN32(RPC_S_WRONG_KIND_OF_BINDING)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_WRONG_KIND_OF_BINDING"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_INVALID_BINDING">
            <summary>
             The binding handle is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_INVALID_BINDING: <c>HRESULT_FROM_WIN32(RPC_S_INVALID_BINDING)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_INVALID_BINDING"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_PROTSEQ_NOT_SUPPORTED">
            <summary>
             The RPC protocol sequence is not supported.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_PROTSEQ_NOT_SUPPORTED: <c>HRESULT_FROM_WIN32(RPC_S_PROTSEQ_NOT_SUPPORTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_PROTSEQ_NOT_SUPPORTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_INVALID_RPC_PROTSEQ">
            <summary>
             The RPC protocol sequence is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_INVALID_RPC_PROTSEQ: <c>HRESULT_FROM_WIN32(RPC_S_INVALID_RPC_PROTSEQ)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_INVALID_RPC_PROTSEQ"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_INVALID_STRING_UUID">
            <summary>
             The string universal unique identifier (UUID) is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_INVALID_STRING_UUID: <c>HRESULT_FROM_WIN32(RPC_S_INVALID_STRING_UUID)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_INVALID_STRING_UUID"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_INVALID_ENDPOINT_FORMAT">
            <summary>
             The endpoint format is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_INVALID_ENDPOINT_FORMAT: <c>HRESULT_FROM_WIN32(RPC_S_INVALID_ENDPOINT_FORMAT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_INVALID_ENDPOINT_FORMAT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_INVALID_NET_ADDR">
            <summary>
             The network address is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_INVALID_NET_ADDR: <c>HRESULT_FROM_WIN32(RPC_S_INVALID_NET_ADDR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_INVALID_NET_ADDR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_NO_ENDPOINT_FOUND">
            <summary>
             No endpoint was found.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_NO_ENDPOINT_FOUND: <c>HRESULT_FROM_WIN32(RPC_S_NO_ENDPOINT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_NO_ENDPOINT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_INVALID_TIMEOUT">
            <summary>
             The timeout value is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_INVALID_TIMEOUT: <c>HRESULT_FROM_WIN32(RPC_S_INVALID_TIMEOUT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_INVALID_TIMEOUT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_OBJECT_NOT_FOUND">
            <summary>
             The object universal unique identifier (UUID) was not found.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_OBJECT_NOT_FOUND: <c>HRESULT_FROM_WIN32(RPC_S_OBJECT_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_OBJECT_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_ALREADY_REGISTERED">
            <summary>
             The object universal unique identifier (UUID) has already been registered.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_ALREADY_REGISTERED: <c>HRESULT_FROM_WIN32(RPC_S_ALREADY_REGISTERED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_ALREADY_REGISTERED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_TYPE_ALREADY_REGISTERED">
            <summary>
             The type universal unique identifier (UUID) has already been registered.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_TYPE_ALREADY_REGISTERED: <c>HRESULT_FROM_WIN32(RPC_S_TYPE_ALREADY_REGISTERED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_TYPE_ALREADY_REGISTERED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_ALREADY_LISTENING">
            <summary>
             The RPC server is already listening.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_ALREADY_LISTENING: <c>HRESULT_FROM_WIN32(RPC_S_ALREADY_LISTENING)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_ALREADY_LISTENING"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_NO_PROTSEQS_REGISTERED">
            <summary>
             No protocol sequences have been registered.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_NO_PROTSEQS_REGISTERED: <c>HRESULT_FROM_WIN32(RPC_S_NO_PROTSEQS_REGISTERED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_NO_PROTSEQS_REGISTERED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_NOT_LISTENING">
            <summary>
             The RPC server is not listening.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_NOT_LISTENING: <c>HRESULT_FROM_WIN32(RPC_S_NOT_LISTENING)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_NOT_LISTENING"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_UNKNOWN_MGR_TYPE">
            <summary>
             The manager type is unknown.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_UNKNOWN_MGR_TYPE: <c>HRESULT_FROM_WIN32(RPC_S_UNKNOWN_MGR_TYPE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_UNKNOWN_MGR_TYPE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_UNKNOWN_IF">
            <summary>
             The interface is unknown.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_UNKNOWN_IF: <c>HRESULT_FROM_WIN32(RPC_S_UNKNOWN_IF)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_UNKNOWN_IF"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_NO_BINDINGS">
            <summary>
             There are no bindings.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_NO_BINDINGS: <c>HRESULT_FROM_WIN32(RPC_S_NO_BINDINGS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_NO_BINDINGS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_NO_PROTSEQS">
            <summary>
             There are no protocol sequences.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_NO_PROTSEQS: <c>HRESULT_FROM_WIN32(RPC_S_NO_PROTSEQS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_NO_PROTSEQS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_CANT_CREATE_ENDPOINT">
            <summary>
             The endpoint cannot be created.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_CANT_CREATE_ENDPOINT: <c>HRESULT_FROM_WIN32(RPC_S_CANT_CREATE_ENDPOINT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_CANT_CREATE_ENDPOINT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_OUT_OF_RESOURCES">
            <summary>
             Not enough resources are available to complete this operation.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_OUT_OF_RESOURCES: <c>HRESULT_FROM_WIN32(RPC_S_OUT_OF_RESOURCES)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_OUT_OF_RESOURCES"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_SERVER_UNAVAILABLE">
            <summary>
             The RPC server is unavailable.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_SERVER_UNAVAILABLE: <c>HRESULT_FROM_WIN32(RPC_S_SERVER_UNAVAILABLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_SERVER_UNAVAILABLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_SERVER_TOO_BUSY">
            <summary>
             The RPC server is too busy to complete this operation.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_SERVER_TOO_BUSY: <c>HRESULT_FROM_WIN32(RPC_S_SERVER_TOO_BUSY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_SERVER_TOO_BUSY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_INVALID_NETWORK_OPTIONS">
            <summary>
             The network options are invalid.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_INVALID_NETWORK_OPTIONS: <c>HRESULT_FROM_WIN32(RPC_S_INVALID_NETWORK_OPTIONS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_INVALID_NETWORK_OPTIONS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_NO_CALL_ACTIVE">
            <summary>
             There are no remote procedure calls active on this thread.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_NO_CALL_ACTIVE: <c>HRESULT_FROM_WIN32(RPC_S_NO_CALL_ACTIVE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_NO_CALL_ACTIVE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_CALL_FAILED">
            <summary>
             The remote procedure call failed.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_CALL_FAILED: <c>HRESULT_FROM_WIN32(RPC_S_CALL_FAILED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_CALL_FAILED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_CALL_FAILED_DNE">
            <summary>
             The remote procedure call failed and did not execute.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_CALL_FAILED_DNE: <c>HRESULT_FROM_WIN32(RPC_S_CALL_FAILED_DNE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_CALL_FAILED_DNE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_PROTOCOL_ERROR">
            <summary>
             A remote procedure call (RPC) protocol error occurred.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_PROTOCOL_ERROR: <c>HRESULT_FROM_WIN32(RPC_S_PROTOCOL_ERROR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_PROTOCOL_ERROR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_UNSUPPORTED_TRANS_SYN">
            <summary>
             The transfer syntax is not supported by the RPC server.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_UNSUPPORTED_TRANS_SYN: <c>HRESULT_FROM_WIN32(RPC_S_UNSUPPORTED_TRANS_SYN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_UNSUPPORTED_TRANS_SYN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_UNSUPPORTED_TYPE">
            <summary>
             The universal unique identifier (UUID) type is not supported.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_UNSUPPORTED_TYPE: <c>HRESULT_FROM_WIN32(RPC_S_UNSUPPORTED_TYPE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_UNSUPPORTED_TYPE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_INVALID_TAG">
            <summary>
             The tag is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_INVALID_TAG: <c>HRESULT_FROM_WIN32(RPC_S_INVALID_TAG)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_INVALID_TAG"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_INVALID_BOUND">
            <summary>
             The array bounds are invalid.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_INVALID_BOUND: <c>HRESULT_FROM_WIN32(RPC_S_INVALID_BOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_INVALID_BOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_NO_ENTRY_NAME">
            <summary>
             The binding does not contain an entry name.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_NO_ENTRY_NAME: <c>HRESULT_FROM_WIN32(RPC_S_NO_ENTRY_NAME)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_NO_ENTRY_NAME"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_INVALID_NAME_SYNTAX">
            <summary>
             The name syntax is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_INVALID_NAME_SYNTAX: <c>HRESULT_FROM_WIN32(RPC_S_INVALID_NAME_SYNTAX)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_INVALID_NAME_SYNTAX"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_UNSUPPORTED_NAME_SYNTAX">
            <summary>
             The name syntax is not supported.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_UNSUPPORTED_NAME_SYNTAX: <c>HRESULT_FROM_WIN32(RPC_S_UNSUPPORTED_NAME_SYNTAX)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_UNSUPPORTED_NAME_SYNTAX"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_UUID_NO_ADDRESS">
            <summary>
             No network address is available to use to construct a universal unique identifier (UUID).
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_UUID_NO_ADDRESS: <c>HRESULT_FROM_WIN32(RPC_S_UUID_NO_ADDRESS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_UUID_NO_ADDRESS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_DUPLICATE_ENDPOINT">
            <summary>
             The endpoint is a duplicate.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_DUPLICATE_ENDPOINT: <c>HRESULT_FROM_WIN32(RPC_S_DUPLICATE_ENDPOINT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_DUPLICATE_ENDPOINT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_UNKNOWN_AUTHN_TYPE">
            <summary>
             The authentication type is unknown.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_UNKNOWN_AUTHN_TYPE: <c>HRESULT_FROM_WIN32(RPC_S_UNKNOWN_AUTHN_TYPE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_UNKNOWN_AUTHN_TYPE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_MAX_CALLS_TOO_SMALL">
            <summary>
             The maximum number of calls is too small.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_MAX_CALLS_TOO_SMALL: <c>HRESULT_FROM_WIN32(RPC_S_MAX_CALLS_TOO_SMALL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_MAX_CALLS_TOO_SMALL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_STRING_TOO_LONG">
            <summary>
             The string is too long.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_STRING_TOO_LONG: <c>HRESULT_FROM_WIN32(RPC_S_STRING_TOO_LONG)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_STRING_TOO_LONG"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_PROTSEQ_NOT_FOUND">
            <summary>
             The RPC protocol sequence was not found.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_PROTSEQ_NOT_FOUND: <c>HRESULT_FROM_WIN32(RPC_S_PROTSEQ_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_PROTSEQ_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_PROCNUM_OUT_OF_RANGE">
            <summary>
             The procedure number is out of range.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_PROCNUM_OUT_OF_RANGE: <c>HRESULT_FROM_WIN32(RPC_S_PROCNUM_OUT_OF_RANGE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_PROCNUM_OUT_OF_RANGE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_BINDING_HAS_NO_AUTH">
            <summary>
             The binding does not contain any authentication information.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_BINDING_HAS_NO_AUTH: <c>HRESULT_FROM_WIN32(RPC_S_BINDING_HAS_NO_AUTH)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_BINDING_HAS_NO_AUTH"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_UNKNOWN_AUTHN_SERVICE">
            <summary>
             The authentication service is unknown.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_UNKNOWN_AUTHN_SERVICE: <c>HRESULT_FROM_WIN32(RPC_S_UNKNOWN_AUTHN_SERVICE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_UNKNOWN_AUTHN_SERVICE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_UNKNOWN_AUTHN_LEVEL">
            <summary>
             The authentication level is unknown.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_UNKNOWN_AUTHN_LEVEL: <c>HRESULT_FROM_WIN32(RPC_S_UNKNOWN_AUTHN_LEVEL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_UNKNOWN_AUTHN_LEVEL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_INVALID_AUTH_IDENTITY">
            <summary>
             The security context is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_INVALID_AUTH_IDENTITY: <c>HRESULT_FROM_WIN32(RPC_S_INVALID_AUTH_IDENTITY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_INVALID_AUTH_IDENTITY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_UNKNOWN_AUTHZ_SERVICE">
            <summary>
             The authorization service is unknown.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_UNKNOWN_AUTHZ_SERVICE: <c>HRESULT_FROM_WIN32(RPC_S_UNKNOWN_AUTHZ_SERVICE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_UNKNOWN_AUTHZ_SERVICE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_EPT_S_INVALID_ENTRY">
            <summary>
             The entry is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code EPT_S_INVALID_ENTRY: <c>HRESULT_FROM_WIN32(EPT_S_INVALID_ENTRY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.EPT_S_INVALID_ENTRY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_EPT_S_CANT_PERFORM_OP">
            <summary>
             The server endpoint cannot perform the operation.
            </summary>
            <remarks>An HRESULT from Windows error code EPT_S_CANT_PERFORM_OP: <c>HRESULT_FROM_WIN32(EPT_S_CANT_PERFORM_OP)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.EPT_S_CANT_PERFORM_OP"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_EPT_S_NOT_REGISTERED">
            <summary>
             There are no more endpoints available from the endpoint mapper.
            </summary>
            <remarks>An HRESULT from Windows error code EPT_S_NOT_REGISTERED: <c>HRESULT_FROM_WIN32(EPT_S_NOT_REGISTERED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.EPT_S_NOT_REGISTERED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_NOTHING_TO_EXPORT">
            <summary>
             No interfaces have been exported.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_NOTHING_TO_EXPORT: <c>HRESULT_FROM_WIN32(RPC_S_NOTHING_TO_EXPORT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_NOTHING_TO_EXPORT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_INCOMPLETE_NAME">
            <summary>
             The entry name is incomplete.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_INCOMPLETE_NAME: <c>HRESULT_FROM_WIN32(RPC_S_INCOMPLETE_NAME)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_INCOMPLETE_NAME"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_INVALID_VERS_OPTION">
            <summary>
             The version option is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_INVALID_VERS_OPTION: <c>HRESULT_FROM_WIN32(RPC_S_INVALID_VERS_OPTION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_INVALID_VERS_OPTION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_NO_MORE_MEMBERS">
            <summary>
             There are no more members.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_NO_MORE_MEMBERS: <c>HRESULT_FROM_WIN32(RPC_S_NO_MORE_MEMBERS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_NO_MORE_MEMBERS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_NOT_ALL_OBJS_UNEXPORTED">
            <summary>
             There is nothing to unexport.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_NOT_ALL_OBJS_UNEXPORTED: <c>HRESULT_FROM_WIN32(RPC_S_NOT_ALL_OBJS_UNEXPORTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_NOT_ALL_OBJS_UNEXPORTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_INTERFACE_NOT_FOUND">
            <summary>
             The interface was not found.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_INTERFACE_NOT_FOUND: <c>HRESULT_FROM_WIN32(RPC_S_INTERFACE_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_INTERFACE_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_ENTRY_ALREADY_EXISTS">
            <summary>
             The entry already exists.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_ENTRY_ALREADY_EXISTS: <c>HRESULT_FROM_WIN32(RPC_S_ENTRY_ALREADY_EXISTS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_ENTRY_ALREADY_EXISTS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_ENTRY_NOT_FOUND">
            <summary>
             The entry is not found.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_ENTRY_NOT_FOUND: <c>HRESULT_FROM_WIN32(RPC_S_ENTRY_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_ENTRY_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_NAME_SERVICE_UNAVAILABLE">
            <summary>
             The name service is unavailable.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_NAME_SERVICE_UNAVAILABLE: <c>HRESULT_FROM_WIN32(RPC_S_NAME_SERVICE_UNAVAILABLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_NAME_SERVICE_UNAVAILABLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_INVALID_NAF_ID">
            <summary>
             The network address family is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_INVALID_NAF_ID: <c>HRESULT_FROM_WIN32(RPC_S_INVALID_NAF_ID)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_INVALID_NAF_ID"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_CANNOT_SUPPORT">
            <summary>
             The requested operation is not supported.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_CANNOT_SUPPORT: <c>HRESULT_FROM_WIN32(RPC_S_CANNOT_SUPPORT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_CANNOT_SUPPORT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_NO_CONTEXT_AVAILABLE">
            <summary>
             No security context is available to allow impersonation.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_NO_CONTEXT_AVAILABLE: <c>HRESULT_FROM_WIN32(RPC_S_NO_CONTEXT_AVAILABLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_NO_CONTEXT_AVAILABLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_INTERNAL_ERROR">
            <summary>
             An internal error occurred in a remote procedure call (RPC).
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_INTERNAL_ERROR: <c>HRESULT_FROM_WIN32(RPC_S_INTERNAL_ERROR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_INTERNAL_ERROR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_ZERO_DIVIDE">
            <summary>
             The RPC server attempted an integer division by zero.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_ZERO_DIVIDE: <c>HRESULT_FROM_WIN32(RPC_S_ZERO_DIVIDE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_ZERO_DIVIDE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_ADDRESS_ERROR">
            <summary>
             An addressing error occurred in the RPC server.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_ADDRESS_ERROR: <c>HRESULT_FROM_WIN32(RPC_S_ADDRESS_ERROR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_ADDRESS_ERROR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_FP_DIV_ZERO">
            <summary>
             A floating-point operation at the RPC server caused a division by zero.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_FP_DIV_ZERO: <c>HRESULT_FROM_WIN32(RPC_S_FP_DIV_ZERO)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_FP_DIV_ZERO"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_FP_UNDERFLOW">
            <summary>
             A floating-point underflow occurred at the RPC server.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_FP_UNDERFLOW: <c>HRESULT_FROM_WIN32(RPC_S_FP_UNDERFLOW)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_FP_UNDERFLOW"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_FP_OVERFLOW">
            <summary>
             A floating-point overflow occurred at the RPC server.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_FP_OVERFLOW: <c>HRESULT_FROM_WIN32(RPC_S_FP_OVERFLOW)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_FP_OVERFLOW"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_X_NO_MORE_ENTRIES">
            <summary>
             The list of RPC servers available for the binding of auto handles has been exhausted.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_X_NO_MORE_ENTRIES: <c>HRESULT_FROM_WIN32(RPC_X_NO_MORE_ENTRIES)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_X_NO_MORE_ENTRIES"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_X_SS_CHAR_TRANS_OPEN_FAIL">
            <summary>
             Unable to open the character translation table file.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_X_SS_CHAR_TRANS_OPEN_FAIL: <c>HRESULT_FROM_WIN32(RPC_X_SS_CHAR_TRANS_OPEN_FAIL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_X_SS_CHAR_TRANS_OPEN_FAIL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_X_SS_CHAR_TRANS_SHORT_FILE">
            <summary>
             The file containing the character translation table has fewer than 512 bytes.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_X_SS_CHAR_TRANS_SHORT_FILE: <c>HRESULT_FROM_WIN32(RPC_X_SS_CHAR_TRANS_SHORT_FILE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_X_SS_CHAR_TRANS_SHORT_FILE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_X_SS_IN_NULL_CONTEXT">
            <summary>
             A null context handle was passed from the client to the host during a remote procedure call.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_X_SS_IN_NULL_CONTEXT: <c>HRESULT_FROM_WIN32(RPC_X_SS_IN_NULL_CONTEXT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_X_SS_IN_NULL_CONTEXT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_X_SS_CONTEXT_DAMAGED">
            <summary>
             The context handle changed during a remote procedure call.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_X_SS_CONTEXT_DAMAGED: <c>HRESULT_FROM_WIN32(RPC_X_SS_CONTEXT_DAMAGED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_X_SS_CONTEXT_DAMAGED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_X_SS_HANDLES_MISMATCH">
            <summary>
             The binding handles passed to a remote procedure call do not match.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_X_SS_HANDLES_MISMATCH: <c>HRESULT_FROM_WIN32(RPC_X_SS_HANDLES_MISMATCH)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_X_SS_HANDLES_MISMATCH"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_X_SS_CANNOT_GET_CALL_HANDLE">
            <summary>
             The stub is unable to get the remote procedure call handle.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_X_SS_CANNOT_GET_CALL_HANDLE: <c>HRESULT_FROM_WIN32(RPC_X_SS_CANNOT_GET_CALL_HANDLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_X_SS_CANNOT_GET_CALL_HANDLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_X_NULL_REF_POINTER">
            <summary>
             A null reference pointer was passed to the stub.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_X_NULL_REF_POINTER: <c>HRESULT_FROM_WIN32(RPC_X_NULL_REF_POINTER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_X_NULL_REF_POINTER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_X_ENUM_VALUE_OUT_OF_RANGE">
            <summary>
             The enumeration value is out of range.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_X_ENUM_VALUE_OUT_OF_RANGE: <c>HRESULT_FROM_WIN32(RPC_X_ENUM_VALUE_OUT_OF_RANGE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_X_ENUM_VALUE_OUT_OF_RANGE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_X_BYTE_COUNT_TOO_SMALL">
            <summary>
             The byte count is too small.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_X_BYTE_COUNT_TOO_SMALL: <c>HRESULT_FROM_WIN32(RPC_X_BYTE_COUNT_TOO_SMALL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_X_BYTE_COUNT_TOO_SMALL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_X_BAD_STUB_DATA">
            <summary>
             The stub received bad data.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_X_BAD_STUB_DATA: <c>HRESULT_FROM_WIN32(RPC_X_BAD_STUB_DATA)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_X_BAD_STUB_DATA"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_USER_BUFFER">
            <summary>
             The supplied user buffer is not valid for the requested operation.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_USER_BUFFER: <c>HRESULT_FROM_WIN32(ERROR_INVALID_USER_BUFFER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_USER_BUFFER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_UNRECOGNIZED_MEDIA">
            <summary>
             The disk media is not recognized. It may not be formatted.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_UNRECOGNIZED_MEDIA: <c>HRESULT_FROM_WIN32(ERROR_UNRECOGNIZED_MEDIA)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_UNRECOGNIZED_MEDIA"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NO_TRUST_LSA_SECRET">
            <summary>
             The workstation does not have a trust secret.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NO_TRUST_LSA_SECRET: <c>HRESULT_FROM_WIN32(ERROR_NO_TRUST_LSA_SECRET)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_TRUST_LSA_SECRET"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NO_TRUST_SAM_ACCOUNT">
            <summary>
             The security database on the server does not have a computer account for this workstation trust relationship.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NO_TRUST_SAM_ACCOUNT: <c>HRESULT_FROM_WIN32(ERROR_NO_TRUST_SAM_ACCOUNT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_TRUST_SAM_ACCOUNT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_TRUSTED_DOMAIN_FAILURE">
            <summary>
             The trust relationship between the primary domain and the trusted domain failed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_TRUSTED_DOMAIN_FAILURE: <c>HRESULT_FROM_WIN32(ERROR_TRUSTED_DOMAIN_FAILURE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_TRUSTED_DOMAIN_FAILURE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_TRUSTED_RELATIONSHIP_FAILURE">
            <summary>
             The trust relationship between this workstation and the primary domain failed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_TRUSTED_RELATIONSHIP_FAILURE: <c>HRESULT_FROM_WIN32(ERROR_TRUSTED_RELATIONSHIP_FAILURE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_TRUSTED_RELATIONSHIP_FAILURE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_TRUST_FAILURE">
            <summary>
             The network logon failed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_TRUST_FAILURE: <c>HRESULT_FROM_WIN32(ERROR_TRUST_FAILURE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_TRUST_FAILURE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_CALL_IN_PROGRESS">
            <summary>
             A remote procedure call is already in progress for this thread.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_CALL_IN_PROGRESS: <c>HRESULT_FROM_WIN32(RPC_S_CALL_IN_PROGRESS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_CALL_IN_PROGRESS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NETLOGON_NOT_STARTED">
            <summary>
             An attempt was made to logon, but the network logon service was not started.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NETLOGON_NOT_STARTED: <c>HRESULT_FROM_WIN32(ERROR_NETLOGON_NOT_STARTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NETLOGON_NOT_STARTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_ACCOUNT_EXPIRED">
            <summary>
             The user's account has expired.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_ACCOUNT_EXPIRED: <c>HRESULT_FROM_WIN32(ERROR_ACCOUNT_EXPIRED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_ACCOUNT_EXPIRED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_REDIRECTOR_HAS_OPEN_HANDLES">
            <summary>
             The redirector is in use and cannot be unloaded.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_REDIRECTOR_HAS_OPEN_HANDLES: <c>HRESULT_FROM_WIN32(ERROR_REDIRECTOR_HAS_OPEN_HANDLES)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_REDIRECTOR_HAS_OPEN_HANDLES"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_PRINTER_DRIVER_ALREADY_INSTALLED">
            <summary>
             The specified printer driver is already installed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_PRINTER_DRIVER_ALREADY_INSTALLED: <c>HRESULT_FROM_WIN32(ERROR_PRINTER_DRIVER_ALREADY_INSTALLED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_PRINTER_DRIVER_ALREADY_INSTALLED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_UNKNOWN_PORT">
            <summary>
             The specified port is unknown.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_UNKNOWN_PORT: <c>HRESULT_FROM_WIN32(ERROR_UNKNOWN_PORT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_UNKNOWN_PORT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_UNKNOWN_PRINTER_DRIVER">
            <summary>
             The printer driver is unknown.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_UNKNOWN_PRINTER_DRIVER: <c>HRESULT_FROM_WIN32(ERROR_UNKNOWN_PRINTER_DRIVER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_UNKNOWN_PRINTER_DRIVER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_UNKNOWN_PRINTPROCESSOR">
            <summary>
             The print processor is unknown.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_UNKNOWN_PRINTPROCESSOR: <c>HRESULT_FROM_WIN32(ERROR_UNKNOWN_PRINTPROCESSOR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_UNKNOWN_PRINTPROCESSOR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_SEPARATOR_FILE">
            <summary>
             The specified separator file is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_SEPARATOR_FILE: <c>HRESULT_FROM_WIN32(ERROR_INVALID_SEPARATOR_FILE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_SEPARATOR_FILE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_PRIORITY">
            <summary>
             The specified priority is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_PRIORITY: <c>HRESULT_FROM_WIN32(ERROR_INVALID_PRIORITY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_PRIORITY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_PRINTER_NAME">
            <summary>
             The printer name is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_PRINTER_NAME: <c>HRESULT_FROM_WIN32(ERROR_INVALID_PRINTER_NAME)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_PRINTER_NAME"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_PRINTER_ALREADY_EXISTS">
            <summary>
             The printer already exists.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_PRINTER_ALREADY_EXISTS: <c>HRESULT_FROM_WIN32(ERROR_PRINTER_ALREADY_EXISTS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_PRINTER_ALREADY_EXISTS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_PRINTER_COMMAND">
            <summary>
             The printer command is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_PRINTER_COMMAND: <c>HRESULT_FROM_WIN32(ERROR_INVALID_PRINTER_COMMAND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_PRINTER_COMMAND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_DATATYPE">
            <summary>
             The specified datatype is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_DATATYPE: <c>HRESULT_FROM_WIN32(ERROR_INVALID_DATATYPE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_DATATYPE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_ENVIRONMENT">
            <summary>
             The environment specified is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_ENVIRONMENT: <c>HRESULT_FROM_WIN32(ERROR_INVALID_ENVIRONMENT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_ENVIRONMENT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_NO_MORE_BINDINGS">
            <summary>
             There are no more bindings.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_NO_MORE_BINDINGS: <c>HRESULT_FROM_WIN32(RPC_S_NO_MORE_BINDINGS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_NO_MORE_BINDINGS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT">
            <summary>
             The account used is an interdomain trust account. Use your global user account or local user account to access this server.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT: <c>HRESULT_FROM_WIN32(ERROR_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NOLOGON_WORKSTATION_TRUST_ACCOUNT">
            <summary>
             The account used is a computer account. Use your global user account or local user account to access this server.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NOLOGON_WORKSTATION_TRUST_ACCOUNT: <c>HRESULT_FROM_WIN32(ERROR_NOLOGON_WORKSTATION_TRUST_ACCOUNT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NOLOGON_WORKSTATION_TRUST_ACCOUNT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NOLOGON_SERVER_TRUST_ACCOUNT">
            <summary>
             The account used is a server trust account. Use your global user account or local user account to access this server.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NOLOGON_SERVER_TRUST_ACCOUNT: <c>HRESULT_FROM_WIN32(ERROR_NOLOGON_SERVER_TRUST_ACCOUNT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NOLOGON_SERVER_TRUST_ACCOUNT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DOMAIN_TRUST_INCONSISTENT">
            <summary>
             The name or security ID (SID) of the domain specified is inconsistent with the trust information for that domain.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DOMAIN_TRUST_INCONSISTENT: <c>HRESULT_FROM_WIN32(ERROR_DOMAIN_TRUST_INCONSISTENT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DOMAIN_TRUST_INCONSISTENT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SERVER_HAS_OPEN_HANDLES">
            <summary>
             The server is in use and cannot be unloaded.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SERVER_HAS_OPEN_HANDLES: <c>HRESULT_FROM_WIN32(ERROR_SERVER_HAS_OPEN_HANDLES)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SERVER_HAS_OPEN_HANDLES"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_RESOURCE_DATA_NOT_FOUND">
            <summary>
             The specified image file did not contain a resource section.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_RESOURCE_DATA_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_RESOURCE_DATA_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_RESOURCE_DATA_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_RESOURCE_TYPE_NOT_FOUND">
            <summary>
             The specified resource type cannot be found in the image file.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_RESOURCE_TYPE_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_RESOURCE_TYPE_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_RESOURCE_TYPE_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_RESOURCE_NAME_NOT_FOUND">
            <summary>
             The specified resource name cannot be found in the image file.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_RESOURCE_NAME_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_RESOURCE_NAME_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_RESOURCE_NAME_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_RESOURCE_LANG_NOT_FOUND">
            <summary>
             The specified resource language ID cannot be found in the image file.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_RESOURCE_LANG_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_RESOURCE_LANG_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_RESOURCE_LANG_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NOT_ENOUGH_QUOTA">
            <summary>
             Not enough quota is available to process this command.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NOT_ENOUGH_QUOTA: <c>HRESULT_FROM_WIN32(ERROR_NOT_ENOUGH_QUOTA)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_ENOUGH_QUOTA"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_NO_INTERFACES">
            <summary>
             No interfaces have been registered.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_NO_INTERFACES: <c>HRESULT_FROM_WIN32(RPC_S_NO_INTERFACES)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_NO_INTERFACES"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_CALL_CANCELLED">
            <summary>
             The remote procedure call was cancelled.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_CALL_CANCELLED: <c>HRESULT_FROM_WIN32(RPC_S_CALL_CANCELLED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_CALL_CANCELLED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_BINDING_INCOMPLETE">
            <summary>
             The binding handle does not contain all required information.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_BINDING_INCOMPLETE: <c>HRESULT_FROM_WIN32(RPC_S_BINDING_INCOMPLETE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_BINDING_INCOMPLETE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_COMM_FAILURE">
            <summary>
             A communications failure occurred during a remote procedure call.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_COMM_FAILURE: <c>HRESULT_FROM_WIN32(RPC_S_COMM_FAILURE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_COMM_FAILURE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_UNSUPPORTED_AUTHN_LEVEL">
            <summary>
             The requested authentication level is not supported.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_UNSUPPORTED_AUTHN_LEVEL: <c>HRESULT_FROM_WIN32(RPC_S_UNSUPPORTED_AUTHN_LEVEL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_UNSUPPORTED_AUTHN_LEVEL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_NO_PRINC_NAME">
            <summary>
             No principal name registered.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_NO_PRINC_NAME: <c>HRESULT_FROM_WIN32(RPC_S_NO_PRINC_NAME)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_NO_PRINC_NAME"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_NOT_RPC_ERROR">
            <summary>
             The error specified is not a valid Windows RPC error code.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_NOT_RPC_ERROR: <c>HRESULT_FROM_WIN32(RPC_S_NOT_RPC_ERROR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_NOT_RPC_ERROR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_UUID_LOCAL_ONLY">
            <summary>
             A UUID that is valid only on this computer has been allocated.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_UUID_LOCAL_ONLY: <c>HRESULT_FROM_WIN32(RPC_S_UUID_LOCAL_ONLY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_UUID_LOCAL_ONLY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_SEC_PKG_ERROR">
            <summary>
             A security package specific error occurred.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_SEC_PKG_ERROR: <c>HRESULT_FROM_WIN32(RPC_S_SEC_PKG_ERROR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_SEC_PKG_ERROR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_NOT_CANCELLED">
            <summary>
             Thread is not canceled.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_NOT_CANCELLED: <c>HRESULT_FROM_WIN32(RPC_S_NOT_CANCELLED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_NOT_CANCELLED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_X_INVALID_ES_ACTION">
            <summary>
             Invalid operation on the encoding/decoding handle.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_X_INVALID_ES_ACTION: <c>HRESULT_FROM_WIN32(RPC_X_INVALID_ES_ACTION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_X_INVALID_ES_ACTION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_X_WRONG_ES_VERSION">
            <summary>
             Incompatible version of the serializing package.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_X_WRONG_ES_VERSION: <c>HRESULT_FROM_WIN32(RPC_X_WRONG_ES_VERSION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_X_WRONG_ES_VERSION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_X_WRONG_STUB_VERSION">
            <summary>
             Incompatible version of the RPC stub.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_X_WRONG_STUB_VERSION: <c>HRESULT_FROM_WIN32(RPC_X_WRONG_STUB_VERSION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_X_WRONG_STUB_VERSION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_X_INVALID_PIPE_OBJECT">
            <summary>
             The RPC pipe object is invalid or corrupted.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_X_INVALID_PIPE_OBJECT: <c>HRESULT_FROM_WIN32(RPC_X_INVALID_PIPE_OBJECT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_X_INVALID_PIPE_OBJECT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_X_WRONG_PIPE_ORDER">
            <summary>
             An invalid operation was attempted on an RPC pipe object.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_X_WRONG_PIPE_ORDER: <c>HRESULT_FROM_WIN32(RPC_X_WRONG_PIPE_ORDER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_X_WRONG_PIPE_ORDER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_X_WRONG_PIPE_VERSION">
            <summary>
             Unsupported RPC pipe version.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_X_WRONG_PIPE_VERSION: <c>HRESULT_FROM_WIN32(RPC_X_WRONG_PIPE_VERSION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_X_WRONG_PIPE_VERSION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_GROUP_MEMBER_NOT_FOUND">
            <summary>
             The group member was not found.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_GROUP_MEMBER_NOT_FOUND: <c>HRESULT_FROM_WIN32(RPC_S_GROUP_MEMBER_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_GROUP_MEMBER_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_EPT_S_CANT_CREATE">
            <summary>
             The endpoint mapper database entry could not be created.
            </summary>
            <remarks>An HRESULT from Windows error code EPT_S_CANT_CREATE: <c>HRESULT_FROM_WIN32(EPT_S_CANT_CREATE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.EPT_S_CANT_CREATE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_INVALID_OBJECT">
            <summary>
             The object universal unique identifier (UUID) is the nil UUID.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_INVALID_OBJECT: <c>HRESULT_FROM_WIN32(RPC_S_INVALID_OBJECT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_INVALID_OBJECT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_TIME">
            <summary>
             The specified time is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_TIME: <c>HRESULT_FROM_WIN32(ERROR_INVALID_TIME)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_TIME"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_FORM_NAME">
            <summary>
             The specified form name is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_FORM_NAME: <c>HRESULT_FROM_WIN32(ERROR_INVALID_FORM_NAME)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_FORM_NAME"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_FORM_SIZE">
            <summary>
             The specified form size is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_FORM_SIZE: <c>HRESULT_FROM_WIN32(ERROR_INVALID_FORM_SIZE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_FORM_SIZE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_ALREADY_WAITING">
            <summary>
             The specified printer handle is already being waited on
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_ALREADY_WAITING: <c>HRESULT_FROM_WIN32(ERROR_ALREADY_WAITING)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_ALREADY_WAITING"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_PRINTER_DELETED">
            <summary>
             The specified printer has been deleted.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_PRINTER_DELETED: <c>HRESULT_FROM_WIN32(ERROR_PRINTER_DELETED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_PRINTER_DELETED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_PRINTER_STATE">
            <summary>
             The state of the printer is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_PRINTER_STATE: <c>HRESULT_FROM_WIN32(ERROR_INVALID_PRINTER_STATE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_PRINTER_STATE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_PASSWORD_MUST_CHANGE">
            <summary>
             The user's password must be changed before logging on the first time.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_PASSWORD_MUST_CHANGE: <c>HRESULT_FROM_WIN32(ERROR_PASSWORD_MUST_CHANGE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_PASSWORD_MUST_CHANGE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DOMAIN_CONTROLLER_NOT_FOUND">
            <summary>
             Could not find the domain controller for this domain.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DOMAIN_CONTROLLER_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_DOMAIN_CONTROLLER_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DOMAIN_CONTROLLER_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_ACCOUNT_LOCKED_OUT">
            <summary>
             The referenced account is currently locked out and may not be logged on to.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_ACCOUNT_LOCKED_OUT: <c>HRESULT_FROM_WIN32(ERROR_ACCOUNT_LOCKED_OUT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_ACCOUNT_LOCKED_OUT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_OR_INVALID_OXID">
            <summary>
             The object exporter specified was not found.
            </summary>
            <remarks>An HRESULT from Windows error code OR_INVALID_OXID: <c>HRESULT_FROM_WIN32(OR_INVALID_OXID)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.OR_INVALID_OXID"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_OR_INVALID_OID">
            <summary>
             The object specified was not found.
            </summary>
            <remarks>An HRESULT from Windows error code OR_INVALID_OID: <c>HRESULT_FROM_WIN32(OR_INVALID_OID)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.OR_INVALID_OID"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_OR_INVALID_SET">
            <summary>
             The object resolver set specified was not found.
            </summary>
            <remarks>An HRESULT from Windows error code OR_INVALID_SET: <c>HRESULT_FROM_WIN32(OR_INVALID_SET)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.OR_INVALID_SET"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_SEND_INCOMPLETE">
            <summary>
             Some data remains to be sent in the request buffer.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_SEND_INCOMPLETE: <c>HRESULT_FROM_WIN32(RPC_S_SEND_INCOMPLETE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_SEND_INCOMPLETE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_INVALID_ASYNC_HANDLE">
            <summary>
             Invalid asynchronous remote procedure call handle.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_INVALID_ASYNC_HANDLE: <c>HRESULT_FROM_WIN32(RPC_S_INVALID_ASYNC_HANDLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_INVALID_ASYNC_HANDLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_INVALID_ASYNC_CALL">
            <summary>
             Invalid asynchronous RPC call handle for this operation.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_INVALID_ASYNC_CALL: <c>HRESULT_FROM_WIN32(RPC_S_INVALID_ASYNC_CALL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_INVALID_ASYNC_CALL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_X_PIPE_CLOSED">
            <summary>
             The RPC pipe object has already been closed.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_X_PIPE_CLOSED: <c>HRESULT_FROM_WIN32(RPC_X_PIPE_CLOSED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_X_PIPE_CLOSED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_X_PIPE_DISCIPLINE_ERROR">
            <summary>
             The RPC call completed before all pipes were processed.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_X_PIPE_DISCIPLINE_ERROR: <c>HRESULT_FROM_WIN32(RPC_X_PIPE_DISCIPLINE_ERROR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_X_PIPE_DISCIPLINE_ERROR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_X_PIPE_EMPTY">
            <summary>
             No more data is available from the RPC pipe.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_X_PIPE_EMPTY: <c>HRESULT_FROM_WIN32(RPC_X_PIPE_EMPTY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_X_PIPE_EMPTY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NO_SITENAME">
            <summary>
             No site name is available for this machine.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NO_SITENAME: <c>HRESULT_FROM_WIN32(ERROR_NO_SITENAME)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_SITENAME"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CANT_ACCESS_FILE">
            <summary>
             The file cannot be accessed by the system.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CANT_ACCESS_FILE: <c>HRESULT_FROM_WIN32(ERROR_CANT_ACCESS_FILE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CANT_ACCESS_FILE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CANT_RESOLVE_FILENAME">
            <summary>
             The name of the file cannot be resolved by the system.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CANT_RESOLVE_FILENAME: <c>HRESULT_FROM_WIN32(ERROR_CANT_RESOLVE_FILENAME)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CANT_RESOLVE_FILENAME"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_ENTRY_TYPE_MISMATCH">
            <summary>
             The entry is not of the expected type.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_ENTRY_TYPE_MISMATCH: <c>HRESULT_FROM_WIN32(RPC_S_ENTRY_TYPE_MISMATCH)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_ENTRY_TYPE_MISMATCH"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_NOT_ALL_OBJS_EXPORTED">
            <summary>
             Not all object UUIDs could be exported to the specified entry.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_NOT_ALL_OBJS_EXPORTED: <c>HRESULT_FROM_WIN32(RPC_S_NOT_ALL_OBJS_EXPORTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_NOT_ALL_OBJS_EXPORTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_INTERFACE_NOT_EXPORTED">
            <summary>
             Interface could not be exported to the specified entry.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_INTERFACE_NOT_EXPORTED: <c>HRESULT_FROM_WIN32(RPC_S_INTERFACE_NOT_EXPORTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_INTERFACE_NOT_EXPORTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_PROFILE_NOT_ADDED">
            <summary>
             The specified profile entry could not be added.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_PROFILE_NOT_ADDED: <c>HRESULT_FROM_WIN32(RPC_S_PROFILE_NOT_ADDED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_PROFILE_NOT_ADDED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_PRF_ELT_NOT_ADDED">
            <summary>
             The specified profile element could not be added.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_PRF_ELT_NOT_ADDED: <c>HRESULT_FROM_WIN32(RPC_S_PRF_ELT_NOT_ADDED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_PRF_ELT_NOT_ADDED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_PRF_ELT_NOT_REMOVED">
            <summary>
             The specified profile element could not be removed.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_PRF_ELT_NOT_REMOVED: <c>HRESULT_FROM_WIN32(RPC_S_PRF_ELT_NOT_REMOVED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_PRF_ELT_NOT_REMOVED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_GRP_ELT_NOT_ADDED">
            <summary>
             The group element could not be added.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_GRP_ELT_NOT_ADDED: <c>HRESULT_FROM_WIN32(RPC_S_GRP_ELT_NOT_ADDED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_GRP_ELT_NOT_ADDED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_RPC_S_GRP_ELT_NOT_REMOVED">
            <summary>
             The group element could not be removed.
            </summary>
            <remarks>An HRESULT from Windows error code RPC_S_GRP_ELT_NOT_REMOVED: <c>HRESULT_FROM_WIN32(RPC_S_GRP_ELT_NOT_REMOVED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.RPC_S_GRP_ELT_NOT_REMOVED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_KM_DRIVER_BLOCKED">
            <summary>
             The printer driver is not compatible with a policy enabled on your computer that blocks NT 4.0 drivers.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_KM_DRIVER_BLOCKED: <c>HRESULT_FROM_WIN32(ERROR_KM_DRIVER_BLOCKED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_KM_DRIVER_BLOCKED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CONTEXT_EXPIRED">
            <summary>
             The context has expired and can no longer be used.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CONTEXT_EXPIRED: <c>HRESULT_FROM_WIN32(ERROR_CONTEXT_EXPIRED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CONTEXT_EXPIRED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_PER_USER_TRUST_QUOTA_EXCEEDED">
            <summary>
             The current user's delegated trust creation quota has been exceeded.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_PER_USER_TRUST_QUOTA_EXCEEDED: <c>HRESULT_FROM_WIN32(ERROR_PER_USER_TRUST_QUOTA_EXCEEDED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_PER_USER_TRUST_QUOTA_EXCEEDED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_ALL_USER_TRUST_QUOTA_EXCEEDED">
            <summary>
             The total delegated trust creation quota has been exceeded.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_ALL_USER_TRUST_QUOTA_EXCEEDED: <c>HRESULT_FROM_WIN32(ERROR_ALL_USER_TRUST_QUOTA_EXCEEDED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_ALL_USER_TRUST_QUOTA_EXCEEDED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_USER_DELETE_TRUST_QUOTA_EXCEEDED">
            <summary>
             The current user's delegated trust deletion quota has been exceeded.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_USER_DELETE_TRUST_QUOTA_EXCEEDED: <c>HRESULT_FROM_WIN32(ERROR_USER_DELETE_TRUST_QUOTA_EXCEEDED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_USER_DELETE_TRUST_QUOTA_EXCEEDED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_AUTHENTICATION_FIREWALL_FAILED">
            <summary>
             Logon Failure: The machine you are logging onto is protected by an authentication firewall.  The specified account is not allowed to authenticate to the machine.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_AUTHENTICATION_FIREWALL_FAILED: <c>HRESULT_FROM_WIN32(ERROR_AUTHENTICATION_FIREWALL_FAILED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_AUTHENTICATION_FIREWALL_FAILED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_REMOTE_PRINT_CONNECTIONS_BLOCKED">
            <summary>
             Remote connections to the Print Spooler are blocked by a policy set on your machine.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_REMOTE_PRINT_CONNECTIONS_BLOCKED: <c>HRESULT_FROM_WIN32(ERROR_REMOTE_PRINT_CONNECTIONS_BLOCKED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_REMOTE_PRINT_CONNECTIONS_BLOCKED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_PIXEL_FORMAT">
            <summary>
             The pixel format is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_PIXEL_FORMAT: <c>HRESULT_FROM_WIN32(ERROR_INVALID_PIXEL_FORMAT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_PIXEL_FORMAT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_BAD_DRIVER">
            <summary>
             The specified driver is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_BAD_DRIVER: <c>HRESULT_FROM_WIN32(ERROR_BAD_DRIVER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_DRIVER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_WINDOW_STYLE">
            <summary>
             The window style or class attribute is invalid for this operation.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_WINDOW_STYLE: <c>HRESULT_FROM_WIN32(ERROR_INVALID_WINDOW_STYLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_WINDOW_STYLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_METAFILE_NOT_SUPPORTED">
            <summary>
             The requested metafile operation is not supported.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_METAFILE_NOT_SUPPORTED: <c>HRESULT_FROM_WIN32(ERROR_METAFILE_NOT_SUPPORTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_METAFILE_NOT_SUPPORTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_TRANSFORM_NOT_SUPPORTED">
            <summary>
             The requested transformation operation is not supported.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_TRANSFORM_NOT_SUPPORTED: <c>HRESULT_FROM_WIN32(ERROR_TRANSFORM_NOT_SUPPORTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_TRANSFORM_NOT_SUPPORTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLIPPING_NOT_SUPPORTED">
            <summary>
             The requested clipping operation is not supported.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLIPPING_NOT_SUPPORTED: <c>HRESULT_FROM_WIN32(ERROR_CLIPPING_NOT_SUPPORTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLIPPING_NOT_SUPPORTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_CMM">
            <summary>
             The specified color management module is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_CMM: <c>HRESULT_FROM_WIN32(ERROR_INVALID_CMM)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_CMM"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_PROFILE">
            <summary>
             The specified color profile is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_PROFILE: <c>HRESULT_FROM_WIN32(ERROR_INVALID_PROFILE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_PROFILE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_TAG_NOT_FOUND">
            <summary>
             The specified tag was not found.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_TAG_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_TAG_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_TAG_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_TAG_NOT_PRESENT">
            <summary>
             A required tag is not present.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_TAG_NOT_PRESENT: <c>HRESULT_FROM_WIN32(ERROR_TAG_NOT_PRESENT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_TAG_NOT_PRESENT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DUPLICATE_TAG">
            <summary>
             The specified tag is already present.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DUPLICATE_TAG: <c>HRESULT_FROM_WIN32(ERROR_DUPLICATE_TAG)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DUPLICATE_TAG"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_PROFILE_NOT_ASSOCIATED_WITH_DEVICE">
            <summary>
             The specified color profile is not associated with any device.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_PROFILE_NOT_ASSOCIATED_WITH_DEVICE: <c>HRESULT_FROM_WIN32(ERROR_PROFILE_NOT_ASSOCIATED_WITH_DEVICE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_PROFILE_NOT_ASSOCIATED_WITH_DEVICE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_PROFILE_NOT_FOUND">
            <summary>
             The specified color profile was not found.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_PROFILE_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_PROFILE_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_PROFILE_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_COLORSPACE">
            <summary>
             The specified color space is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_COLORSPACE: <c>HRESULT_FROM_WIN32(ERROR_INVALID_COLORSPACE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_COLORSPACE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_ICM_NOT_ENABLED">
            <summary>
             Image Color Management is not enabled.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_ICM_NOT_ENABLED: <c>HRESULT_FROM_WIN32(ERROR_ICM_NOT_ENABLED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_ICM_NOT_ENABLED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DELETING_ICM_XFORM">
            <summary>
             There was an error while deleting the color transform.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DELETING_ICM_XFORM: <c>HRESULT_FROM_WIN32(ERROR_DELETING_ICM_XFORM)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DELETING_ICM_XFORM"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_TRANSFORM">
            <summary>
             The specified color transform is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_TRANSFORM: <c>HRESULT_FROM_WIN32(ERROR_INVALID_TRANSFORM)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_TRANSFORM"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_COLORSPACE_MISMATCH">
            <summary>
             The specified transform does not match the bitmap's color space.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_COLORSPACE_MISMATCH: <c>HRESULT_FROM_WIN32(ERROR_COLORSPACE_MISMATCH)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_COLORSPACE_MISMATCH"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_COLORINDEX">
            <summary>
             The specified named color index is not present in the profile.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_COLORINDEX: <c>HRESULT_FROM_WIN32(ERROR_INVALID_COLORINDEX)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_COLORINDEX"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CONNECTED_OTHER_PASSWORD">
            <summary>
             The network connection was made successfully, but the user had to be prompted for a password other than the one originally specified.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CONNECTED_OTHER_PASSWORD: <c>HRESULT_FROM_WIN32(ERROR_CONNECTED_OTHER_PASSWORD)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CONNECTED_OTHER_PASSWORD"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CONNECTED_OTHER_PASSWORD_DEFAULT">
            <summary>
             The network connection was made successfully using default credentials.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CONNECTED_OTHER_PASSWORD_DEFAULT: <c>HRESULT_FROM_WIN32(ERROR_CONNECTED_OTHER_PASSWORD_DEFAULT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CONNECTED_OTHER_PASSWORD_DEFAULT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_BAD_USERNAME">
            <summary>
             The specified username is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_BAD_USERNAME: <c>HRESULT_FROM_WIN32(ERROR_BAD_USERNAME)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_USERNAME"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NOT_CONNECTED">
            <summary>
             This network connection does not exist.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NOT_CONNECTED: <c>HRESULT_FROM_WIN32(ERROR_NOT_CONNECTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_CONNECTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_OPEN_FILES">
            <summary>
             This network connection has files open or requests pending.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_OPEN_FILES: <c>HRESULT_FROM_WIN32(ERROR_OPEN_FILES)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_OPEN_FILES"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_ACTIVE_CONNECTIONS">
            <summary>
             Active connections still exist.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_ACTIVE_CONNECTIONS: <c>HRESULT_FROM_WIN32(ERROR_ACTIVE_CONNECTIONS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_ACTIVE_CONNECTIONS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DEVICE_IN_USE">
            <summary>
             The device is in use by an active process and cannot be disconnected.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DEVICE_IN_USE: <c>HRESULT_FROM_WIN32(ERROR_DEVICE_IN_USE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DEVICE_IN_USE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_UNKNOWN_PRINT_MONITOR">
            <summary>
             The specified print monitor is unknown.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_UNKNOWN_PRINT_MONITOR: <c>HRESULT_FROM_WIN32(ERROR_UNKNOWN_PRINT_MONITOR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_UNKNOWN_PRINT_MONITOR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_PRINTER_DRIVER_IN_USE">
            <summary>
             The specified printer driver is currently in use.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_PRINTER_DRIVER_IN_USE: <c>HRESULT_FROM_WIN32(ERROR_PRINTER_DRIVER_IN_USE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_PRINTER_DRIVER_IN_USE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SPOOL_FILE_NOT_FOUND">
            <summary>
             The spool file was not found.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SPOOL_FILE_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_SPOOL_FILE_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SPOOL_FILE_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SPL_NO_STARTDOC">
            <summary>
             A StartDocPrinter call was not issued.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SPL_NO_STARTDOC: <c>HRESULT_FROM_WIN32(ERROR_SPL_NO_STARTDOC)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SPL_NO_STARTDOC"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SPL_NO_ADDJOB">
            <summary>
             An AddJob call was not issued.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SPL_NO_ADDJOB: <c>HRESULT_FROM_WIN32(ERROR_SPL_NO_ADDJOB)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SPL_NO_ADDJOB"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_PRINT_PROCESSOR_ALREADY_INSTALLED">
            <summary>
             The specified print processor has already been installed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_PRINT_PROCESSOR_ALREADY_INSTALLED: <c>HRESULT_FROM_WIN32(ERROR_PRINT_PROCESSOR_ALREADY_INSTALLED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_PRINT_PROCESSOR_ALREADY_INSTALLED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_PRINT_MONITOR_ALREADY_INSTALLED">
            <summary>
             The specified print monitor has already been installed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_PRINT_MONITOR_ALREADY_INSTALLED: <c>HRESULT_FROM_WIN32(ERROR_PRINT_MONITOR_ALREADY_INSTALLED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_PRINT_MONITOR_ALREADY_INSTALLED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_PRINT_MONITOR">
            <summary>
             The specified print monitor does not have the required functions.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_PRINT_MONITOR: <c>HRESULT_FROM_WIN32(ERROR_INVALID_PRINT_MONITOR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_PRINT_MONITOR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_PRINT_MONITOR_IN_USE">
            <summary>
             The specified print monitor is currently in use.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_PRINT_MONITOR_IN_USE: <c>HRESULT_FROM_WIN32(ERROR_PRINT_MONITOR_IN_USE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_PRINT_MONITOR_IN_USE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_PRINTER_HAS_JOBS_QUEUED">
            <summary>
             The requested operation is not allowed when there are jobs queued to the printer.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_PRINTER_HAS_JOBS_QUEUED: <c>HRESULT_FROM_WIN32(ERROR_PRINTER_HAS_JOBS_QUEUED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_PRINTER_HAS_JOBS_QUEUED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SUCCESS_REBOOT_REQUIRED">
            <summary>
             The requested operation is successful. Changes will not be effective until the system is rebooted.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SUCCESS_REBOOT_REQUIRED: <c>HRESULT_FROM_WIN32(ERROR_SUCCESS_REBOOT_REQUIRED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SUCCESS_REBOOT_REQUIRED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SUCCESS_RESTART_REQUIRED">
            <summary>
             The requested operation is successful. Changes will not be effective until the service is restarted.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SUCCESS_RESTART_REQUIRED: <c>HRESULT_FROM_WIN32(ERROR_SUCCESS_RESTART_REQUIRED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SUCCESS_RESTART_REQUIRED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_PRINTER_NOT_FOUND">
            <summary>
             No printers were found.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_PRINTER_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_PRINTER_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_PRINTER_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_PRINTER_DRIVER_WARNED">
            <summary>
             The printer driver is known to be unreliable.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_PRINTER_DRIVER_WARNED: <c>HRESULT_FROM_WIN32(ERROR_PRINTER_DRIVER_WARNED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_PRINTER_DRIVER_WARNED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_PRINTER_DRIVER_BLOCKED">
            <summary>
             The printer driver is known to harm the system.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_PRINTER_DRIVER_BLOCKED: <c>HRESULT_FROM_WIN32(ERROR_PRINTER_DRIVER_BLOCKED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_PRINTER_DRIVER_BLOCKED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_WINS_INTERNAL">
            <summary>
             WINS encountered an error while processing the command.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_WINS_INTERNAL: <c>HRESULT_FROM_WIN32(ERROR_WINS_INTERNAL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_WINS_INTERNAL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CAN_NOT_DEL_LOCAL_WINS">
            <summary>
             The local WINS cannot be deleted.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CAN_NOT_DEL_LOCAL_WINS: <c>HRESULT_FROM_WIN32(ERROR_CAN_NOT_DEL_LOCAL_WINS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CAN_NOT_DEL_LOCAL_WINS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_STATIC_INIT">
            <summary>
             The importation from the file failed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_STATIC_INIT: <c>HRESULT_FROM_WIN32(ERROR_STATIC_INIT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_STATIC_INIT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INC_BACKUP">
            <summary>
             The backup failed. Was a full backup done before?
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INC_BACKUP: <c>HRESULT_FROM_WIN32(ERROR_INC_BACKUP)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INC_BACKUP"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_FULL_BACKUP">
            <summary>
             The backup failed. Check the directory to which you are backing the database.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_FULL_BACKUP: <c>HRESULT_FROM_WIN32(ERROR_FULL_BACKUP)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_FULL_BACKUP"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_REC_NON_EXISTENT">
            <summary>
             The name does not exist in the WINS database.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_REC_NON_EXISTENT: <c>HRESULT_FROM_WIN32(ERROR_REC_NON_EXISTENT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_REC_NON_EXISTENT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_RPL_NOT_ALLOWED">
            <summary>
             Replication with a nonconfigured partner is not allowed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_RPL_NOT_ALLOWED: <c>HRESULT_FROM_WIN32(ERROR_RPL_NOT_ALLOWED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_RPL_NOT_ALLOWED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DHCP_ADDRESS_CONFLICT">
            <summary>
             The DHCP client has obtained an IP address that is already in use on the network. The local interface will be disabled until the DHCP client can obtain a new address.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DHCP_ADDRESS_CONFLICT: <c>HRESULT_FROM_WIN32(ERROR_DHCP_ADDRESS_CONFLICT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DHCP_ADDRESS_CONFLICT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_WMI_GUID_NOT_FOUND">
            <summary>
             The GUID passed was not recognized as valid by a WMI data provider.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_WMI_GUID_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_WMI_GUID_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_WMI_GUID_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_WMI_INSTANCE_NOT_FOUND">
            <summary>
             The instance name passed was not recognized as valid by a WMI data provider.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_WMI_INSTANCE_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_WMI_INSTANCE_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_WMI_INSTANCE_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_WMI_ITEMID_NOT_FOUND">
            <summary>
             The data item ID passed was not recognized as valid by a WMI data provider.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_WMI_ITEMID_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_WMI_ITEMID_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_WMI_ITEMID_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_WMI_TRY_AGAIN">
            <summary>
             The WMI request could not be completed and should be retried.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_WMI_TRY_AGAIN: <c>HRESULT_FROM_WIN32(ERROR_WMI_TRY_AGAIN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_WMI_TRY_AGAIN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_WMI_DP_NOT_FOUND">
            <summary>
             The WMI data provider could not be located.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_WMI_DP_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_WMI_DP_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_WMI_DP_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_WMI_UNRESOLVED_INSTANCE_REF">
            <summary>
             The WMI data provider references an instance set that has not been registered.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_WMI_UNRESOLVED_INSTANCE_REF: <c>HRESULT_FROM_WIN32(ERROR_WMI_UNRESOLVED_INSTANCE_REF)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_WMI_UNRESOLVED_INSTANCE_REF"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_WMI_ALREADY_ENABLED">
            <summary>
             The WMI data block or event notification has already been enabled.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_WMI_ALREADY_ENABLED: <c>HRESULT_FROM_WIN32(ERROR_WMI_ALREADY_ENABLED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_WMI_ALREADY_ENABLED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_WMI_GUID_DISCONNECTED">
            <summary>
             The WMI data block is no longer available.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_WMI_GUID_DISCONNECTED: <c>HRESULT_FROM_WIN32(ERROR_WMI_GUID_DISCONNECTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_WMI_GUID_DISCONNECTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_WMI_SERVER_UNAVAILABLE">
            <summary>
             The WMI data service is not available.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_WMI_SERVER_UNAVAILABLE: <c>HRESULT_FROM_WIN32(ERROR_WMI_SERVER_UNAVAILABLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_WMI_SERVER_UNAVAILABLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_WMI_DP_FAILED">
            <summary>
             The WMI data provider failed to carry out the request.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_WMI_DP_FAILED: <c>HRESULT_FROM_WIN32(ERROR_WMI_DP_FAILED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_WMI_DP_FAILED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_WMI_INVALID_MOF">
            <summary>
             The WMI MOF information is not valid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_WMI_INVALID_MOF: <c>HRESULT_FROM_WIN32(ERROR_WMI_INVALID_MOF)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_WMI_INVALID_MOF"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_WMI_INVALID_REGINFO">
            <summary>
             The WMI registration information is not valid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_WMI_INVALID_REGINFO: <c>HRESULT_FROM_WIN32(ERROR_WMI_INVALID_REGINFO)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_WMI_INVALID_REGINFO"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_WMI_ALREADY_DISABLED">
            <summary>
             The WMI data block or event notification has already been disabled.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_WMI_ALREADY_DISABLED: <c>HRESULT_FROM_WIN32(ERROR_WMI_ALREADY_DISABLED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_WMI_ALREADY_DISABLED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_WMI_READ_ONLY">
            <summary>
             The WMI data item or data block is read only.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_WMI_READ_ONLY: <c>HRESULT_FROM_WIN32(ERROR_WMI_READ_ONLY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_WMI_READ_ONLY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_WMI_SET_FAILURE">
            <summary>
             The WMI data item or data block could not be changed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_WMI_SET_FAILURE: <c>HRESULT_FROM_WIN32(ERROR_WMI_SET_FAILURE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_WMI_SET_FAILURE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_MEDIA">
            <summary>
             The media identifier does not represent a valid medium.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_MEDIA: <c>HRESULT_FROM_WIN32(ERROR_INVALID_MEDIA)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_MEDIA"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_LIBRARY">
            <summary>
             The library identifier does not represent a valid library.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_LIBRARY: <c>HRESULT_FROM_WIN32(ERROR_INVALID_LIBRARY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_LIBRARY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_MEDIA_POOL">
            <summary>
             The media pool identifier does not represent a valid media pool.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_MEDIA_POOL: <c>HRESULT_FROM_WIN32(ERROR_INVALID_MEDIA_POOL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_MEDIA_POOL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DRIVE_MEDIA_MISMATCH">
            <summary>
             The drive and medium are not compatible or exist in different libraries.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DRIVE_MEDIA_MISMATCH: <c>HRESULT_FROM_WIN32(ERROR_DRIVE_MEDIA_MISMATCH)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DRIVE_MEDIA_MISMATCH"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_MEDIA_OFFLINE">
            <summary>
             The medium currently exists in an offline library and must be online to perform this operation.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_MEDIA_OFFLINE: <c>HRESULT_FROM_WIN32(ERROR_MEDIA_OFFLINE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_MEDIA_OFFLINE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_LIBRARY_OFFLINE">
            <summary>
             The operation cannot be performed on an offline library.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_LIBRARY_OFFLINE: <c>HRESULT_FROM_WIN32(ERROR_LIBRARY_OFFLINE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_LIBRARY_OFFLINE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_EMPTY">
            <summary>
             The library, drive, or media pool is empty.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_EMPTY: <c>HRESULT_FROM_WIN32(ERROR_EMPTY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_EMPTY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NOT_EMPTY">
            <summary>
             The library, drive, or media pool must be empty to perform this operation.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NOT_EMPTY: <c>HRESULT_FROM_WIN32(ERROR_NOT_EMPTY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_EMPTY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_MEDIA_UNAVAILABLE">
            <summary>
             No media is currently available in this media pool or library.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_MEDIA_UNAVAILABLE: <c>HRESULT_FROM_WIN32(ERROR_MEDIA_UNAVAILABLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_MEDIA_UNAVAILABLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_RESOURCE_DISABLED">
            <summary>
             A resource required for this operation is disabled.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_RESOURCE_DISABLED: <c>HRESULT_FROM_WIN32(ERROR_RESOURCE_DISABLED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_RESOURCE_DISABLED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_CLEANER">
            <summary>
             The media identifier does not represent a valid cleaner.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_CLEANER: <c>HRESULT_FROM_WIN32(ERROR_INVALID_CLEANER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_CLEANER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_UNABLE_TO_CLEAN">
            <summary>
             The drive cannot be cleaned or does not support cleaning.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_UNABLE_TO_CLEAN: <c>HRESULT_FROM_WIN32(ERROR_UNABLE_TO_CLEAN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_UNABLE_TO_CLEAN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_OBJECT_NOT_FOUND">
            <summary>
             The object identifier does not represent a valid object.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_OBJECT_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_OBJECT_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_OBJECT_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DATABASE_FAILURE">
            <summary>
             Unable to read from or write to the database.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DATABASE_FAILURE: <c>HRESULT_FROM_WIN32(ERROR_DATABASE_FAILURE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DATABASE_FAILURE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DATABASE_FULL">
            <summary>
             The database is full.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DATABASE_FULL: <c>HRESULT_FROM_WIN32(ERROR_DATABASE_FULL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DATABASE_FULL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_MEDIA_INCOMPATIBLE">
            <summary>
             The medium is not compatible with the device or media pool.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_MEDIA_INCOMPATIBLE: <c>HRESULT_FROM_WIN32(ERROR_MEDIA_INCOMPATIBLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_MEDIA_INCOMPATIBLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_RESOURCE_NOT_PRESENT">
            <summary>
             The resource required for this operation does not exist.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_RESOURCE_NOT_PRESENT: <c>HRESULT_FROM_WIN32(ERROR_RESOURCE_NOT_PRESENT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_RESOURCE_NOT_PRESENT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_OPERATION">
            <summary>
             The operation identifier is not valid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_OPERATION: <c>HRESULT_FROM_WIN32(ERROR_INVALID_OPERATION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_OPERATION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_MEDIA_NOT_AVAILABLE">
            <summary>
             The media is not mounted or ready for use.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_MEDIA_NOT_AVAILABLE: <c>HRESULT_FROM_WIN32(ERROR_MEDIA_NOT_AVAILABLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_MEDIA_NOT_AVAILABLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DEVICE_NOT_AVAILABLE">
            <summary>
             The device is not ready for use.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DEVICE_NOT_AVAILABLE: <c>HRESULT_FROM_WIN32(ERROR_DEVICE_NOT_AVAILABLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DEVICE_NOT_AVAILABLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_REQUEST_REFUSED">
            <summary>
             The operator or administrator has refused the request.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_REQUEST_REFUSED: <c>HRESULT_FROM_WIN32(ERROR_REQUEST_REFUSED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_REQUEST_REFUSED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_DRIVE_OBJECT">
            <summary>
             The drive identifier does not represent a valid drive.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_DRIVE_OBJECT: <c>HRESULT_FROM_WIN32(ERROR_INVALID_DRIVE_OBJECT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_DRIVE_OBJECT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_LIBRARY_FULL">
            <summary>
             Library is full.  No slot is available for use.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_LIBRARY_FULL: <c>HRESULT_FROM_WIN32(ERROR_LIBRARY_FULL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_LIBRARY_FULL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_MEDIUM_NOT_ACCESSIBLE">
            <summary>
             The transport cannot access the medium.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_MEDIUM_NOT_ACCESSIBLE: <c>HRESULT_FROM_WIN32(ERROR_MEDIUM_NOT_ACCESSIBLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_MEDIUM_NOT_ACCESSIBLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_UNABLE_TO_LOAD_MEDIUM">
            <summary>
             Unable to load the medium into the drive.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_UNABLE_TO_LOAD_MEDIUM: <c>HRESULT_FROM_WIN32(ERROR_UNABLE_TO_LOAD_MEDIUM)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_UNABLE_TO_LOAD_MEDIUM"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_UNABLE_TO_INVENTORY_DRIVE">
            <summary>
             Unable to retrieve the drive status.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_UNABLE_TO_INVENTORY_DRIVE: <c>HRESULT_FROM_WIN32(ERROR_UNABLE_TO_INVENTORY_DRIVE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_UNABLE_TO_INVENTORY_DRIVE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_UNABLE_TO_INVENTORY_SLOT">
            <summary>
             Unable to retrieve the slot status.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_UNABLE_TO_INVENTORY_SLOT: <c>HRESULT_FROM_WIN32(ERROR_UNABLE_TO_INVENTORY_SLOT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_UNABLE_TO_INVENTORY_SLOT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_UNABLE_TO_INVENTORY_TRANSPORT">
            <summary>
             Unable to retrieve status about the transport.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_UNABLE_TO_INVENTORY_TRANSPORT: <c>HRESULT_FROM_WIN32(ERROR_UNABLE_TO_INVENTORY_TRANSPORT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_UNABLE_TO_INVENTORY_TRANSPORT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_TRANSPORT_FULL">
            <summary>
             Cannot use the transport because it is already in use.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_TRANSPORT_FULL: <c>HRESULT_FROM_WIN32(ERROR_TRANSPORT_FULL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_TRANSPORT_FULL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CONTROLLING_IEPORT">
            <summary>
             Unable to open or close the inject/eject port.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CONTROLLING_IEPORT: <c>HRESULT_FROM_WIN32(ERROR_CONTROLLING_IEPORT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CONTROLLING_IEPORT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_UNABLE_TO_EJECT_MOUNTED_MEDIA">
            <summary>
             Unable to eject the medium because it is in a drive.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_UNABLE_TO_EJECT_MOUNTED_MEDIA: <c>HRESULT_FROM_WIN32(ERROR_UNABLE_TO_EJECT_MOUNTED_MEDIA)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_UNABLE_TO_EJECT_MOUNTED_MEDIA"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLEANER_SLOT_SET">
            <summary>
             A cleaner slot is already reserved.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLEANER_SLOT_SET: <c>HRESULT_FROM_WIN32(ERROR_CLEANER_SLOT_SET)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLEANER_SLOT_SET"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLEANER_SLOT_NOT_SET">
            <summary>
             A cleaner slot is not reserved.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLEANER_SLOT_NOT_SET: <c>HRESULT_FROM_WIN32(ERROR_CLEANER_SLOT_NOT_SET)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLEANER_SLOT_NOT_SET"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLEANER_CARTRIDGE_SPENT">
            <summary>
             The cleaner cartridge has performed the maximum number of drive cleanings.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLEANER_CARTRIDGE_SPENT: <c>HRESULT_FROM_WIN32(ERROR_CLEANER_CARTRIDGE_SPENT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLEANER_CARTRIDGE_SPENT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_UNEXPECTED_OMID">
            <summary>
             Unexpected on-medium identifier.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_UNEXPECTED_OMID: <c>HRESULT_FROM_WIN32(ERROR_UNEXPECTED_OMID)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_UNEXPECTED_OMID"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CANT_DELETE_LAST_ITEM">
            <summary>
             The last remaining item in this group or resource cannot be deleted.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CANT_DELETE_LAST_ITEM: <c>HRESULT_FROM_WIN32(ERROR_CANT_DELETE_LAST_ITEM)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CANT_DELETE_LAST_ITEM"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_MESSAGE_EXCEEDS_MAX_SIZE">
            <summary>
             The message provided exceeds the maximum size allowed for this parameter.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_MESSAGE_EXCEEDS_MAX_SIZE: <c>HRESULT_FROM_WIN32(ERROR_MESSAGE_EXCEEDS_MAX_SIZE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_MESSAGE_EXCEEDS_MAX_SIZE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_VOLUME_CONTAINS_SYS_FILES">
            <summary>
             The volume contains system or paging files.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_VOLUME_CONTAINS_SYS_FILES: <c>HRESULT_FROM_WIN32(ERROR_VOLUME_CONTAINS_SYS_FILES)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_VOLUME_CONTAINS_SYS_FILES"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INDIGENOUS_TYPE">
            <summary>
             The media type cannot be removed from this library since at least one drive in the library reports it can support this media type.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INDIGENOUS_TYPE: <c>HRESULT_FROM_WIN32(ERROR_INDIGENOUS_TYPE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INDIGENOUS_TYPE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NO_SUPPORTING_DRIVES">
            <summary>
             This offline media cannot be mounted on this system since no enabled drives are present which can be used.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NO_SUPPORTING_DRIVES: <c>HRESULT_FROM_WIN32(ERROR_NO_SUPPORTING_DRIVES)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_SUPPORTING_DRIVES"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLEANER_CARTRIDGE_INSTALLED">
            <summary>
             A cleaner cartridge is present in the tape library.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLEANER_CARTRIDGE_INSTALLED: <c>HRESULT_FROM_WIN32(ERROR_CLEANER_CARTRIDGE_INSTALLED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLEANER_CARTRIDGE_INSTALLED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IEPORT_FULL">
            <summary>
             Cannot use the ieport because it is not empty.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IEPORT_FULL: <c>HRESULT_FROM_WIN32(ERROR_IEPORT_FULL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IEPORT_FULL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_FILE_OFFLINE">
            <summary>
             The remote storage service was not able to recall the file.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_FILE_OFFLINE: <c>HRESULT_FROM_WIN32(ERROR_FILE_OFFLINE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_FILE_OFFLINE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_REMOTE_STORAGE_NOT_ACTIVE">
            <summary>
             The remote storage service is not operational at this time.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_REMOTE_STORAGE_NOT_ACTIVE: <c>HRESULT_FROM_WIN32(ERROR_REMOTE_STORAGE_NOT_ACTIVE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_REMOTE_STORAGE_NOT_ACTIVE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_REMOTE_STORAGE_MEDIA_ERROR">
            <summary>
             The remote storage service encountered a media error.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_REMOTE_STORAGE_MEDIA_ERROR: <c>HRESULT_FROM_WIN32(ERROR_REMOTE_STORAGE_MEDIA_ERROR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_REMOTE_STORAGE_MEDIA_ERROR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NOT_A_REPARSE_POINT">
            <summary>
             The file or directory is not a reparse point.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NOT_A_REPARSE_POINT: <c>HRESULT_FROM_WIN32(ERROR_NOT_A_REPARSE_POINT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_A_REPARSE_POINT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_REPARSE_ATTRIBUTE_CONFLICT">
            <summary>
             The reparse point attribute cannot be set because it conflicts with an existing attribute.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_REPARSE_ATTRIBUTE_CONFLICT: <c>HRESULT_FROM_WIN32(ERROR_REPARSE_ATTRIBUTE_CONFLICT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_REPARSE_ATTRIBUTE_CONFLICT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_REPARSE_DATA">
            <summary>
             The data present in the reparse point buffer is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_REPARSE_DATA: <c>HRESULT_FROM_WIN32(ERROR_INVALID_REPARSE_DATA)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_REPARSE_DATA"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_REPARSE_TAG_INVALID">
            <summary>
             The tag present in the reparse point buffer is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_REPARSE_TAG_INVALID: <c>HRESULT_FROM_WIN32(ERROR_REPARSE_TAG_INVALID)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_REPARSE_TAG_INVALID"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_REPARSE_TAG_MISMATCH">
            <summary>
             There is a mismatch between the tag specified in the request and the tag present in the reparse point.
             
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_REPARSE_TAG_MISMATCH: <c>HRESULT_FROM_WIN32(ERROR_REPARSE_TAG_MISMATCH)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_REPARSE_TAG_MISMATCH"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_VOLUME_NOT_SIS_ENABLED">
            <summary>
             Single Instance Storage is not available on this volume.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_VOLUME_NOT_SIS_ENABLED: <c>HRESULT_FROM_WIN32(ERROR_VOLUME_NOT_SIS_ENABLED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_VOLUME_NOT_SIS_ENABLED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DEPENDENT_RESOURCE_EXISTS">
            <summary>
             The cluster resource cannot be moved to another group because other resources are dependent on it.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DEPENDENT_RESOURCE_EXISTS: <c>HRESULT_FROM_WIN32(ERROR_DEPENDENT_RESOURCE_EXISTS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DEPENDENT_RESOURCE_EXISTS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DEPENDENCY_NOT_FOUND">
            <summary>
             The cluster resource dependency cannot be found.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DEPENDENCY_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_DEPENDENCY_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DEPENDENCY_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DEPENDENCY_ALREADY_EXISTS">
            <summary>
             The cluster resource cannot be made dependent on the specified resource because it is already dependent.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DEPENDENCY_ALREADY_EXISTS: <c>HRESULT_FROM_WIN32(ERROR_DEPENDENCY_ALREADY_EXISTS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DEPENDENCY_ALREADY_EXISTS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_RESOURCE_NOT_ONLINE">
            <summary>
             The cluster resource is not online.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_RESOURCE_NOT_ONLINE: <c>HRESULT_FROM_WIN32(ERROR_RESOURCE_NOT_ONLINE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_RESOURCE_NOT_ONLINE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_HOST_NODE_NOT_AVAILABLE">
            <summary>
             A cluster node is not available for this operation.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_HOST_NODE_NOT_AVAILABLE: <c>HRESULT_FROM_WIN32(ERROR_HOST_NODE_NOT_AVAILABLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_HOST_NODE_NOT_AVAILABLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_RESOURCE_NOT_AVAILABLE">
            <summary>
             The cluster resource is not available.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_RESOURCE_NOT_AVAILABLE: <c>HRESULT_FROM_WIN32(ERROR_RESOURCE_NOT_AVAILABLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_RESOURCE_NOT_AVAILABLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_RESOURCE_NOT_FOUND">
            <summary>
             The cluster resource could not be found.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_RESOURCE_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_RESOURCE_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_RESOURCE_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SHUTDOWN_CLUSTER">
            <summary>
             The cluster is being shut down.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SHUTDOWN_CLUSTER: <c>HRESULT_FROM_WIN32(ERROR_SHUTDOWN_CLUSTER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SHUTDOWN_CLUSTER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CANT_EVICT_ACTIVE_NODE">
            <summary>
             A cluster node cannot be evicted from the cluster unless the node is down or it is the last node.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CANT_EVICT_ACTIVE_NODE: <c>HRESULT_FROM_WIN32(ERROR_CANT_EVICT_ACTIVE_NODE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CANT_EVICT_ACTIVE_NODE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_OBJECT_ALREADY_EXISTS">
            <summary>
             The object already exists.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_OBJECT_ALREADY_EXISTS: <c>HRESULT_FROM_WIN32(ERROR_OBJECT_ALREADY_EXISTS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_OBJECT_ALREADY_EXISTS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_OBJECT_IN_LIST">
            <summary>
             The object is already in the list.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_OBJECT_IN_LIST: <c>HRESULT_FROM_WIN32(ERROR_OBJECT_IN_LIST)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_OBJECT_IN_LIST"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_GROUP_NOT_AVAILABLE">
            <summary>
             The cluster group is not available for any new requests.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_GROUP_NOT_AVAILABLE: <c>HRESULT_FROM_WIN32(ERROR_GROUP_NOT_AVAILABLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_GROUP_NOT_AVAILABLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_GROUP_NOT_FOUND">
            <summary>
             The cluster group could not be found.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_GROUP_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_GROUP_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_GROUP_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_GROUP_NOT_ONLINE">
            <summary>
             The operation could not be completed because the cluster group is not online.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_GROUP_NOT_ONLINE: <c>HRESULT_FROM_WIN32(ERROR_GROUP_NOT_ONLINE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_GROUP_NOT_ONLINE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_HOST_NODE_NOT_RESOURCE_OWNER">
            <summary>
             The cluster node is not the owner of the resource.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_HOST_NODE_NOT_RESOURCE_OWNER: <c>HRESULT_FROM_WIN32(ERROR_HOST_NODE_NOT_RESOURCE_OWNER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_HOST_NODE_NOT_RESOURCE_OWNER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_HOST_NODE_NOT_GROUP_OWNER">
            <summary>
             The cluster node is not the owner of the group.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_HOST_NODE_NOT_GROUP_OWNER: <c>HRESULT_FROM_WIN32(ERROR_HOST_NODE_NOT_GROUP_OWNER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_HOST_NODE_NOT_GROUP_OWNER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_RESMON_CREATE_FAILED">
            <summary>
             The cluster resource could not be created in the specified resource monitor.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_RESMON_CREATE_FAILED: <c>HRESULT_FROM_WIN32(ERROR_RESMON_CREATE_FAILED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_RESMON_CREATE_FAILED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_RESMON_ONLINE_FAILED">
            <summary>
             The cluster resource could not be brought online by the resource monitor.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_RESMON_ONLINE_FAILED: <c>HRESULT_FROM_WIN32(ERROR_RESMON_ONLINE_FAILED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_RESMON_ONLINE_FAILED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_RESOURCE_ONLINE">
            <summary>
             The operation could not be completed because the cluster resource is online.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_RESOURCE_ONLINE: <c>HRESULT_FROM_WIN32(ERROR_RESOURCE_ONLINE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_RESOURCE_ONLINE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_QUORUM_RESOURCE">
            <summary>
             The cluster resource could not be deleted or brought offline because it is the quorum resource.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_QUORUM_RESOURCE: <c>HRESULT_FROM_WIN32(ERROR_QUORUM_RESOURCE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_QUORUM_RESOURCE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NOT_QUORUM_CAPABLE">
            <summary>
             The cluster could not make the specified resource a quorum resource because it is not capable of being a quorum resource.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NOT_QUORUM_CAPABLE: <c>HRESULT_FROM_WIN32(ERROR_NOT_QUORUM_CAPABLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_QUORUM_CAPABLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_SHUTTING_DOWN">
            <summary>
             The cluster software is shutting down.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_SHUTTING_DOWN: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_SHUTTING_DOWN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_SHUTTING_DOWN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_STATE">
            <summary>
             The group or resource is not in the correct state to perform the requested operation.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_STATE: <c>HRESULT_FROM_WIN32(ERROR_INVALID_STATE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_STATE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_RESOURCE_PROPERTIES_STORED">
            <summary>
             The properties were stored but not all changes will take effect until the next time the resource is brought online.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_RESOURCE_PROPERTIES_STORED: <c>HRESULT_FROM_WIN32(ERROR_RESOURCE_PROPERTIES_STORED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_RESOURCE_PROPERTIES_STORED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NOT_QUORUM_CLASS">
            <summary>
             The cluster could not make the specified resource a quorum resource because it does not belong to a shared storage class.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NOT_QUORUM_CLASS: <c>HRESULT_FROM_WIN32(ERROR_NOT_QUORUM_CLASS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_QUORUM_CLASS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CORE_RESOURCE">
            <summary>
             The cluster resource could not be deleted since it is a core resource.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CORE_RESOURCE: <c>HRESULT_FROM_WIN32(ERROR_CORE_RESOURCE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CORE_RESOURCE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_QUORUM_RESOURCE_ONLINE_FAILED">
            <summary>
             The quorum resource failed to come online.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_QUORUM_RESOURCE_ONLINE_FAILED: <c>HRESULT_FROM_WIN32(ERROR_QUORUM_RESOURCE_ONLINE_FAILED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_QUORUM_RESOURCE_ONLINE_FAILED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_QUORUMLOG_OPEN_FAILED">
            <summary>
             The quorum log could not be created or mounted successfully.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_QUORUMLOG_OPEN_FAILED: <c>HRESULT_FROM_WIN32(ERROR_QUORUMLOG_OPEN_FAILED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_QUORUMLOG_OPEN_FAILED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTERLOG_CORRUPT">
            <summary>
             The cluster log is corrupt.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTERLOG_CORRUPT: <c>HRESULT_FROM_WIN32(ERROR_CLUSTERLOG_CORRUPT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTERLOG_CORRUPT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTERLOG_RECORD_EXCEEDS_MAXSIZE">
            <summary>
             The record could not be written to the cluster log since it exceeds the maximum size.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTERLOG_RECORD_EXCEEDS_MAXSIZE: <c>HRESULT_FROM_WIN32(ERROR_CLUSTERLOG_RECORD_EXCEEDS_MAXSIZE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTERLOG_RECORD_EXCEEDS_MAXSIZE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTERLOG_EXCEEDS_MAXSIZE">
            <summary>
             The cluster log exceeds its maximum size.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTERLOG_EXCEEDS_MAXSIZE: <c>HRESULT_FROM_WIN32(ERROR_CLUSTERLOG_EXCEEDS_MAXSIZE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTERLOG_EXCEEDS_MAXSIZE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTERLOG_CHKPOINT_NOT_FOUND">
            <summary>
             No checkpoint record was found in the cluster log.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTERLOG_CHKPOINT_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_CLUSTERLOG_CHKPOINT_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTERLOG_CHKPOINT_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTERLOG_NOT_ENOUGH_SPACE">
            <summary>
             The minimum required disk space needed for logging is not available.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTERLOG_NOT_ENOUGH_SPACE: <c>HRESULT_FROM_WIN32(ERROR_CLUSTERLOG_NOT_ENOUGH_SPACE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTERLOG_NOT_ENOUGH_SPACE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_QUORUM_OWNER_ALIVE">
            <summary>
             The cluster node failed to take control of the quorum resource because the resource is owned by another active node.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_QUORUM_OWNER_ALIVE: <c>HRESULT_FROM_WIN32(ERROR_QUORUM_OWNER_ALIVE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_QUORUM_OWNER_ALIVE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NETWORK_NOT_AVAILABLE">
            <summary>
             A cluster network is not available for this operation.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NETWORK_NOT_AVAILABLE: <c>HRESULT_FROM_WIN32(ERROR_NETWORK_NOT_AVAILABLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NETWORK_NOT_AVAILABLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NODE_NOT_AVAILABLE">
            <summary>
             A cluster node is not available for this operation.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NODE_NOT_AVAILABLE: <c>HRESULT_FROM_WIN32(ERROR_NODE_NOT_AVAILABLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NODE_NOT_AVAILABLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_ALL_NODES_NOT_AVAILABLE">
            <summary>
             All cluster nodes must be running to perform this operation.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_ALL_NODES_NOT_AVAILABLE: <c>HRESULT_FROM_WIN32(ERROR_ALL_NODES_NOT_AVAILABLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_ALL_NODES_NOT_AVAILABLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_RESOURCE_FAILED">
            <summary>
             A cluster resource failed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_RESOURCE_FAILED: <c>HRESULT_FROM_WIN32(ERROR_RESOURCE_FAILED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_RESOURCE_FAILED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_INVALID_NODE">
            <summary>
             The cluster node is not valid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_INVALID_NODE: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_INVALID_NODE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_INVALID_NODE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_NODE_EXISTS">
            <summary>
             The cluster node already exists.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_NODE_EXISTS: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_NODE_EXISTS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_NODE_EXISTS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_JOIN_IN_PROGRESS">
            <summary>
             A node is in the process of joining the cluster.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_JOIN_IN_PROGRESS: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_JOIN_IN_PROGRESS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_JOIN_IN_PROGRESS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_NODE_NOT_FOUND">
            <summary>
             The cluster node was not found.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_NODE_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_NODE_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_NODE_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_LOCAL_NODE_NOT_FOUND">
            <summary>
             The cluster local node information was not found.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_LOCAL_NODE_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_LOCAL_NODE_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_LOCAL_NODE_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_NETWORK_EXISTS">
            <summary>
             The cluster network already exists.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_NETWORK_EXISTS: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_NETWORK_EXISTS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_NETWORK_EXISTS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_NETWORK_NOT_FOUND">
            <summary>
             The cluster network was not found.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_NETWORK_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_NETWORK_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_NETWORK_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_NETINTERFACE_EXISTS">
            <summary>
             The cluster network interface already exists.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_NETINTERFACE_EXISTS: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_NETINTERFACE_EXISTS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_NETINTERFACE_EXISTS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_NETINTERFACE_NOT_FOUND">
            <summary>
             The cluster network interface was not found.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_NETINTERFACE_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_NETINTERFACE_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_NETINTERFACE_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_INVALID_REQUEST">
            <summary>
             The cluster request is not valid for this object.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_INVALID_REQUEST: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_INVALID_REQUEST)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_INVALID_REQUEST"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_INVALID_NETWORK_PROVIDER">
            <summary>
             The cluster network provider is not valid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_INVALID_NETWORK_PROVIDER: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_INVALID_NETWORK_PROVIDER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_INVALID_NETWORK_PROVIDER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_NODE_DOWN">
            <summary>
             The cluster node is down.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_NODE_DOWN: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_NODE_DOWN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_NODE_DOWN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_NODE_UNREACHABLE">
            <summary>
             The cluster node is not reachable.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_NODE_UNREACHABLE: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_NODE_UNREACHABLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_NODE_UNREACHABLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_NODE_NOT_MEMBER">
            <summary>
             The cluster node is not a member of the cluster.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_NODE_NOT_MEMBER: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_NODE_NOT_MEMBER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_NODE_NOT_MEMBER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_JOIN_NOT_IN_PROGRESS">
            <summary>
             A cluster join operation is not in progress.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_JOIN_NOT_IN_PROGRESS: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_JOIN_NOT_IN_PROGRESS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_JOIN_NOT_IN_PROGRESS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_INVALID_NETWORK">
            <summary>
             The cluster network is not valid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_INVALID_NETWORK: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_INVALID_NETWORK)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_INVALID_NETWORK"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_NODE_UP">
            <summary>
             The cluster node is up.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_NODE_UP: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_NODE_UP)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_NODE_UP"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_IPADDR_IN_USE">
            <summary>
             The cluster IP address is already in use.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_IPADDR_IN_USE: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_IPADDR_IN_USE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_IPADDR_IN_USE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_NODE_NOT_PAUSED">
            <summary>
             The cluster node is not paused.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_NODE_NOT_PAUSED: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_NODE_NOT_PAUSED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_NODE_NOT_PAUSED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_NO_SECURITY_CONTEXT">
            <summary>
             No cluster security context is available.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_NO_SECURITY_CONTEXT: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_NO_SECURITY_CONTEXT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_NO_SECURITY_CONTEXT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_NETWORK_NOT_INTERNAL">
            <summary>
             The cluster network is not configured for internal cluster communication.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_NETWORK_NOT_INTERNAL: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_NETWORK_NOT_INTERNAL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_NETWORK_NOT_INTERNAL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_NODE_ALREADY_UP">
            <summary>
             The cluster node is already up.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_NODE_ALREADY_UP: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_NODE_ALREADY_UP)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_NODE_ALREADY_UP"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_NODE_ALREADY_DOWN">
            <summary>
             The cluster node is already down.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_NODE_ALREADY_DOWN: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_NODE_ALREADY_DOWN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_NODE_ALREADY_DOWN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_NETWORK_ALREADY_ONLINE">
            <summary>
             The cluster network is already online.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_NETWORK_ALREADY_ONLINE: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_NETWORK_ALREADY_ONLINE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_NETWORK_ALREADY_ONLINE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_NETWORK_ALREADY_OFFLINE">
            <summary>
             The cluster network is already offline.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_NETWORK_ALREADY_OFFLINE: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_NETWORK_ALREADY_OFFLINE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_NETWORK_ALREADY_OFFLINE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_NODE_ALREADY_MEMBER">
            <summary>
             The cluster node is already a member of the cluster.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_NODE_ALREADY_MEMBER: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_NODE_ALREADY_MEMBER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_NODE_ALREADY_MEMBER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_LAST_INTERNAL_NETWORK">
            <summary>
             The cluster network is the only one configured for internal cluster communication between two or more active cluster nodes. The internal communication capability cannot be removed from the network.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_LAST_INTERNAL_NETWORK: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_LAST_INTERNAL_NETWORK)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_LAST_INTERNAL_NETWORK"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_NETWORK_HAS_DEPENDENTS">
            <summary>
             One or more cluster resources depend on the network to provide service to clients. The client access capability cannot be removed from the network.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_NETWORK_HAS_DEPENDENTS: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_NETWORK_HAS_DEPENDENTS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_NETWORK_HAS_DEPENDENTS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_INVALID_OPERATION_ON_QUORUM">
            <summary>
             This operation cannot be performed on the cluster resource as it the quorum resource. You may not bring the quorum resource offline or modify its possible owners list.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_INVALID_OPERATION_ON_QUORUM: <c>HRESULT_FROM_WIN32(ERROR_INVALID_OPERATION_ON_QUORUM)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_OPERATION_ON_QUORUM"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DEPENDENCY_NOT_ALLOWED">
            <summary>
             The cluster quorum resource is not allowed to have any dependencies.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DEPENDENCY_NOT_ALLOWED: <c>HRESULT_FROM_WIN32(ERROR_DEPENDENCY_NOT_ALLOWED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DEPENDENCY_NOT_ALLOWED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_NODE_PAUSED">
            <summary>
             The cluster node is paused.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_NODE_PAUSED: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_NODE_PAUSED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_NODE_PAUSED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NODE_CANT_HOST_RESOURCE">
            <summary>
             The cluster resource cannot be brought online. The owner node cannot run this resource.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NODE_CANT_HOST_RESOURCE: <c>HRESULT_FROM_WIN32(ERROR_NODE_CANT_HOST_RESOURCE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NODE_CANT_HOST_RESOURCE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_NODE_NOT_READY">
            <summary>
             The cluster node is not ready to perform the requested operation.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_NODE_NOT_READY: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_NODE_NOT_READY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_NODE_NOT_READY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_NODE_SHUTTING_DOWN">
            <summary>
             The cluster node is shutting down.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_NODE_SHUTTING_DOWN: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_NODE_SHUTTING_DOWN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_NODE_SHUTTING_DOWN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_JOIN_ABORTED">
            <summary>
             The cluster join operation was aborted.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_JOIN_ABORTED: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_JOIN_ABORTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_JOIN_ABORTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_INCOMPATIBLE_VERSIONS">
            <summary>
             The cluster join operation failed due to incompatible software versions between the joining node and its sponsor.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_INCOMPATIBLE_VERSIONS: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_INCOMPATIBLE_VERSIONS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_INCOMPATIBLE_VERSIONS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_MAXNUM_OF_RESOURCES_EXCEEDED">
            <summary>
             This resource cannot be created because the cluster has reached the limit on the number of resources it can monitor.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_MAXNUM_OF_RESOURCES_EXCEEDED: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_MAXNUM_OF_RESOURCES_EXCEEDED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_MAXNUM_OF_RESOURCES_EXCEEDED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_SYSTEM_CONFIG_CHANGED">
            <summary>
             The system configuration changed during the cluster join or form operation. The join or form operation was aborted.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_SYSTEM_CONFIG_CHANGED: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_SYSTEM_CONFIG_CHANGED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_SYSTEM_CONFIG_CHANGED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_RESOURCE_TYPE_NOT_FOUND">
            <summary>
             The specified resource type was not found.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_RESOURCE_TYPE_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_RESOURCE_TYPE_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_RESOURCE_TYPE_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_RESTYPE_NOT_SUPPORTED">
            <summary>
             The specified node does not support a resource of this type.  This may be due to version inconsistencies or due to the absence of the resource DLL on this node.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_RESTYPE_NOT_SUPPORTED: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_RESTYPE_NOT_SUPPORTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_RESTYPE_NOT_SUPPORTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_RESNAME_NOT_FOUND">
            <summary>
             The specified resource name is not supported by this resource DLL. This may be due to a bad (or changed) name supplied to the resource DLL.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_RESNAME_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_RESNAME_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_RESNAME_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_NO_RPC_PACKAGES_REGISTERED">
            <summary>
             No authentication package could be registered with the RPC server.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_NO_RPC_PACKAGES_REGISTERED: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_NO_RPC_PACKAGES_REGISTERED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_NO_RPC_PACKAGES_REGISTERED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_OWNER_NOT_IN_PREFLIST">
            <summary>
             You cannot bring the group online because the owner of the group is not in the preferred list for the group. To change the owner node for the group, move the group.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_OWNER_NOT_IN_PREFLIST: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_OWNER_NOT_IN_PREFLIST)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_OWNER_NOT_IN_PREFLIST"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_DATABASE_SEQMISMATCH">
            <summary>
             The join operation failed because the cluster database sequence number has changed or is incompatible with the locker node. This may happen during a join operation if the cluster database was changing during the join.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_DATABASE_SEQMISMATCH: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_DATABASE_SEQMISMATCH)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_DATABASE_SEQMISMATCH"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_RESMON_INVALID_STATE">
            <summary>
             The resource monitor will not allow the fail operation to be performed while the resource is in its current state. This may happen if the resource is in a pending state.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_RESMON_INVALID_STATE: <c>HRESULT_FROM_WIN32(ERROR_RESMON_INVALID_STATE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_RESMON_INVALID_STATE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_GUM_NOT_LOCKER">
            <summary>
             A non locker code got a request to reserve the lock for making global updates.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_GUM_NOT_LOCKER: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_GUM_NOT_LOCKER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_GUM_NOT_LOCKER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_QUORUM_DISK_NOT_FOUND">
            <summary>
             The quorum disk could not be located by the cluster service.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_QUORUM_DISK_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_QUORUM_DISK_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_QUORUM_DISK_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DATABASE_BACKUP_CORRUPT">
            <summary>
             The backed up cluster database is possibly corrupt.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DATABASE_BACKUP_CORRUPT: <c>HRESULT_FROM_WIN32(ERROR_DATABASE_BACKUP_CORRUPT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DATABASE_BACKUP_CORRUPT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_NODE_ALREADY_HAS_DFS_ROOT">
            <summary>
             A DFS root already exists in this cluster node.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_NODE_ALREADY_HAS_DFS_ROOT: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_NODE_ALREADY_HAS_DFS_ROOT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_NODE_ALREADY_HAS_DFS_ROOT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_RESOURCE_PROPERTY_UNCHANGEABLE">
            <summary>
             An attempt to modify a resource property failed because it conflicts with another existing property.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_RESOURCE_PROPERTY_UNCHANGEABLE: <c>HRESULT_FROM_WIN32(ERROR_RESOURCE_PROPERTY_UNCHANGEABLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_RESOURCE_PROPERTY_UNCHANGEABLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_MEMBERSHIP_INVALID_STATE">
            <summary>
             An operation was attempted that is incompatible with the current membership state of the node.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_MEMBERSHIP_INVALID_STATE: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_MEMBERSHIP_INVALID_STATE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_MEMBERSHIP_INVALID_STATE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_QUORUMLOG_NOT_FOUND">
            <summary>
             The quorum resource does not contain the quorum log.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_QUORUMLOG_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_QUORUMLOG_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_QUORUMLOG_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_MEMBERSHIP_HALT">
            <summary>
             The membership engine requested shutdown of the cluster service on this node.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_MEMBERSHIP_HALT: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_MEMBERSHIP_HALT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_MEMBERSHIP_HALT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_INSTANCE_ID_MISMATCH">
            <summary>
             The join operation failed because the cluster instance ID of the joining node does not match the cluster instance ID of the sponsor node.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_INSTANCE_ID_MISMATCH: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_INSTANCE_ID_MISMATCH)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_INSTANCE_ID_MISMATCH"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_NETWORK_NOT_FOUND_FOR_IP">
            <summary>
             A matching network for the specified IP address could not be found. Please also specify a subnet mask and a cluster network.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_NETWORK_NOT_FOUND_FOR_IP: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_NETWORK_NOT_FOUND_FOR_IP)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_NETWORK_NOT_FOUND_FOR_IP"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_PROPERTY_DATA_TYPE_MISMATCH">
            <summary>
             The actual data type of the property did not match the expected data type of the property.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_PROPERTY_DATA_TYPE_MISMATCH: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_PROPERTY_DATA_TYPE_MISMATCH)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_PROPERTY_DATA_TYPE_MISMATCH"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_EVICT_WITHOUT_CLEANUP">
            <summary>
             The cluster node was evicted from the cluster successfully, but the node was not cleaned up.  Extended status information explaining why the node was not cleaned up is available.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_EVICT_WITHOUT_CLEANUP: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_EVICT_WITHOUT_CLEANUP)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_EVICT_WITHOUT_CLEANUP"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_PARAMETER_MISMATCH">
            <summary>
             Two or more parameter values specified for a resource's properties are in conflict.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_PARAMETER_MISMATCH: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_PARAMETER_MISMATCH)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_PARAMETER_MISMATCH"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NODE_CANNOT_BE_CLUSTERED">
            <summary>
             This computer cannot be made a member of a cluster.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NODE_CANNOT_BE_CLUSTERED: <c>HRESULT_FROM_WIN32(ERROR_NODE_CANNOT_BE_CLUSTERED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NODE_CANNOT_BE_CLUSTERED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_WRONG_OS_VERSION">
            <summary>
             This computer cannot be made a member of a cluster because it does not have the correct version of Windows installed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_WRONG_OS_VERSION: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_WRONG_OS_VERSION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_WRONG_OS_VERSION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_CANT_CREATE_DUP_CLUSTER_NAME">
            <summary>
             A cluster cannot be created with the specified cluster name because that cluster name is already in use. Specify a different name for the cluster.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_CANT_CREATE_DUP_CLUSTER_NAME: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_CANT_CREATE_DUP_CLUSTER_NAME)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_CANT_CREATE_DUP_CLUSTER_NAME"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSCFG_ALREADY_COMMITTED">
            <summary>
             The cluster configuration action has already been committed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSCFG_ALREADY_COMMITTED: <c>HRESULT_FROM_WIN32(ERROR_CLUSCFG_ALREADY_COMMITTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSCFG_ALREADY_COMMITTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSCFG_ROLLBACK_FAILED">
            <summary>
             The cluster configuration action could not be rolled back.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSCFG_ROLLBACK_FAILED: <c>HRESULT_FROM_WIN32(ERROR_CLUSCFG_ROLLBACK_FAILED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSCFG_ROLLBACK_FAILED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSCFG_SYSTEM_DISK_DRIVE_LETTER_CONFLICT">
            <summary>
             The drive letter assigned to a system disk on one node conflicted with the drive letter assigned to a disk on another node.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSCFG_SYSTEM_DISK_DRIVE_LETTER_CONFLICT: <c>HRESULT_FROM_WIN32(ERROR_CLUSCFG_SYSTEM_DISK_DRIVE_LETTER_CONFLICT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSCFG_SYSTEM_DISK_DRIVE_LETTER_CONFLICT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_OLD_VERSION">
            <summary>
             One or more nodes in the cluster are running a version of Windows that does not support this operation.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_OLD_VERSION: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_OLD_VERSION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_OLD_VERSION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CLUSTER_MISMATCHED_COMPUTER_ACCT_NAME">
            <summary>
             The name of the corresponding computer account doesn't match the Network Name for this resource.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CLUSTER_MISMATCHED_COMPUTER_ACCT_NAME: <c>HRESULT_FROM_WIN32(ERROR_CLUSTER_MISMATCHED_COMPUTER_ACCT_NAME)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_MISMATCHED_COMPUTER_ACCT_NAME"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_ENCRYPTION_FAILED">
            <summary>
             The specified file could not be encrypted.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_ENCRYPTION_FAILED: <c>HRESULT_FROM_WIN32(ERROR_ENCRYPTION_FAILED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_ENCRYPTION_FAILED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DECRYPTION_FAILED">
            <summary>
             The specified file could not be decrypted.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DECRYPTION_FAILED: <c>HRESULT_FROM_WIN32(ERROR_DECRYPTION_FAILED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DECRYPTION_FAILED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_FILE_ENCRYPTED">
            <summary>
             The specified file is encrypted and the user does not have the ability to decrypt it.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_FILE_ENCRYPTED: <c>HRESULT_FROM_WIN32(ERROR_FILE_ENCRYPTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_FILE_ENCRYPTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NO_RECOVERY_POLICY">
            <summary>
             There is no valid encryption recovery policy configured for this system.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NO_RECOVERY_POLICY: <c>HRESULT_FROM_WIN32(ERROR_NO_RECOVERY_POLICY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_RECOVERY_POLICY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NO_EFS">
            <summary>
             The required encryption driver is not loaded for this system.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NO_EFS: <c>HRESULT_FROM_WIN32(ERROR_NO_EFS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_EFS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_WRONG_EFS">
            <summary>
             The file was encrypted with a different encryption driver than is currently loaded.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_WRONG_EFS: <c>HRESULT_FROM_WIN32(ERROR_WRONG_EFS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_WRONG_EFS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NO_USER_KEYS">
            <summary>
             There are no EFS keys defined for the user.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NO_USER_KEYS: <c>HRESULT_FROM_WIN32(ERROR_NO_USER_KEYS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_USER_KEYS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_FILE_NOT_ENCRYPTED">
            <summary>
             The specified file is not encrypted.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_FILE_NOT_ENCRYPTED: <c>HRESULT_FROM_WIN32(ERROR_FILE_NOT_ENCRYPTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_FILE_NOT_ENCRYPTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NOT_EXPORT_FORMAT">
            <summary>
             The specified file is not in the defined EFS export format.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NOT_EXPORT_FORMAT: <c>HRESULT_FROM_WIN32(ERROR_NOT_EXPORT_FORMAT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_EXPORT_FORMAT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_FILE_READ_ONLY">
            <summary>
             The specified file is read only.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_FILE_READ_ONLY: <c>HRESULT_FROM_WIN32(ERROR_FILE_READ_ONLY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_FILE_READ_ONLY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DIR_EFS_DISALLOWED">
            <summary>
             The directory has been disabled for encryption.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DIR_EFS_DISALLOWED: <c>HRESULT_FROM_WIN32(ERROR_DIR_EFS_DISALLOWED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DIR_EFS_DISALLOWED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_EFS_SERVER_NOT_TRUSTED">
            <summary>
             The server is not trusted for remote encryption operation.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_EFS_SERVER_NOT_TRUSTED: <c>HRESULT_FROM_WIN32(ERROR_EFS_SERVER_NOT_TRUSTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_EFS_SERVER_NOT_TRUSTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_BAD_RECOVERY_POLICY">
            <summary>
             Recovery policy configured for this system contains invalid recovery certificate.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_BAD_RECOVERY_POLICY: <c>HRESULT_FROM_WIN32(ERROR_BAD_RECOVERY_POLICY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_RECOVERY_POLICY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_EFS_ALG_BLOB_TOO_BIG">
            <summary>
             The encryption algorithm used on the source file needs a bigger key buffer than the one on the destination file.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_EFS_ALG_BLOB_TOO_BIG: <c>HRESULT_FROM_WIN32(ERROR_EFS_ALG_BLOB_TOO_BIG)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_EFS_ALG_BLOB_TOO_BIG"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_VOLUME_NOT_SUPPORT_EFS">
            <summary>
             The disk partition does not support file encryption.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_VOLUME_NOT_SUPPORT_EFS: <c>HRESULT_FROM_WIN32(ERROR_VOLUME_NOT_SUPPORT_EFS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_VOLUME_NOT_SUPPORT_EFS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_EFS_DISABLED">
            <summary>
             This machine is disabled for file encryption.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_EFS_DISABLED: <c>HRESULT_FROM_WIN32(ERROR_EFS_DISABLED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_EFS_DISABLED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_EFS_VERSION_NOT_SUPPORT">
            <summary>
             A newer system is required to decrypt this encrypted file.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_EFS_VERSION_NOT_SUPPORT: <c>HRESULT_FROM_WIN32(ERROR_EFS_VERSION_NOT_SUPPORT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_EFS_VERSION_NOT_SUPPORT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NO_BROWSER_SERVERS_FOUND">
            <summary>
             The list of servers for this workgroup is not currently available
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NO_BROWSER_SERVERS_FOUND: <c>HRESULT_FROM_WIN32(ERROR_NO_BROWSER_SERVERS_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_BROWSER_SERVERS_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_SCHED_E_SERVICE_NOT_LOCALSYSTEM">
            <summary>
             The Task Scheduler service must be configured to run in the System account to function properly.  Individual tasks may be configured to run in other accounts.
            </summary>
            <remarks>An HRESULT from Windows error code SCHED_E_SERVICE_NOT_LOCALSYSTEM: <c>HRESULT_FROM_WIN32(SCHED_E_SERVICE_NOT_LOCALSYSTEM)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.SCHED_E_SERVICE_NOT_LOCALSYSTEM"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CTX_WINSTATION_NAME_INVALID">
            <summary>
             The specified session name is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CTX_WINSTATION_NAME_INVALID: <c>HRESULT_FROM_WIN32(ERROR_CTX_WINSTATION_NAME_INVALID)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_WINSTATION_NAME_INVALID"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CTX_INVALID_PD">
            <summary>
             The specified protocol driver is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CTX_INVALID_PD: <c>HRESULT_FROM_WIN32(ERROR_CTX_INVALID_PD)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_INVALID_PD"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CTX_PD_NOT_FOUND">
            <summary>
             The specified protocol driver was not found in the system path.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CTX_PD_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_CTX_PD_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_PD_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CTX_WD_NOT_FOUND">
            <summary>
             The specified terminal connection driver was not found in the system path.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CTX_WD_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_CTX_WD_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_WD_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CTX_CANNOT_MAKE_EVENTLOG_ENTRY">
            <summary>
             A registry key for event logging could not be created for this session.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CTX_CANNOT_MAKE_EVENTLOG_ENTRY: <c>HRESULT_FROM_WIN32(ERROR_CTX_CANNOT_MAKE_EVENTLOG_ENTRY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_CANNOT_MAKE_EVENTLOG_ENTRY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CTX_SERVICE_NAME_COLLISION">
            <summary>
             A service with the same name already exists on the system.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CTX_SERVICE_NAME_COLLISION: <c>HRESULT_FROM_WIN32(ERROR_CTX_SERVICE_NAME_COLLISION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_SERVICE_NAME_COLLISION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CTX_CLOSE_PENDING">
            <summary>
             A close operation is pending on the session.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CTX_CLOSE_PENDING: <c>HRESULT_FROM_WIN32(ERROR_CTX_CLOSE_PENDING)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_CLOSE_PENDING"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CTX_NO_OUTBUF">
            <summary>
             There are no free output buffers available.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CTX_NO_OUTBUF: <c>HRESULT_FROM_WIN32(ERROR_CTX_NO_OUTBUF)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_NO_OUTBUF"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CTX_MODEM_INF_NOT_FOUND">
            <summary>
             The MODEM.INF file was not found.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CTX_MODEM_INF_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_CTX_MODEM_INF_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_MODEM_INF_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CTX_INVALID_MODEMNAME">
            <summary>
             The modem name was not found in MODEM.INF.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CTX_INVALID_MODEMNAME: <c>HRESULT_FROM_WIN32(ERROR_CTX_INVALID_MODEMNAME)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_INVALID_MODEMNAME"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CTX_MODEM_RESPONSE_ERROR">
            <summary>
             The modem did not accept the command sent to it. Verify that the configured modem name matches the attached modem.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CTX_MODEM_RESPONSE_ERROR: <c>HRESULT_FROM_WIN32(ERROR_CTX_MODEM_RESPONSE_ERROR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_MODEM_RESPONSE_ERROR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CTX_MODEM_RESPONSE_TIMEOUT">
            <summary>
             The modem did not respond to the command sent to it. Verify that the modem is properly cabled and powered on.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CTX_MODEM_RESPONSE_TIMEOUT: <c>HRESULT_FROM_WIN32(ERROR_CTX_MODEM_RESPONSE_TIMEOUT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_MODEM_RESPONSE_TIMEOUT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CTX_MODEM_RESPONSE_NO_CARRIER">
            <summary>
             Carrier detect has failed or carrier has been dropped due to disconnect.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CTX_MODEM_RESPONSE_NO_CARRIER: <c>HRESULT_FROM_WIN32(ERROR_CTX_MODEM_RESPONSE_NO_CARRIER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_MODEM_RESPONSE_NO_CARRIER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CTX_MODEM_RESPONSE_NO_DIALTONE">
            <summary>
             Dial tone not detected within the required time. Verify that the phone cable is properly attached and functional.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CTX_MODEM_RESPONSE_NO_DIALTONE: <c>HRESULT_FROM_WIN32(ERROR_CTX_MODEM_RESPONSE_NO_DIALTONE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_MODEM_RESPONSE_NO_DIALTONE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CTX_MODEM_RESPONSE_BUSY">
            <summary>
             Busy signal detected at remote site on callback.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CTX_MODEM_RESPONSE_BUSY: <c>HRESULT_FROM_WIN32(ERROR_CTX_MODEM_RESPONSE_BUSY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_MODEM_RESPONSE_BUSY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CTX_MODEM_RESPONSE_VOICE">
            <summary>
             Voice detected at remote site on callback.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CTX_MODEM_RESPONSE_VOICE: <c>HRESULT_FROM_WIN32(ERROR_CTX_MODEM_RESPONSE_VOICE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_MODEM_RESPONSE_VOICE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CTX_TD_ERROR">
            <summary>
             Transport driver error
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CTX_TD_ERROR: <c>HRESULT_FROM_WIN32(ERROR_CTX_TD_ERROR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_TD_ERROR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CTX_WINSTATION_NOT_FOUND">
            <summary>
             The specified session cannot be found.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CTX_WINSTATION_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_CTX_WINSTATION_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_WINSTATION_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CTX_WINSTATION_ALREADY_EXISTS">
            <summary>
             The specified session name is already in use.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CTX_WINSTATION_ALREADY_EXISTS: <c>HRESULT_FROM_WIN32(ERROR_CTX_WINSTATION_ALREADY_EXISTS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_WINSTATION_ALREADY_EXISTS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CTX_WINSTATION_BUSY">
            <summary>
             The requested operation cannot be completed because the terminal connection is currently busy processing a connect, disconnect, reset, or delete operation.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CTX_WINSTATION_BUSY: <c>HRESULT_FROM_WIN32(ERROR_CTX_WINSTATION_BUSY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_WINSTATION_BUSY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CTX_BAD_VIDEO_MODE">
            <summary>
             An attempt has been made to connect to a session whose video mode is not supported by the current client.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CTX_BAD_VIDEO_MODE: <c>HRESULT_FROM_WIN32(ERROR_CTX_BAD_VIDEO_MODE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_BAD_VIDEO_MODE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CTX_GRAPHICS_INVALID">
            <summary>
             The application attempted to enable DOS graphics mode.
             DOS graphics mode is not supported.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CTX_GRAPHICS_INVALID: <c>HRESULT_FROM_WIN32(ERROR_CTX_GRAPHICS_INVALID)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_GRAPHICS_INVALID"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CTX_LOGON_DISABLED">
            <summary>
             Your interactive logon privilege has been disabled.
             Please contact your administrator.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CTX_LOGON_DISABLED: <c>HRESULT_FROM_WIN32(ERROR_CTX_LOGON_DISABLED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_LOGON_DISABLED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CTX_NOT_CONSOLE">
            <summary>
             The requested operation can be performed only on the system console.
             This is most often the result of a driver or system DLL requiring direct console access.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CTX_NOT_CONSOLE: <c>HRESULT_FROM_WIN32(ERROR_CTX_NOT_CONSOLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_NOT_CONSOLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CTX_CLIENT_QUERY_TIMEOUT">
            <summary>
             The client failed to respond to the server connect message.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CTX_CLIENT_QUERY_TIMEOUT: <c>HRESULT_FROM_WIN32(ERROR_CTX_CLIENT_QUERY_TIMEOUT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_CLIENT_QUERY_TIMEOUT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CTX_CONSOLE_DISCONNECT">
            <summary>
             Disconnecting the console session is not supported.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CTX_CONSOLE_DISCONNECT: <c>HRESULT_FROM_WIN32(ERROR_CTX_CONSOLE_DISCONNECT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_CONSOLE_DISCONNECT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CTX_CONSOLE_CONNECT">
            <summary>
             Reconnecting a disconnected session to the console is not supported.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CTX_CONSOLE_CONNECT: <c>HRESULT_FROM_WIN32(ERROR_CTX_CONSOLE_CONNECT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_CONSOLE_CONNECT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CTX_SHADOW_DENIED">
            <summary>
             The request to control another session remotely was denied.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CTX_SHADOW_DENIED: <c>HRESULT_FROM_WIN32(ERROR_CTX_SHADOW_DENIED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_SHADOW_DENIED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CTX_WINSTATION_ACCESS_DENIED">
            <summary>
             The requested session access is denied.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CTX_WINSTATION_ACCESS_DENIED: <c>HRESULT_FROM_WIN32(ERROR_CTX_WINSTATION_ACCESS_DENIED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_WINSTATION_ACCESS_DENIED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CTX_INVALID_WD">
            <summary>
             The specified terminal connection driver is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CTX_INVALID_WD: <c>HRESULT_FROM_WIN32(ERROR_CTX_INVALID_WD)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_INVALID_WD"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CTX_SHADOW_INVALID">
            <summary>
             The requested session cannot be controlled remotely.
             This may be because the session is disconnected or does not currently have a user logged on.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CTX_SHADOW_INVALID: <c>HRESULT_FROM_WIN32(ERROR_CTX_SHADOW_INVALID)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_SHADOW_INVALID"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CTX_SHADOW_DISABLED">
            <summary>
             The requested session is not configured to allow remote control.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CTX_SHADOW_DISABLED: <c>HRESULT_FROM_WIN32(ERROR_CTX_SHADOW_DISABLED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_SHADOW_DISABLED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CTX_CLIENT_LICENSE_IN_USE">
            <summary>
             Your request to connect to this Terminal Server has been rejected. Your Terminal Server client license number is currently being used by another user.
             Please call your system administrator to obtain a unique license number.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CTX_CLIENT_LICENSE_IN_USE: <c>HRESULT_FROM_WIN32(ERROR_CTX_CLIENT_LICENSE_IN_USE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_CLIENT_LICENSE_IN_USE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CTX_CLIENT_LICENSE_NOT_SET">
            <summary>
             Your request to connect to this Terminal Server has been rejected. Your Terminal Server client license number has not been entered for this copy of the Terminal Server client.
             Please contact your system administrator.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CTX_CLIENT_LICENSE_NOT_SET: <c>HRESULT_FROM_WIN32(ERROR_CTX_CLIENT_LICENSE_NOT_SET)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_CLIENT_LICENSE_NOT_SET"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CTX_LICENSE_NOT_AVAILABLE">
            <summary>
             The system has reached its licensed logon limit.
             Please try again later.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CTX_LICENSE_NOT_AVAILABLE: <c>HRESULT_FROM_WIN32(ERROR_CTX_LICENSE_NOT_AVAILABLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_LICENSE_NOT_AVAILABLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CTX_LICENSE_CLIENT_INVALID">
            <summary>
             The client you are using is not licensed to use this system.  Your logon request is denied.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CTX_LICENSE_CLIENT_INVALID: <c>HRESULT_FROM_WIN32(ERROR_CTX_LICENSE_CLIENT_INVALID)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_LICENSE_CLIENT_INVALID"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CTX_LICENSE_EXPIRED">
            <summary>
             The system license has expired.  Your logon request is denied.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CTX_LICENSE_EXPIRED: <c>HRESULT_FROM_WIN32(ERROR_CTX_LICENSE_EXPIRED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_LICENSE_EXPIRED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CTX_SHADOW_NOT_RUNNING">
            <summary>
             Remote control could not be terminated because the specified session is not currently being remotely controlled.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CTX_SHADOW_NOT_RUNNING: <c>HRESULT_FROM_WIN32(ERROR_CTX_SHADOW_NOT_RUNNING)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_SHADOW_NOT_RUNNING"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_CTX_SHADOW_ENDED_BY_MODE_CHANGE">
            <summary>
             The remote control of the console was terminated because the display mode was changed. Changing the display mode in a remote control session is not supported.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_CTX_SHADOW_ENDED_BY_MODE_CHANGE: <c>HRESULT_FROM_WIN32(ERROR_CTX_SHADOW_ENDED_BY_MODE_CHANGE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_SHADOW_ENDED_BY_MODE_CHANGE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_ACTIVATION_COUNT_EXCEEDED">
            <summary>
             Activation has already been reset the maximum number of times for this installation. Your activation timer will not be cleared.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_ACTIVATION_COUNT_EXCEEDED: <c>HRESULT_FROM_WIN32(ERROR_ACTIVATION_COUNT_EXCEEDED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_ACTIVATION_COUNT_EXCEEDED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_FRS_ERR_INVALID_API_SEQUENCE">
            <summary>
             The file replication service API was called incorrectly.
            </summary>
            <remarks>An HRESULT from Windows error code FRS_ERR_INVALID_API_SEQUENCE: <c>HRESULT_FROM_WIN32(FRS_ERR_INVALID_API_SEQUENCE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.FRS_ERR_INVALID_API_SEQUENCE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_FRS_ERR_STARTING_SERVICE">
            <summary>
             The file replication service cannot be started.
            </summary>
            <remarks>An HRESULT from Windows error code FRS_ERR_STARTING_SERVICE: <c>HRESULT_FROM_WIN32(FRS_ERR_STARTING_SERVICE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.FRS_ERR_STARTING_SERVICE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_FRS_ERR_STOPPING_SERVICE">
            <summary>
             The file replication service cannot be stopped.
            </summary>
            <remarks>An HRESULT from Windows error code FRS_ERR_STOPPING_SERVICE: <c>HRESULT_FROM_WIN32(FRS_ERR_STOPPING_SERVICE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.FRS_ERR_STOPPING_SERVICE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_FRS_ERR_INTERNAL_API">
            <summary>
             The file replication service API terminated the request.
             The event log may have more information.
            </summary>
            <remarks>An HRESULT from Windows error code FRS_ERR_INTERNAL_API: <c>HRESULT_FROM_WIN32(FRS_ERR_INTERNAL_API)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.FRS_ERR_INTERNAL_API"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_FRS_ERR_INTERNAL">
            <summary>
             The file replication service terminated the request.
             The event log may have more information.
            </summary>
            <remarks>An HRESULT from Windows error code FRS_ERR_INTERNAL: <c>HRESULT_FROM_WIN32(FRS_ERR_INTERNAL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.FRS_ERR_INTERNAL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_FRS_ERR_SERVICE_COMM">
            <summary>
             The file replication service cannot be contacted.
             The event log may have more information.
            </summary>
            <remarks>An HRESULT from Windows error code FRS_ERR_SERVICE_COMM: <c>HRESULT_FROM_WIN32(FRS_ERR_SERVICE_COMM)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.FRS_ERR_SERVICE_COMM"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_FRS_ERR_INSUFFICIENT_PRIV">
            <summary>
             The file replication service cannot satisfy the request because the user has insufficient privileges.
             The event log may have more information.
            </summary>
            <remarks>An HRESULT from Windows error code FRS_ERR_INSUFFICIENT_PRIV: <c>HRESULT_FROM_WIN32(FRS_ERR_INSUFFICIENT_PRIV)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.FRS_ERR_INSUFFICIENT_PRIV"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_FRS_ERR_AUTHENTICATION">
            <summary>
             The file replication service cannot satisfy the request because authenticated RPC is not available.
             The event log may have more information.
            </summary>
            <remarks>An HRESULT from Windows error code FRS_ERR_AUTHENTICATION: <c>HRESULT_FROM_WIN32(FRS_ERR_AUTHENTICATION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.FRS_ERR_AUTHENTICATION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_FRS_ERR_PARENT_INSUFFICIENT_PRIV">
            <summary>
             The file replication service cannot satisfy the request because the user has insufficient privileges on the domain controller.
             The event log may have more information.
            </summary>
            <remarks>An HRESULT from Windows error code FRS_ERR_PARENT_INSUFFICIENT_PRIV: <c>HRESULT_FROM_WIN32(FRS_ERR_PARENT_INSUFFICIENT_PRIV)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.FRS_ERR_PARENT_INSUFFICIENT_PRIV"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_FRS_ERR_PARENT_AUTHENTICATION">
            <summary>
             The file replication service cannot satisfy the request because authenticated RPC is not available on the domain controller.
             The event log may have more information.
            </summary>
            <remarks>An HRESULT from Windows error code FRS_ERR_PARENT_AUTHENTICATION: <c>HRESULT_FROM_WIN32(FRS_ERR_PARENT_AUTHENTICATION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.FRS_ERR_PARENT_AUTHENTICATION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_FRS_ERR_CHILD_TO_PARENT_COMM">
            <summary>
             The file replication service cannot communicate with the file replication service on the domain controller.
             The event log may have more information.
            </summary>
            <remarks>An HRESULT from Windows error code FRS_ERR_CHILD_TO_PARENT_COMM: <c>HRESULT_FROM_WIN32(FRS_ERR_CHILD_TO_PARENT_COMM)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.FRS_ERR_CHILD_TO_PARENT_COMM"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_FRS_ERR_PARENT_TO_CHILD_COMM">
            <summary>
             The file replication service on the domain controller cannot communicate with the file replication service on this computer.
             The event log may have more information.
            </summary>
            <remarks>An HRESULT from Windows error code FRS_ERR_PARENT_TO_CHILD_COMM: <c>HRESULT_FROM_WIN32(FRS_ERR_PARENT_TO_CHILD_COMM)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.FRS_ERR_PARENT_TO_CHILD_COMM"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_FRS_ERR_SYSVOL_POPULATE">
            <summary>
             The file replication service cannot populate the system volume because of an internal error.
             The event log may have more information.
            </summary>
            <remarks>An HRESULT from Windows error code FRS_ERR_SYSVOL_POPULATE: <c>HRESULT_FROM_WIN32(FRS_ERR_SYSVOL_POPULATE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.FRS_ERR_SYSVOL_POPULATE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_FRS_ERR_SYSVOL_POPULATE_TIMEOUT">
            <summary>
             The file replication service cannot populate the system volume because of an internal timeout.
             The event log may have more information.
            </summary>
            <remarks>An HRESULT from Windows error code FRS_ERR_SYSVOL_POPULATE_TIMEOUT: <c>HRESULT_FROM_WIN32(FRS_ERR_SYSVOL_POPULATE_TIMEOUT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.FRS_ERR_SYSVOL_POPULATE_TIMEOUT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_FRS_ERR_SYSVOL_IS_BUSY">
            <summary>
             The file replication service cannot process the request. The system volume is busy with a previous request.
            </summary>
            <remarks>An HRESULT from Windows error code FRS_ERR_SYSVOL_IS_BUSY: <c>HRESULT_FROM_WIN32(FRS_ERR_SYSVOL_IS_BUSY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.FRS_ERR_SYSVOL_IS_BUSY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_FRS_ERR_SYSVOL_DEMOTE">
            <summary>
             The file replication service cannot stop replicating the system volume because of an internal error.
             The event log may have more information.
            </summary>
            <remarks>An HRESULT from Windows error code FRS_ERR_SYSVOL_DEMOTE: <c>HRESULT_FROM_WIN32(FRS_ERR_SYSVOL_DEMOTE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.FRS_ERR_SYSVOL_DEMOTE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_FRS_ERR_INVALID_SERVICE_PARAMETER">
            <summary>
             The file replication service detected an invalid parameter.
            </summary>
            <remarks>An HRESULT from Windows error code FRS_ERR_INVALID_SERVICE_PARAMETER: <c>HRESULT_FROM_WIN32(FRS_ERR_INVALID_SERVICE_PARAMETER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.FRS_ERR_INVALID_SERVICE_PARAMETER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NOT_INSTALLED">
            <summary>
             An error occurred while installing the directory service. For more information, see the event log.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NOT_INSTALLED: <c>HRESULT_FROM_WIN32(ERROR_DS_NOT_INSTALLED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NOT_INSTALLED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_MEMBERSHIP_EVALUATED_LOCALLY">
            <summary>
             The directory service evaluated group memberships locally.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_MEMBERSHIP_EVALUATED_LOCALLY: <c>HRESULT_FROM_WIN32(ERROR_DS_MEMBERSHIP_EVALUATED_LOCALLY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_MEMBERSHIP_EVALUATED_LOCALLY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NO_ATTRIBUTE_OR_VALUE">
            <summary>
             The specified directory service attribute or value does not exist.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NO_ATTRIBUTE_OR_VALUE: <c>HRESULT_FROM_WIN32(ERROR_DS_NO_ATTRIBUTE_OR_VALUE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NO_ATTRIBUTE_OR_VALUE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_INVALID_ATTRIBUTE_SYNTAX">
            <summary>
             The attribute syntax specified to the directory service is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_INVALID_ATTRIBUTE_SYNTAX: <c>HRESULT_FROM_WIN32(ERROR_DS_INVALID_ATTRIBUTE_SYNTAX)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_INVALID_ATTRIBUTE_SYNTAX"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_ATTRIBUTE_TYPE_UNDEFINED">
            <summary>
             The attribute type specified to the directory service is not defined.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_ATTRIBUTE_TYPE_UNDEFINED: <c>HRESULT_FROM_WIN32(ERROR_DS_ATTRIBUTE_TYPE_UNDEFINED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_ATTRIBUTE_TYPE_UNDEFINED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_ATTRIBUTE_OR_VALUE_EXISTS">
            <summary>
             The specified directory service attribute or value already exists.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_ATTRIBUTE_OR_VALUE_EXISTS: <c>HRESULT_FROM_WIN32(ERROR_DS_ATTRIBUTE_OR_VALUE_EXISTS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_ATTRIBUTE_OR_VALUE_EXISTS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_BUSY">
            <summary>
             The directory service is busy.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_BUSY: <c>HRESULT_FROM_WIN32(ERROR_DS_BUSY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_BUSY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_UNAVAILABLE">
            <summary>
             The directory service is unavailable.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_UNAVAILABLE: <c>HRESULT_FROM_WIN32(ERROR_DS_UNAVAILABLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_UNAVAILABLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NO_RIDS_ALLOCATED">
            <summary>
             The directory service was unable to allocate a relative identifier.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NO_RIDS_ALLOCATED: <c>HRESULT_FROM_WIN32(ERROR_DS_NO_RIDS_ALLOCATED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NO_RIDS_ALLOCATED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NO_MORE_RIDS">
            <summary>
             The directory service has exhausted the pool of relative identifiers.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NO_MORE_RIDS: <c>HRESULT_FROM_WIN32(ERROR_DS_NO_MORE_RIDS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NO_MORE_RIDS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_INCORRECT_ROLE_OWNER">
            <summary>
             The requested operation could not be performed because the directory service is not the master for that type of operation.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_INCORRECT_ROLE_OWNER: <c>HRESULT_FROM_WIN32(ERROR_DS_INCORRECT_ROLE_OWNER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_INCORRECT_ROLE_OWNER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_RIDMGR_INIT_ERROR">
            <summary>
             The directory service was unable to initialize the subsystem that allocates relative identifiers.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_RIDMGR_INIT_ERROR: <c>HRESULT_FROM_WIN32(ERROR_DS_RIDMGR_INIT_ERROR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_RIDMGR_INIT_ERROR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_OBJ_CLASS_VIOLATION">
            <summary>
             The requested operation did not satisfy one or more constraints associated with the class of the object.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_OBJ_CLASS_VIOLATION: <c>HRESULT_FROM_WIN32(ERROR_DS_OBJ_CLASS_VIOLATION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_OBJ_CLASS_VIOLATION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CANT_ON_NON_LEAF">
            <summary>
             The directory service can perform the requested operation only on a leaf object.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CANT_ON_NON_LEAF: <c>HRESULT_FROM_WIN32(ERROR_DS_CANT_ON_NON_LEAF)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_ON_NON_LEAF"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CANT_ON_RDN">
            <summary>
             The directory service cannot perform the requested operation on the RDN attribute of an object.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CANT_ON_RDN: <c>HRESULT_FROM_WIN32(ERROR_DS_CANT_ON_RDN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_ON_RDN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CANT_MOD_OBJ_CLASS">
            <summary>
             The directory service detected an attempt to modify the object class of an object.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CANT_MOD_OBJ_CLASS: <c>HRESULT_FROM_WIN32(ERROR_DS_CANT_MOD_OBJ_CLASS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_MOD_OBJ_CLASS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CROSS_DOM_MOVE_ERROR">
            <summary>
             The requested cross-domain move operation could not be performed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CROSS_DOM_MOVE_ERROR: <c>HRESULT_FROM_WIN32(ERROR_DS_CROSS_DOM_MOVE_ERROR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CROSS_DOM_MOVE_ERROR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_GC_NOT_AVAILABLE">
            <summary>
             Unable to contact the global catalog server.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_GC_NOT_AVAILABLE: <c>HRESULT_FROM_WIN32(ERROR_DS_GC_NOT_AVAILABLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_GC_NOT_AVAILABLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SHARED_POLICY">
            <summary>
             The policy object is shared and can only be modified at the root.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SHARED_POLICY: <c>HRESULT_FROM_WIN32(ERROR_SHARED_POLICY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SHARED_POLICY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_POLICY_OBJECT_NOT_FOUND">
            <summary>
             The policy object does not exist.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_POLICY_OBJECT_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_POLICY_OBJECT_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_POLICY_OBJECT_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_POLICY_ONLY_IN_DS">
            <summary>
             The requested policy information is only in the directory service.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_POLICY_ONLY_IN_DS: <c>HRESULT_FROM_WIN32(ERROR_POLICY_ONLY_IN_DS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_POLICY_ONLY_IN_DS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_PROMOTION_ACTIVE">
            <summary>
             A domain controller promotion is currently active.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_PROMOTION_ACTIVE: <c>HRESULT_FROM_WIN32(ERROR_PROMOTION_ACTIVE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_PROMOTION_ACTIVE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NO_PROMOTION_ACTIVE">
            <summary>
             A domain controller promotion is not currently active
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NO_PROMOTION_ACTIVE: <c>HRESULT_FROM_WIN32(ERROR_NO_PROMOTION_ACTIVE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_PROMOTION_ACTIVE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_OPERATIONS_ERROR">
            <summary>
             An operations error occurred.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_OPERATIONS_ERROR: <c>HRESULT_FROM_WIN32(ERROR_DS_OPERATIONS_ERROR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_OPERATIONS_ERROR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_PROTOCOL_ERROR">
            <summary>
             A protocol error occurred.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_PROTOCOL_ERROR: <c>HRESULT_FROM_WIN32(ERROR_DS_PROTOCOL_ERROR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_PROTOCOL_ERROR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_TIMELIMIT_EXCEEDED">
            <summary>
             The time limit for this request was exceeded.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_TIMELIMIT_EXCEEDED: <c>HRESULT_FROM_WIN32(ERROR_DS_TIMELIMIT_EXCEEDED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_TIMELIMIT_EXCEEDED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_SIZELIMIT_EXCEEDED">
            <summary>
             The size limit for this request was exceeded.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_SIZELIMIT_EXCEEDED: <c>HRESULT_FROM_WIN32(ERROR_DS_SIZELIMIT_EXCEEDED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SIZELIMIT_EXCEEDED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_ADMIN_LIMIT_EXCEEDED">
            <summary>
             The administrative limit for this request was exceeded.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_ADMIN_LIMIT_EXCEEDED: <c>HRESULT_FROM_WIN32(ERROR_DS_ADMIN_LIMIT_EXCEEDED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_ADMIN_LIMIT_EXCEEDED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_COMPARE_FALSE">
            <summary>
             The compare response was false.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_COMPARE_FALSE: <c>HRESULT_FROM_WIN32(ERROR_DS_COMPARE_FALSE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_COMPARE_FALSE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_COMPARE_TRUE">
            <summary>
             The compare response was true.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_COMPARE_TRUE: <c>HRESULT_FROM_WIN32(ERROR_DS_COMPARE_TRUE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_COMPARE_TRUE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_AUTH_METHOD_NOT_SUPPORTED">
            <summary>
             The requested authentication method is not supported by the server.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_AUTH_METHOD_NOT_SUPPORTED: <c>HRESULT_FROM_WIN32(ERROR_DS_AUTH_METHOD_NOT_SUPPORTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_AUTH_METHOD_NOT_SUPPORTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_STRONG_AUTH_REQUIRED">
            <summary>
             A more secure authentication method is required for this server.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_STRONG_AUTH_REQUIRED: <c>HRESULT_FROM_WIN32(ERROR_DS_STRONG_AUTH_REQUIRED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_STRONG_AUTH_REQUIRED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_INAPPROPRIATE_AUTH">
            <summary>
             Inappropriate authentication.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_INAPPROPRIATE_AUTH: <c>HRESULT_FROM_WIN32(ERROR_DS_INAPPROPRIATE_AUTH)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_INAPPROPRIATE_AUTH"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_AUTH_UNKNOWN">
            <summary>
             The authentication mechanism is unknown.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_AUTH_UNKNOWN: <c>HRESULT_FROM_WIN32(ERROR_DS_AUTH_UNKNOWN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_AUTH_UNKNOWN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_REFERRAL">
            <summary>
             A referral was returned from the server.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_REFERRAL: <c>HRESULT_FROM_WIN32(ERROR_DS_REFERRAL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_REFERRAL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_UNAVAILABLE_CRIT_EXTENSION">
            <summary>
             The server does not support the requested critical extension.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_UNAVAILABLE_CRIT_EXTENSION: <c>HRESULT_FROM_WIN32(ERROR_DS_UNAVAILABLE_CRIT_EXTENSION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_UNAVAILABLE_CRIT_EXTENSION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CONFIDENTIALITY_REQUIRED">
            <summary>
             This request requires a secure connection.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CONFIDENTIALITY_REQUIRED: <c>HRESULT_FROM_WIN32(ERROR_DS_CONFIDENTIALITY_REQUIRED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CONFIDENTIALITY_REQUIRED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_INAPPROPRIATE_MATCHING">
            <summary>
             Inappropriate matching.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_INAPPROPRIATE_MATCHING: <c>HRESULT_FROM_WIN32(ERROR_DS_INAPPROPRIATE_MATCHING)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_INAPPROPRIATE_MATCHING"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CONSTRAINT_VIOLATION">
            <summary>
             A constraint violation occurred.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CONSTRAINT_VIOLATION: <c>HRESULT_FROM_WIN32(ERROR_DS_CONSTRAINT_VIOLATION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CONSTRAINT_VIOLATION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NO_SUCH_OBJECT">
            <summary>
             There is no such object on the server.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NO_SUCH_OBJECT: <c>HRESULT_FROM_WIN32(ERROR_DS_NO_SUCH_OBJECT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NO_SUCH_OBJECT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_ALIAS_PROBLEM">
            <summary>
             There is an alias problem.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_ALIAS_PROBLEM: <c>HRESULT_FROM_WIN32(ERROR_DS_ALIAS_PROBLEM)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_ALIAS_PROBLEM"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_INVALID_DN_SYNTAX">
            <summary>
             An invalid dn syntax has been specified.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_INVALID_DN_SYNTAX: <c>HRESULT_FROM_WIN32(ERROR_DS_INVALID_DN_SYNTAX)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_INVALID_DN_SYNTAX"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_IS_LEAF">
            <summary>
             The object is a leaf object.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_IS_LEAF: <c>HRESULT_FROM_WIN32(ERROR_DS_IS_LEAF)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_IS_LEAF"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_ALIAS_DEREF_PROBLEM">
            <summary>
             There is an alias dereferencing problem.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_ALIAS_DEREF_PROBLEM: <c>HRESULT_FROM_WIN32(ERROR_DS_ALIAS_DEREF_PROBLEM)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_ALIAS_DEREF_PROBLEM"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_UNWILLING_TO_PERFORM">
            <summary>
             The server is unwilling to process the request.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_UNWILLING_TO_PERFORM: <c>HRESULT_FROM_WIN32(ERROR_DS_UNWILLING_TO_PERFORM)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_UNWILLING_TO_PERFORM"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_LOOP_DETECT">
            <summary>
             A loop has been detected.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_LOOP_DETECT: <c>HRESULT_FROM_WIN32(ERROR_DS_LOOP_DETECT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_LOOP_DETECT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NAMING_VIOLATION">
            <summary>
             There is a naming violation.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NAMING_VIOLATION: <c>HRESULT_FROM_WIN32(ERROR_DS_NAMING_VIOLATION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NAMING_VIOLATION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_OBJECT_RESULTS_TOO_LARGE">
            <summary>
             The result set is too large.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_OBJECT_RESULTS_TOO_LARGE: <c>HRESULT_FROM_WIN32(ERROR_DS_OBJECT_RESULTS_TOO_LARGE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_OBJECT_RESULTS_TOO_LARGE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_AFFECTS_MULTIPLE_DSAS">
            <summary>
             The operation affects multiple DSAs
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_AFFECTS_MULTIPLE_DSAS: <c>HRESULT_FROM_WIN32(ERROR_DS_AFFECTS_MULTIPLE_DSAS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_AFFECTS_MULTIPLE_DSAS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_SERVER_DOWN">
            <summary>
             The server is not operational.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_SERVER_DOWN: <c>HRESULT_FROM_WIN32(ERROR_DS_SERVER_DOWN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SERVER_DOWN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_LOCAL_ERROR">
            <summary>
             A local error has occurred.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_LOCAL_ERROR: <c>HRESULT_FROM_WIN32(ERROR_DS_LOCAL_ERROR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_LOCAL_ERROR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_ENCODING_ERROR">
            <summary>
             An encoding error has occurred.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_ENCODING_ERROR: <c>HRESULT_FROM_WIN32(ERROR_DS_ENCODING_ERROR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_ENCODING_ERROR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DECODING_ERROR">
            <summary>
             A decoding error has occurred.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DECODING_ERROR: <c>HRESULT_FROM_WIN32(ERROR_DS_DECODING_ERROR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DECODING_ERROR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_FILTER_UNKNOWN">
            <summary>
             The search filter cannot be recognized.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_FILTER_UNKNOWN: <c>HRESULT_FROM_WIN32(ERROR_DS_FILTER_UNKNOWN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_FILTER_UNKNOWN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_PARAM_ERROR">
            <summary>
             One or more parameters are illegal.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_PARAM_ERROR: <c>HRESULT_FROM_WIN32(ERROR_DS_PARAM_ERROR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_PARAM_ERROR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NOT_SUPPORTED">
            <summary>
             The specified method is not supported.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NOT_SUPPORTED: <c>HRESULT_FROM_WIN32(ERROR_DS_NOT_SUPPORTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NOT_SUPPORTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NO_RESULTS_RETURNED">
            <summary>
             No results were returned.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NO_RESULTS_RETURNED: <c>HRESULT_FROM_WIN32(ERROR_DS_NO_RESULTS_RETURNED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NO_RESULTS_RETURNED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CONTROL_NOT_FOUND">
            <summary>
             The specified control is not supported by the server.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CONTROL_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_DS_CONTROL_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CONTROL_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CLIENT_LOOP">
            <summary>
             A referral loop was detected by the client.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CLIENT_LOOP: <c>HRESULT_FROM_WIN32(ERROR_DS_CLIENT_LOOP)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CLIENT_LOOP"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_REFERRAL_LIMIT_EXCEEDED">
            <summary>
             The preset referral limit was exceeded.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_REFERRAL_LIMIT_EXCEEDED: <c>HRESULT_FROM_WIN32(ERROR_DS_REFERRAL_LIMIT_EXCEEDED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_REFERRAL_LIMIT_EXCEEDED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_SORT_CONTROL_MISSING">
            <summary>
             The search requires a SORT control.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_SORT_CONTROL_MISSING: <c>HRESULT_FROM_WIN32(ERROR_DS_SORT_CONTROL_MISSING)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SORT_CONTROL_MISSING"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_OFFSET_RANGE_ERROR">
            <summary>
             The search results exceed the offset range specified.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_OFFSET_RANGE_ERROR: <c>HRESULT_FROM_WIN32(ERROR_DS_OFFSET_RANGE_ERROR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_OFFSET_RANGE_ERROR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_ROOT_MUST_BE_NC">
            <summary>
             The root object must be the head of a naming context. The root object cannot have an instantiated parent.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_ROOT_MUST_BE_NC: <c>HRESULT_FROM_WIN32(ERROR_DS_ROOT_MUST_BE_NC)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_ROOT_MUST_BE_NC"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_ADD_REPLICA_INHIBITED">
            <summary>
             The add replica operation cannot be performed. The naming context must be writeable in order to create the replica.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_ADD_REPLICA_INHIBITED: <c>HRESULT_FROM_WIN32(ERROR_DS_ADD_REPLICA_INHIBITED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_ADD_REPLICA_INHIBITED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_ATT_NOT_DEF_IN_SCHEMA">
            <summary>
             A reference to an attribute that is not defined in the schema occurred.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_ATT_NOT_DEF_IN_SCHEMA: <c>HRESULT_FROM_WIN32(ERROR_DS_ATT_NOT_DEF_IN_SCHEMA)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_ATT_NOT_DEF_IN_SCHEMA"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_MAX_OBJ_SIZE_EXCEEDED">
            <summary>
             The maximum size of an object has been exceeded.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_MAX_OBJ_SIZE_EXCEEDED: <c>HRESULT_FROM_WIN32(ERROR_DS_MAX_OBJ_SIZE_EXCEEDED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_MAX_OBJ_SIZE_EXCEEDED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_OBJ_STRING_NAME_EXISTS">
            <summary>
             An attempt was made to add an object to the directory with a name that is already in use.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_OBJ_STRING_NAME_EXISTS: <c>HRESULT_FROM_WIN32(ERROR_DS_OBJ_STRING_NAME_EXISTS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_OBJ_STRING_NAME_EXISTS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NO_RDN_DEFINED_IN_SCHEMA">
            <summary>
             An attempt was made to add an object of a class that does not have an RDN defined in the schema.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NO_RDN_DEFINED_IN_SCHEMA: <c>HRESULT_FROM_WIN32(ERROR_DS_NO_RDN_DEFINED_IN_SCHEMA)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NO_RDN_DEFINED_IN_SCHEMA"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_RDN_DOESNT_MATCH_SCHEMA">
            <summary>
             An attempt was made to add an object using an RDN that is not the RDN defined in the schema.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_RDN_DOESNT_MATCH_SCHEMA: <c>HRESULT_FROM_WIN32(ERROR_DS_RDN_DOESNT_MATCH_SCHEMA)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_RDN_DOESNT_MATCH_SCHEMA"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NO_REQUESTED_ATTS_FOUND">
            <summary>
             None of the requested attributes were found on the objects.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NO_REQUESTED_ATTS_FOUND: <c>HRESULT_FROM_WIN32(ERROR_DS_NO_REQUESTED_ATTS_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NO_REQUESTED_ATTS_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_USER_BUFFER_TO_SMALL">
            <summary>
             The user buffer is too small.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_USER_BUFFER_TO_SMALL: <c>HRESULT_FROM_WIN32(ERROR_DS_USER_BUFFER_TO_SMALL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_USER_BUFFER_TO_SMALL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_ATT_IS_NOT_ON_OBJ">
            <summary>
             The attribute specified in the operation is not present on the object.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_ATT_IS_NOT_ON_OBJ: <c>HRESULT_FROM_WIN32(ERROR_DS_ATT_IS_NOT_ON_OBJ)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_ATT_IS_NOT_ON_OBJ"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_ILLEGAL_MOD_OPERATION">
            <summary>
             Illegal modify operation. Some aspect of the modification is not permitted.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_ILLEGAL_MOD_OPERATION: <c>HRESULT_FROM_WIN32(ERROR_DS_ILLEGAL_MOD_OPERATION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_ILLEGAL_MOD_OPERATION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_OBJ_TOO_LARGE">
            <summary>
             The specified object is too large.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_OBJ_TOO_LARGE: <c>HRESULT_FROM_WIN32(ERROR_DS_OBJ_TOO_LARGE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_OBJ_TOO_LARGE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_BAD_INSTANCE_TYPE">
            <summary>
             The specified instance type is not valid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_BAD_INSTANCE_TYPE: <c>HRESULT_FROM_WIN32(ERROR_DS_BAD_INSTANCE_TYPE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_BAD_INSTANCE_TYPE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_MASTERDSA_REQUIRED">
            <summary>
             The operation must be performed at a master DSA.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_MASTERDSA_REQUIRED: <c>HRESULT_FROM_WIN32(ERROR_DS_MASTERDSA_REQUIRED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_MASTERDSA_REQUIRED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_OBJECT_CLASS_REQUIRED">
            <summary>
             The object class attribute must be specified.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_OBJECT_CLASS_REQUIRED: <c>HRESULT_FROM_WIN32(ERROR_DS_OBJECT_CLASS_REQUIRED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_OBJECT_CLASS_REQUIRED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_MISSING_REQUIRED_ATT">
            <summary>
             A required attribute is missing.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_MISSING_REQUIRED_ATT: <c>HRESULT_FROM_WIN32(ERROR_DS_MISSING_REQUIRED_ATT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_MISSING_REQUIRED_ATT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_ATT_NOT_DEF_FOR_CLASS">
            <summary>
             An attempt was made to modify an object to include an attribute that is not legal for its class.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_ATT_NOT_DEF_FOR_CLASS: <c>HRESULT_FROM_WIN32(ERROR_DS_ATT_NOT_DEF_FOR_CLASS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_ATT_NOT_DEF_FOR_CLASS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_ATT_ALREADY_EXISTS">
            <summary>
             The specified attribute is already present on the object.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_ATT_ALREADY_EXISTS: <c>HRESULT_FROM_WIN32(ERROR_DS_ATT_ALREADY_EXISTS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_ATT_ALREADY_EXISTS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CANT_ADD_ATT_VALUES">
            <summary>
             The specified attribute is not present, or has no values.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CANT_ADD_ATT_VALUES: <c>HRESULT_FROM_WIN32(ERROR_DS_CANT_ADD_ATT_VALUES)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_ADD_ATT_VALUES"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_SINGLE_VALUE_CONSTRAINT">
            <summary>
             Multiple values were specified for an attribute that can have only one value.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_SINGLE_VALUE_CONSTRAINT: <c>HRESULT_FROM_WIN32(ERROR_DS_SINGLE_VALUE_CONSTRAINT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SINGLE_VALUE_CONSTRAINT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_RANGE_CONSTRAINT">
            <summary>
             A value for the attribute was not in the acceptable range of values.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_RANGE_CONSTRAINT: <c>HRESULT_FROM_WIN32(ERROR_DS_RANGE_CONSTRAINT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_RANGE_CONSTRAINT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_ATT_VAL_ALREADY_EXISTS">
            <summary>
             The specified value already exists.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_ATT_VAL_ALREADY_EXISTS: <c>HRESULT_FROM_WIN32(ERROR_DS_ATT_VAL_ALREADY_EXISTS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_ATT_VAL_ALREADY_EXISTS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CANT_REM_MISSING_ATT">
            <summary>
             The attribute cannot be removed because it is not present on the object.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CANT_REM_MISSING_ATT: <c>HRESULT_FROM_WIN32(ERROR_DS_CANT_REM_MISSING_ATT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_REM_MISSING_ATT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CANT_REM_MISSING_ATT_VAL">
            <summary>
             The attribute value cannot be removed because it is not present on the object.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CANT_REM_MISSING_ATT_VAL: <c>HRESULT_FROM_WIN32(ERROR_DS_CANT_REM_MISSING_ATT_VAL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_REM_MISSING_ATT_VAL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_ROOT_CANT_BE_SUBREF">
            <summary>
             The specified root object cannot be a subref.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_ROOT_CANT_BE_SUBREF: <c>HRESULT_FROM_WIN32(ERROR_DS_ROOT_CANT_BE_SUBREF)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_ROOT_CANT_BE_SUBREF"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NO_CHAINING">
            <summary>
             Chaining is not permitted.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NO_CHAINING: <c>HRESULT_FROM_WIN32(ERROR_DS_NO_CHAINING)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NO_CHAINING"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NO_CHAINED_EVAL">
            <summary>
             Chained evaluation is not permitted.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NO_CHAINED_EVAL: <c>HRESULT_FROM_WIN32(ERROR_DS_NO_CHAINED_EVAL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NO_CHAINED_EVAL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NO_PARENT_OBJECT">
            <summary>
             The operation could not be performed because the object's parent is either uninstantiated or deleted.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NO_PARENT_OBJECT: <c>HRESULT_FROM_WIN32(ERROR_DS_NO_PARENT_OBJECT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NO_PARENT_OBJECT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_PARENT_IS_AN_ALIAS">
            <summary>
             Having a parent that is an alias is not permitted. Aliases are leaf objects.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_PARENT_IS_AN_ALIAS: <c>HRESULT_FROM_WIN32(ERROR_DS_PARENT_IS_AN_ALIAS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_PARENT_IS_AN_ALIAS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CANT_MIX_MASTER_AND_REPS">
            <summary>
             The object and parent must be of the same type, either both masters or both replicas.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CANT_MIX_MASTER_AND_REPS: <c>HRESULT_FROM_WIN32(ERROR_DS_CANT_MIX_MASTER_AND_REPS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_MIX_MASTER_AND_REPS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CHILDREN_EXIST">
            <summary>
             The operation cannot be performed because child objects exist. This operation can only be performed on a leaf object.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CHILDREN_EXIST: <c>HRESULT_FROM_WIN32(ERROR_DS_CHILDREN_EXIST)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CHILDREN_EXIST"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_OBJ_NOT_FOUND">
            <summary>
             Directory object not found.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_OBJ_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_DS_OBJ_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_OBJ_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_ALIASED_OBJ_MISSING">
            <summary>
             The aliased object is missing.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_ALIASED_OBJ_MISSING: <c>HRESULT_FROM_WIN32(ERROR_DS_ALIASED_OBJ_MISSING)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_ALIASED_OBJ_MISSING"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_BAD_NAME_SYNTAX">
            <summary>
             The object name has bad syntax.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_BAD_NAME_SYNTAX: <c>HRESULT_FROM_WIN32(ERROR_DS_BAD_NAME_SYNTAX)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_BAD_NAME_SYNTAX"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_ALIAS_POINTS_TO_ALIAS">
            <summary>
             It is not permitted for an alias to refer to another alias.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_ALIAS_POINTS_TO_ALIAS: <c>HRESULT_FROM_WIN32(ERROR_DS_ALIAS_POINTS_TO_ALIAS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_ALIAS_POINTS_TO_ALIAS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CANT_DEREF_ALIAS">
            <summary>
             The alias cannot be dereferenced.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CANT_DEREF_ALIAS: <c>HRESULT_FROM_WIN32(ERROR_DS_CANT_DEREF_ALIAS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_DEREF_ALIAS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_OUT_OF_SCOPE">
            <summary>
             The operation is out of scope.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_OUT_OF_SCOPE: <c>HRESULT_FROM_WIN32(ERROR_DS_OUT_OF_SCOPE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_OUT_OF_SCOPE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_OBJECT_BEING_REMOVED">
            <summary>
             The operation cannot continue because the object is in the process of being removed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_OBJECT_BEING_REMOVED: <c>HRESULT_FROM_WIN32(ERROR_DS_OBJECT_BEING_REMOVED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_OBJECT_BEING_REMOVED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CANT_DELETE_DSA_OBJ">
            <summary>
             The DSA object cannot be deleted.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CANT_DELETE_DSA_OBJ: <c>HRESULT_FROM_WIN32(ERROR_DS_CANT_DELETE_DSA_OBJ)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_DELETE_DSA_OBJ"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_GENERIC_ERROR">
            <summary>
             A directory service error has occurred.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_GENERIC_ERROR: <c>HRESULT_FROM_WIN32(ERROR_DS_GENERIC_ERROR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_GENERIC_ERROR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DSA_MUST_BE_INT_MASTER">
            <summary>
             The operation can only be performed on an internal master DSA object.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DSA_MUST_BE_INT_MASTER: <c>HRESULT_FROM_WIN32(ERROR_DS_DSA_MUST_BE_INT_MASTER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DSA_MUST_BE_INT_MASTER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CLASS_NOT_DSA">
            <summary>
             The object must be of class DSA.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CLASS_NOT_DSA: <c>HRESULT_FROM_WIN32(ERROR_DS_CLASS_NOT_DSA)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CLASS_NOT_DSA"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_INSUFF_ACCESS_RIGHTS">
            <summary>
             Insufficient access rights to perform the operation.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_INSUFF_ACCESS_RIGHTS: <c>HRESULT_FROM_WIN32(ERROR_DS_INSUFF_ACCESS_RIGHTS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_INSUFF_ACCESS_RIGHTS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_ILLEGAL_SUPERIOR">
            <summary>
             The object cannot be added because the parent is not on the list of possible superiors.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_ILLEGAL_SUPERIOR: <c>HRESULT_FROM_WIN32(ERROR_DS_ILLEGAL_SUPERIOR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_ILLEGAL_SUPERIOR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_ATTRIBUTE_OWNED_BY_SAM">
            <summary>
             Access to the attribute is not permitted because the attribute is owned by the Security Accounts Manager (SAM).
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_ATTRIBUTE_OWNED_BY_SAM: <c>HRESULT_FROM_WIN32(ERROR_DS_ATTRIBUTE_OWNED_BY_SAM)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_ATTRIBUTE_OWNED_BY_SAM"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NAME_TOO_MANY_PARTS">
            <summary>
             The name has too many parts.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NAME_TOO_MANY_PARTS: <c>HRESULT_FROM_WIN32(ERROR_DS_NAME_TOO_MANY_PARTS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NAME_TOO_MANY_PARTS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NAME_TOO_LONG">
            <summary>
             The name is too long.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NAME_TOO_LONG: <c>HRESULT_FROM_WIN32(ERROR_DS_NAME_TOO_LONG)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NAME_TOO_LONG"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NAME_VALUE_TOO_LONG">
            <summary>
             The name value is too long.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NAME_VALUE_TOO_LONG: <c>HRESULT_FROM_WIN32(ERROR_DS_NAME_VALUE_TOO_LONG)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NAME_VALUE_TOO_LONG"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NAME_UNPARSEABLE">
            <summary>
             The directory service encountered an error parsing a name.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NAME_UNPARSEABLE: <c>HRESULT_FROM_WIN32(ERROR_DS_NAME_UNPARSEABLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NAME_UNPARSEABLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NAME_TYPE_UNKNOWN">
            <summary>
             The directory service cannot get the attribute type for a name.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NAME_TYPE_UNKNOWN: <c>HRESULT_FROM_WIN32(ERROR_DS_NAME_TYPE_UNKNOWN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NAME_TYPE_UNKNOWN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NOT_AN_OBJECT">
            <summary>
             The name does not identify an object; the name identifies a phantom.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NOT_AN_OBJECT: <c>HRESULT_FROM_WIN32(ERROR_DS_NOT_AN_OBJECT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NOT_AN_OBJECT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_SEC_DESC_TOO_SHORT">
            <summary>
             The security descriptor is too short.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_SEC_DESC_TOO_SHORT: <c>HRESULT_FROM_WIN32(ERROR_DS_SEC_DESC_TOO_SHORT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SEC_DESC_TOO_SHORT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_SEC_DESC_INVALID">
            <summary>
             The security descriptor is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_SEC_DESC_INVALID: <c>HRESULT_FROM_WIN32(ERROR_DS_SEC_DESC_INVALID)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SEC_DESC_INVALID"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NO_DELETED_NAME">
            <summary>
             Failed to create name for deleted object.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NO_DELETED_NAME: <c>HRESULT_FROM_WIN32(ERROR_DS_NO_DELETED_NAME)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NO_DELETED_NAME"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_SUBREF_MUST_HAVE_PARENT">
            <summary>
             The parent of a new subref must exist.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_SUBREF_MUST_HAVE_PARENT: <c>HRESULT_FROM_WIN32(ERROR_DS_SUBREF_MUST_HAVE_PARENT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SUBREF_MUST_HAVE_PARENT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NCNAME_MUST_BE_NC">
            <summary>
             The object must be a naming context.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NCNAME_MUST_BE_NC: <c>HRESULT_FROM_WIN32(ERROR_DS_NCNAME_MUST_BE_NC)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NCNAME_MUST_BE_NC"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CANT_ADD_SYSTEM_ONLY">
            <summary>
             It is not permitted to add an attribute which is owned by the system.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CANT_ADD_SYSTEM_ONLY: <c>HRESULT_FROM_WIN32(ERROR_DS_CANT_ADD_SYSTEM_ONLY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_ADD_SYSTEM_ONLY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CLASS_MUST_BE_CONCRETE">
            <summary>
             The class of the object must be structural; you cannot instantiate an abstract class.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CLASS_MUST_BE_CONCRETE: <c>HRESULT_FROM_WIN32(ERROR_DS_CLASS_MUST_BE_CONCRETE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CLASS_MUST_BE_CONCRETE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_INVALID_DMD">
            <summary>
             The schema object could not be found.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_INVALID_DMD: <c>HRESULT_FROM_WIN32(ERROR_DS_INVALID_DMD)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_INVALID_DMD"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_OBJ_GUID_EXISTS">
            <summary>
             A local object with this GUID (dead or alive) already exists.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_OBJ_GUID_EXISTS: <c>HRESULT_FROM_WIN32(ERROR_DS_OBJ_GUID_EXISTS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_OBJ_GUID_EXISTS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NOT_ON_BACKLINK">
            <summary>
             The operation cannot be performed on a back link.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NOT_ON_BACKLINK: <c>HRESULT_FROM_WIN32(ERROR_DS_NOT_ON_BACKLINK)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NOT_ON_BACKLINK"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NO_CROSSREF_FOR_NC">
            <summary>
             The cross reference for the specified naming context could not be found.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NO_CROSSREF_FOR_NC: <c>HRESULT_FROM_WIN32(ERROR_DS_NO_CROSSREF_FOR_NC)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NO_CROSSREF_FOR_NC"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_SHUTTING_DOWN">
            <summary>
             The operation could not be performed because the directory service is shutting down.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_SHUTTING_DOWN: <c>HRESULT_FROM_WIN32(ERROR_DS_SHUTTING_DOWN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SHUTTING_DOWN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_UNKNOWN_OPERATION">
            <summary>
             The directory service request is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_UNKNOWN_OPERATION: <c>HRESULT_FROM_WIN32(ERROR_DS_UNKNOWN_OPERATION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_UNKNOWN_OPERATION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_INVALID_ROLE_OWNER">
            <summary>
             The role owner attribute could not be read.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_INVALID_ROLE_OWNER: <c>HRESULT_FROM_WIN32(ERROR_DS_INVALID_ROLE_OWNER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_INVALID_ROLE_OWNER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_COULDNT_CONTACT_FSMO">
            <summary>
             The requested FSMO operation failed. The current FSMO holder could not be contacted.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_COULDNT_CONTACT_FSMO: <c>HRESULT_FROM_WIN32(ERROR_DS_COULDNT_CONTACT_FSMO)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_COULDNT_CONTACT_FSMO"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CROSS_NC_DN_RENAME">
            <summary>
             Modification of a DN across a naming context is not permitted.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CROSS_NC_DN_RENAME: <c>HRESULT_FROM_WIN32(ERROR_DS_CROSS_NC_DN_RENAME)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CROSS_NC_DN_RENAME"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CANT_MOD_SYSTEM_ONLY">
            <summary>
             The attribute cannot be modified because it is owned by the system.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CANT_MOD_SYSTEM_ONLY: <c>HRESULT_FROM_WIN32(ERROR_DS_CANT_MOD_SYSTEM_ONLY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_MOD_SYSTEM_ONLY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_REPLICATOR_ONLY">
            <summary>
             Only the replicator can perform this function.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_REPLICATOR_ONLY: <c>HRESULT_FROM_WIN32(ERROR_DS_REPLICATOR_ONLY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_REPLICATOR_ONLY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_OBJ_CLASS_NOT_DEFINED">
            <summary>
             The specified class is not defined.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_OBJ_CLASS_NOT_DEFINED: <c>HRESULT_FROM_WIN32(ERROR_DS_OBJ_CLASS_NOT_DEFINED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_OBJ_CLASS_NOT_DEFINED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_OBJ_CLASS_NOT_SUBCLASS">
            <summary>
             The specified class is not a subclass.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_OBJ_CLASS_NOT_SUBCLASS: <c>HRESULT_FROM_WIN32(ERROR_DS_OBJ_CLASS_NOT_SUBCLASS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_OBJ_CLASS_NOT_SUBCLASS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NAME_REFERENCE_INVALID">
            <summary>
             The name reference is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NAME_REFERENCE_INVALID: <c>HRESULT_FROM_WIN32(ERROR_DS_NAME_REFERENCE_INVALID)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NAME_REFERENCE_INVALID"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CROSS_REF_EXISTS">
            <summary>
             A cross reference already exists.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CROSS_REF_EXISTS: <c>HRESULT_FROM_WIN32(ERROR_DS_CROSS_REF_EXISTS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CROSS_REF_EXISTS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CANT_DEL_MASTER_CROSSREF">
            <summary>
             It is not permitted to delete a master cross reference.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CANT_DEL_MASTER_CROSSREF: <c>HRESULT_FROM_WIN32(ERROR_DS_CANT_DEL_MASTER_CROSSREF)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_DEL_MASTER_CROSSREF"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_SUBTREE_NOTIFY_NOT_NC_HEAD">
            <summary>
             Subtree notifications are only supported on NC heads.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_SUBTREE_NOTIFY_NOT_NC_HEAD: <c>HRESULT_FROM_WIN32(ERROR_DS_SUBTREE_NOTIFY_NOT_NC_HEAD)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SUBTREE_NOTIFY_NOT_NC_HEAD"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NOTIFY_FILTER_TOO_COMPLEX">
            <summary>
             Notification filter is too complex.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NOTIFY_FILTER_TOO_COMPLEX: <c>HRESULT_FROM_WIN32(ERROR_DS_NOTIFY_FILTER_TOO_COMPLEX)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NOTIFY_FILTER_TOO_COMPLEX"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DUP_RDN">
            <summary>
             Schema update failed: duplicate RDN.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DUP_RDN: <c>HRESULT_FROM_WIN32(ERROR_DS_DUP_RDN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DUP_RDN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DUP_OID">
            <summary>
             Schema update failed: duplicate OID.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DUP_OID: <c>HRESULT_FROM_WIN32(ERROR_DS_DUP_OID)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DUP_OID"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DUP_MAPI_ID">
            <summary>
             Schema update failed: duplicate MAPI identifier.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DUP_MAPI_ID: <c>HRESULT_FROM_WIN32(ERROR_DS_DUP_MAPI_ID)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DUP_MAPI_ID"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DUP_SCHEMA_ID_GUID">
            <summary>
             Schema update failed: duplicate schema-id GUID.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DUP_SCHEMA_ID_GUID: <c>HRESULT_FROM_WIN32(ERROR_DS_DUP_SCHEMA_ID_GUID)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DUP_SCHEMA_ID_GUID"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DUP_LDAP_DISPLAY_NAME">
            <summary>
             Schema update failed: duplicate LDAP display name.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DUP_LDAP_DISPLAY_NAME: <c>HRESULT_FROM_WIN32(ERROR_DS_DUP_LDAP_DISPLAY_NAME)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DUP_LDAP_DISPLAY_NAME"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_SEMANTIC_ATT_TEST">
            <summary>
             Schema update failed: range-lower less than range upper.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_SEMANTIC_ATT_TEST: <c>HRESULT_FROM_WIN32(ERROR_DS_SEMANTIC_ATT_TEST)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SEMANTIC_ATT_TEST"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_SYNTAX_MISMATCH">
            <summary>
             Schema update failed: syntax mismatch.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_SYNTAX_MISMATCH: <c>HRESULT_FROM_WIN32(ERROR_DS_SYNTAX_MISMATCH)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SYNTAX_MISMATCH"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_EXISTS_IN_MUST_HAVE">
            <summary>
             Schema deletion failed: attribute is used in must-contain.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_EXISTS_IN_MUST_HAVE: <c>HRESULT_FROM_WIN32(ERROR_DS_EXISTS_IN_MUST_HAVE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_EXISTS_IN_MUST_HAVE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_EXISTS_IN_MAY_HAVE">
            <summary>
             Schema deletion failed: attribute is used in may-contain.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_EXISTS_IN_MAY_HAVE: <c>HRESULT_FROM_WIN32(ERROR_DS_EXISTS_IN_MAY_HAVE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_EXISTS_IN_MAY_HAVE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NONEXISTENT_MAY_HAVE">
            <summary>
             Schema update failed: attribute in may-contain does not exist.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NONEXISTENT_MAY_HAVE: <c>HRESULT_FROM_WIN32(ERROR_DS_NONEXISTENT_MAY_HAVE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NONEXISTENT_MAY_HAVE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NONEXISTENT_MUST_HAVE">
            <summary>
             Schema update failed: attribute in must-contain does not exist.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NONEXISTENT_MUST_HAVE: <c>HRESULT_FROM_WIN32(ERROR_DS_NONEXISTENT_MUST_HAVE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NONEXISTENT_MUST_HAVE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_AUX_CLS_TEST_FAIL">
            <summary>
             Schema update failed: class in aux-class list does not exist or is not an auxiliary class.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_AUX_CLS_TEST_FAIL: <c>HRESULT_FROM_WIN32(ERROR_DS_AUX_CLS_TEST_FAIL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_AUX_CLS_TEST_FAIL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NONEXISTENT_POSS_SUP">
            <summary>
             Schema update failed: class in poss-superiors does not exist.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NONEXISTENT_POSS_SUP: <c>HRESULT_FROM_WIN32(ERROR_DS_NONEXISTENT_POSS_SUP)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NONEXISTENT_POSS_SUP"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_SUB_CLS_TEST_FAIL">
            <summary>
             Schema update failed: class in subclassof list does not exist or does not satisfy hierarchy rules.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_SUB_CLS_TEST_FAIL: <c>HRESULT_FROM_WIN32(ERROR_DS_SUB_CLS_TEST_FAIL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SUB_CLS_TEST_FAIL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_BAD_RDN_ATT_ID_SYNTAX">
            <summary>
             Schema update failed: Rdn-Att-Id has wrong syntax.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_BAD_RDN_ATT_ID_SYNTAX: <c>HRESULT_FROM_WIN32(ERROR_DS_BAD_RDN_ATT_ID_SYNTAX)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_BAD_RDN_ATT_ID_SYNTAX"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_EXISTS_IN_AUX_CLS">
            <summary>
             Schema deletion failed: class is used as auxiliary class.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_EXISTS_IN_AUX_CLS: <c>HRESULT_FROM_WIN32(ERROR_DS_EXISTS_IN_AUX_CLS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_EXISTS_IN_AUX_CLS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_EXISTS_IN_SUB_CLS">
            <summary>
             Schema deletion failed: class is used as sub class.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_EXISTS_IN_SUB_CLS: <c>HRESULT_FROM_WIN32(ERROR_DS_EXISTS_IN_SUB_CLS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_EXISTS_IN_SUB_CLS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_EXISTS_IN_POSS_SUP">
            <summary>
             Schema deletion failed: class is used as poss superior.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_EXISTS_IN_POSS_SUP: <c>HRESULT_FROM_WIN32(ERROR_DS_EXISTS_IN_POSS_SUP)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_EXISTS_IN_POSS_SUP"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_RECALCSCHEMA_FAILED">
            <summary>
             Schema update failed in recalculating validation cache.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_RECALCSCHEMA_FAILED: <c>HRESULT_FROM_WIN32(ERROR_DS_RECALCSCHEMA_FAILED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_RECALCSCHEMA_FAILED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_TREE_DELETE_NOT_FINISHED">
            <summary>
             The tree deletion is not finished.  The request must be made again to continue deleting the tree.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_TREE_DELETE_NOT_FINISHED: <c>HRESULT_FROM_WIN32(ERROR_DS_TREE_DELETE_NOT_FINISHED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_TREE_DELETE_NOT_FINISHED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CANT_DELETE">
            <summary>
             The requested delete operation could not be performed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CANT_DELETE: <c>HRESULT_FROM_WIN32(ERROR_DS_CANT_DELETE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_DELETE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_ATT_SCHEMA_REQ_ID">
            <summary>
             Cannot read the governs class identifier for the schema record.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_ATT_SCHEMA_REQ_ID: <c>HRESULT_FROM_WIN32(ERROR_DS_ATT_SCHEMA_REQ_ID)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_ATT_SCHEMA_REQ_ID"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_BAD_ATT_SCHEMA_SYNTAX">
            <summary>
             The attribute schema has bad syntax.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_BAD_ATT_SCHEMA_SYNTAX: <c>HRESULT_FROM_WIN32(ERROR_DS_BAD_ATT_SCHEMA_SYNTAX)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_BAD_ATT_SCHEMA_SYNTAX"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CANT_CACHE_ATT">
            <summary>
             The attribute could not be cached.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CANT_CACHE_ATT: <c>HRESULT_FROM_WIN32(ERROR_DS_CANT_CACHE_ATT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_CACHE_ATT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CANT_CACHE_CLASS">
            <summary>
             The class could not be cached.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CANT_CACHE_CLASS: <c>HRESULT_FROM_WIN32(ERROR_DS_CANT_CACHE_CLASS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_CACHE_CLASS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CANT_REMOVE_ATT_CACHE">
            <summary>
             The attribute could not be removed from the cache.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CANT_REMOVE_ATT_CACHE: <c>HRESULT_FROM_WIN32(ERROR_DS_CANT_REMOVE_ATT_CACHE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_REMOVE_ATT_CACHE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CANT_REMOVE_CLASS_CACHE">
            <summary>
             The class could not be removed from the cache.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CANT_REMOVE_CLASS_CACHE: <c>HRESULT_FROM_WIN32(ERROR_DS_CANT_REMOVE_CLASS_CACHE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_REMOVE_CLASS_CACHE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CANT_RETRIEVE_DN">
            <summary>
             The distinguished name attribute could not be read.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CANT_RETRIEVE_DN: <c>HRESULT_FROM_WIN32(ERROR_DS_CANT_RETRIEVE_DN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_RETRIEVE_DN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_MISSING_SUPREF">
            <summary>
             No superior reference has been configured for the directory service. The directory service is therefore unable to issue referrals to objects outside this forest.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_MISSING_SUPREF: <c>HRESULT_FROM_WIN32(ERROR_DS_MISSING_SUPREF)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_MISSING_SUPREF"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CANT_RETRIEVE_INSTANCE">
            <summary>
             The instance type attribute could not be retrieved.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CANT_RETRIEVE_INSTANCE: <c>HRESULT_FROM_WIN32(ERROR_DS_CANT_RETRIEVE_INSTANCE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_RETRIEVE_INSTANCE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CODE_INCONSISTENCY">
            <summary>
             An internal error has occurred.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CODE_INCONSISTENCY: <c>HRESULT_FROM_WIN32(ERROR_DS_CODE_INCONSISTENCY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CODE_INCONSISTENCY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DATABASE_ERROR">
            <summary>
             A database error has occurred.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DATABASE_ERROR: <c>HRESULT_FROM_WIN32(ERROR_DS_DATABASE_ERROR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DATABASE_ERROR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_GOVERNSID_MISSING">
            <summary>
             The attribute GOVERNSID is missing.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_GOVERNSID_MISSING: <c>HRESULT_FROM_WIN32(ERROR_DS_GOVERNSID_MISSING)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_GOVERNSID_MISSING"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_MISSING_EXPECTED_ATT">
            <summary>
             An expected attribute is missing.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_MISSING_EXPECTED_ATT: <c>HRESULT_FROM_WIN32(ERROR_DS_MISSING_EXPECTED_ATT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_MISSING_EXPECTED_ATT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NCNAME_MISSING_CR_REF">
            <summary>
             The specified naming context is missing a cross reference.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NCNAME_MISSING_CR_REF: <c>HRESULT_FROM_WIN32(ERROR_DS_NCNAME_MISSING_CR_REF)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NCNAME_MISSING_CR_REF"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_SECURITY_CHECKING_ERROR">
            <summary>
             A security checking error has occurred.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_SECURITY_CHECKING_ERROR: <c>HRESULT_FROM_WIN32(ERROR_DS_SECURITY_CHECKING_ERROR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SECURITY_CHECKING_ERROR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_SCHEMA_NOT_LOADED">
            <summary>
             The schema is not loaded.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_SCHEMA_NOT_LOADED: <c>HRESULT_FROM_WIN32(ERROR_DS_SCHEMA_NOT_LOADED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SCHEMA_NOT_LOADED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_SCHEMA_ALLOC_FAILED">
            <summary>
             Schema allocation failed. Please check if the machine is running low on memory.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_SCHEMA_ALLOC_FAILED: <c>HRESULT_FROM_WIN32(ERROR_DS_SCHEMA_ALLOC_FAILED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SCHEMA_ALLOC_FAILED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_ATT_SCHEMA_REQ_SYNTAX">
            <summary>
             Failed to obtain the required syntax for the attribute schema.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_ATT_SCHEMA_REQ_SYNTAX: <c>HRESULT_FROM_WIN32(ERROR_DS_ATT_SCHEMA_REQ_SYNTAX)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_ATT_SCHEMA_REQ_SYNTAX"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_GCVERIFY_ERROR">
            <summary>
             The global catalog verification failed. The global catalog is not available or does not support the operation. Some part of the directory is currently not available.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_GCVERIFY_ERROR: <c>HRESULT_FROM_WIN32(ERROR_DS_GCVERIFY_ERROR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_GCVERIFY_ERROR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DRA_SCHEMA_MISMATCH">
            <summary>
             The replication operation failed because of a schema mismatch between the servers involved.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DRA_SCHEMA_MISMATCH: <c>HRESULT_FROM_WIN32(ERROR_DS_DRA_SCHEMA_MISMATCH)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_SCHEMA_MISMATCH"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CANT_FIND_DSA_OBJ">
            <summary>
             The DSA object could not be found.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CANT_FIND_DSA_OBJ: <c>HRESULT_FROM_WIN32(ERROR_DS_CANT_FIND_DSA_OBJ)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_FIND_DSA_OBJ"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CANT_FIND_EXPECTED_NC">
            <summary>
             The naming context could not be found.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CANT_FIND_EXPECTED_NC: <c>HRESULT_FROM_WIN32(ERROR_DS_CANT_FIND_EXPECTED_NC)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_FIND_EXPECTED_NC"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CANT_FIND_NC_IN_CACHE">
            <summary>
             The naming context could not be found in the cache.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CANT_FIND_NC_IN_CACHE: <c>HRESULT_FROM_WIN32(ERROR_DS_CANT_FIND_NC_IN_CACHE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_FIND_NC_IN_CACHE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CANT_RETRIEVE_CHILD">
            <summary>
             The child object could not be retrieved.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CANT_RETRIEVE_CHILD: <c>HRESULT_FROM_WIN32(ERROR_DS_CANT_RETRIEVE_CHILD)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_RETRIEVE_CHILD"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_SECURITY_ILLEGAL_MODIFY">
            <summary>
             The modification was not permitted for security reasons.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_SECURITY_ILLEGAL_MODIFY: <c>HRESULT_FROM_WIN32(ERROR_DS_SECURITY_ILLEGAL_MODIFY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SECURITY_ILLEGAL_MODIFY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CANT_REPLACE_HIDDEN_REC">
            <summary>
             The operation cannot replace the hidden record.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CANT_REPLACE_HIDDEN_REC: <c>HRESULT_FROM_WIN32(ERROR_DS_CANT_REPLACE_HIDDEN_REC)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_REPLACE_HIDDEN_REC"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_BAD_HIERARCHY_FILE">
            <summary>
             The hierarchy file is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_BAD_HIERARCHY_FILE: <c>HRESULT_FROM_WIN32(ERROR_DS_BAD_HIERARCHY_FILE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_BAD_HIERARCHY_FILE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_BUILD_HIERARCHY_TABLE_FAILED">
            <summary>
             The attempt to build the hierarchy table failed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_BUILD_HIERARCHY_TABLE_FAILED: <c>HRESULT_FROM_WIN32(ERROR_DS_BUILD_HIERARCHY_TABLE_FAILED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_BUILD_HIERARCHY_TABLE_FAILED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CONFIG_PARAM_MISSING">
            <summary>
             The directory configuration parameter is missing from the registry.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CONFIG_PARAM_MISSING: <c>HRESULT_FROM_WIN32(ERROR_DS_CONFIG_PARAM_MISSING)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CONFIG_PARAM_MISSING"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_COUNTING_AB_INDICES_FAILED">
            <summary>
             The attempt to count the address book indices failed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_COUNTING_AB_INDICES_FAILED: <c>HRESULT_FROM_WIN32(ERROR_DS_COUNTING_AB_INDICES_FAILED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_COUNTING_AB_INDICES_FAILED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_HIERARCHY_TABLE_MALLOC_FAILED">
            <summary>
             The allocation of the hierarchy table failed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_HIERARCHY_TABLE_MALLOC_FAILED: <c>HRESULT_FROM_WIN32(ERROR_DS_HIERARCHY_TABLE_MALLOC_FAILED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_HIERARCHY_TABLE_MALLOC_FAILED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_INTERNAL_FAILURE">
            <summary>
             The directory service encountered an internal failure.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_INTERNAL_FAILURE: <c>HRESULT_FROM_WIN32(ERROR_DS_INTERNAL_FAILURE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_INTERNAL_FAILURE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_UNKNOWN_ERROR">
            <summary>
             The directory service encountered an unknown failure.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_UNKNOWN_ERROR: <c>HRESULT_FROM_WIN32(ERROR_DS_UNKNOWN_ERROR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_UNKNOWN_ERROR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_ROOT_REQUIRES_CLASS_TOP">
            <summary>
             A root object requires a class of 'top'.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_ROOT_REQUIRES_CLASS_TOP: <c>HRESULT_FROM_WIN32(ERROR_DS_ROOT_REQUIRES_CLASS_TOP)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_ROOT_REQUIRES_CLASS_TOP"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_REFUSING_FSMO_ROLES">
            <summary>
             This directory server is shutting down, and cannot take ownership of new floating single-master operation roles.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_REFUSING_FSMO_ROLES: <c>HRESULT_FROM_WIN32(ERROR_DS_REFUSING_FSMO_ROLES)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_REFUSING_FSMO_ROLES"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_MISSING_FSMO_SETTINGS">
            <summary>
             The directory service is missing mandatory configuration information, and is unable to determine the ownership of floating single-master operation roles.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_MISSING_FSMO_SETTINGS: <c>HRESULT_FROM_WIN32(ERROR_DS_MISSING_FSMO_SETTINGS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_MISSING_FSMO_SETTINGS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_UNABLE_TO_SURRENDER_ROLES">
            <summary>
             The directory service was unable to transfer ownership of one or more floating single-master operation roles to other servers.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_UNABLE_TO_SURRENDER_ROLES: <c>HRESULT_FROM_WIN32(ERROR_DS_UNABLE_TO_SURRENDER_ROLES)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_UNABLE_TO_SURRENDER_ROLES"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DRA_GENERIC">
            <summary>
             The replication operation failed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DRA_GENERIC: <c>HRESULT_FROM_WIN32(ERROR_DS_DRA_GENERIC)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_GENERIC"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DRA_INVALID_PARAMETER">
            <summary>
             An invalid parameter was specified for this replication operation.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DRA_INVALID_PARAMETER: <c>HRESULT_FROM_WIN32(ERROR_DS_DRA_INVALID_PARAMETER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_INVALID_PARAMETER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DRA_BUSY">
            <summary>
             The directory service is too busy to complete the replication operation at this time.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DRA_BUSY: <c>HRESULT_FROM_WIN32(ERROR_DS_DRA_BUSY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_BUSY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DRA_BAD_DN">
            <summary>
             The distinguished name specified for this replication operation is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DRA_BAD_DN: <c>HRESULT_FROM_WIN32(ERROR_DS_DRA_BAD_DN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_BAD_DN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DRA_BAD_NC">
            <summary>
             The naming context specified for this replication operation is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DRA_BAD_NC: <c>HRESULT_FROM_WIN32(ERROR_DS_DRA_BAD_NC)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_BAD_NC"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DRA_DN_EXISTS">
            <summary>
             The distinguished name specified for this replication operation already exists.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DRA_DN_EXISTS: <c>HRESULT_FROM_WIN32(ERROR_DS_DRA_DN_EXISTS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_DN_EXISTS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DRA_INTERNAL_ERROR">
            <summary>
             The replication system encountered an internal error.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DRA_INTERNAL_ERROR: <c>HRESULT_FROM_WIN32(ERROR_DS_DRA_INTERNAL_ERROR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_INTERNAL_ERROR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DRA_INCONSISTENT_DIT">
            <summary>
             The replication operation encountered a database inconsistency.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DRA_INCONSISTENT_DIT: <c>HRESULT_FROM_WIN32(ERROR_DS_DRA_INCONSISTENT_DIT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_INCONSISTENT_DIT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DRA_CONNECTION_FAILED">
            <summary>
             The server specified for this replication operation could not be contacted.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DRA_CONNECTION_FAILED: <c>HRESULT_FROM_WIN32(ERROR_DS_DRA_CONNECTION_FAILED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_CONNECTION_FAILED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DRA_BAD_INSTANCE_TYPE">
            <summary>
             The replication operation encountered an object with an invalid instance type.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DRA_BAD_INSTANCE_TYPE: <c>HRESULT_FROM_WIN32(ERROR_DS_DRA_BAD_INSTANCE_TYPE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_BAD_INSTANCE_TYPE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DRA_OUT_OF_MEM">
            <summary>
             The replication operation failed to allocate memory.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DRA_OUT_OF_MEM: <c>HRESULT_FROM_WIN32(ERROR_DS_DRA_OUT_OF_MEM)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_OUT_OF_MEM"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DRA_MAIL_PROBLEM">
            <summary>
             The replication operation encountered an error with the mail system.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DRA_MAIL_PROBLEM: <c>HRESULT_FROM_WIN32(ERROR_DS_DRA_MAIL_PROBLEM)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_MAIL_PROBLEM"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DRA_REF_ALREADY_EXISTS">
            <summary>
             The replication reference information for the target server already exists.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DRA_REF_ALREADY_EXISTS: <c>HRESULT_FROM_WIN32(ERROR_DS_DRA_REF_ALREADY_EXISTS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_REF_ALREADY_EXISTS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DRA_REF_NOT_FOUND">
            <summary>
             The replication reference information for the target server does not exist.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DRA_REF_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_DS_DRA_REF_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_REF_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DRA_OBJ_IS_REP_SOURCE">
            <summary>
             The naming context cannot be removed because it is replicated to another server.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DRA_OBJ_IS_REP_SOURCE: <c>HRESULT_FROM_WIN32(ERROR_DS_DRA_OBJ_IS_REP_SOURCE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_OBJ_IS_REP_SOURCE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DRA_DB_ERROR">
            <summary>
             The replication operation encountered a database error.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DRA_DB_ERROR: <c>HRESULT_FROM_WIN32(ERROR_DS_DRA_DB_ERROR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_DB_ERROR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DRA_NO_REPLICA">
            <summary>
             The naming context is in the process of being removed or is not replicated from the specified server.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DRA_NO_REPLICA: <c>HRESULT_FROM_WIN32(ERROR_DS_DRA_NO_REPLICA)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_NO_REPLICA"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DRA_ACCESS_DENIED">
            <summary>
             Replication access was denied.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DRA_ACCESS_DENIED: <c>HRESULT_FROM_WIN32(ERROR_DS_DRA_ACCESS_DENIED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_ACCESS_DENIED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DRA_NOT_SUPPORTED">
            <summary>
             The requested operation is not supported by this version of the directory service.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DRA_NOT_SUPPORTED: <c>HRESULT_FROM_WIN32(ERROR_DS_DRA_NOT_SUPPORTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_NOT_SUPPORTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DRA_RPC_CANCELLED">
            <summary>
             The replication remote procedure call was cancelled.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DRA_RPC_CANCELLED: <c>HRESULT_FROM_WIN32(ERROR_DS_DRA_RPC_CANCELLED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_RPC_CANCELLED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DRA_SOURCE_DISABLED">
            <summary>
             The source server is currently rejecting replication requests.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DRA_SOURCE_DISABLED: <c>HRESULT_FROM_WIN32(ERROR_DS_DRA_SOURCE_DISABLED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_SOURCE_DISABLED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DRA_SINK_DISABLED">
            <summary>
             The destination server is currently rejecting replication requests.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DRA_SINK_DISABLED: <c>HRESULT_FROM_WIN32(ERROR_DS_DRA_SINK_DISABLED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_SINK_DISABLED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DRA_NAME_COLLISION">
            <summary>
             The replication operation failed due to a collision of object names.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DRA_NAME_COLLISION: <c>HRESULT_FROM_WIN32(ERROR_DS_DRA_NAME_COLLISION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_NAME_COLLISION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DRA_SOURCE_REINSTALLED">
            <summary>
             The replication source has been reinstalled.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DRA_SOURCE_REINSTALLED: <c>HRESULT_FROM_WIN32(ERROR_DS_DRA_SOURCE_REINSTALLED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_SOURCE_REINSTALLED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DRA_MISSING_PARENT">
            <summary>
             The replication operation failed because a required parent object is missing.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DRA_MISSING_PARENT: <c>HRESULT_FROM_WIN32(ERROR_DS_DRA_MISSING_PARENT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_MISSING_PARENT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DRA_PREEMPTED">
            <summary>
             The replication operation was preempted.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DRA_PREEMPTED: <c>HRESULT_FROM_WIN32(ERROR_DS_DRA_PREEMPTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_PREEMPTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DRA_ABANDON_SYNC">
            <summary>
             The replication synchronization attempt was abandoned because of a lack of updates.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DRA_ABANDON_SYNC: <c>HRESULT_FROM_WIN32(ERROR_DS_DRA_ABANDON_SYNC)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_ABANDON_SYNC"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DRA_SHUTDOWN">
            <summary>
             The replication operation was terminated because the system is shutting down.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DRA_SHUTDOWN: <c>HRESULT_FROM_WIN32(ERROR_DS_DRA_SHUTDOWN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_SHUTDOWN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DRA_INCOMPATIBLE_PARTIAL_SET">
            <summary>
             Synchronization attempt failed because the destination DC is currently waiting to synchronize new partial attributes from source. This condition is normal if a recent schema change modified the partial attribute set. The destination partial attribute set is not a subset of source partial attribute set.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DRA_INCOMPATIBLE_PARTIAL_SET: <c>HRESULT_FROM_WIN32(ERROR_DS_DRA_INCOMPATIBLE_PARTIAL_SET)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_INCOMPATIBLE_PARTIAL_SET"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DRA_SOURCE_IS_PARTIAL_REPLICA">
            <summary>
             The replication synchronization attempt failed because a master replica attempted to sync from a partial replica.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DRA_SOURCE_IS_PARTIAL_REPLICA: <c>HRESULT_FROM_WIN32(ERROR_DS_DRA_SOURCE_IS_PARTIAL_REPLICA)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_SOURCE_IS_PARTIAL_REPLICA"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DRA_EXTN_CONNECTION_FAILED">
            <summary>
             The server specified for this replication operation was contacted, but that server was unable to contact an additional server needed to complete the operation.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DRA_EXTN_CONNECTION_FAILED: <c>HRESULT_FROM_WIN32(ERROR_DS_DRA_EXTN_CONNECTION_FAILED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_EXTN_CONNECTION_FAILED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_INSTALL_SCHEMA_MISMATCH">
            <summary>
             The version of the Active Directory schema of the source forest is not compatible with the version of Active Directory on this computer.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_INSTALL_SCHEMA_MISMATCH: <c>HRESULT_FROM_WIN32(ERROR_DS_INSTALL_SCHEMA_MISMATCH)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_INSTALL_SCHEMA_MISMATCH"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DUP_LINK_ID">
            <summary>
             Schema update failed: An attribute with the same link identifier already exists.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DUP_LINK_ID: <c>HRESULT_FROM_WIN32(ERROR_DS_DUP_LINK_ID)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DUP_LINK_ID"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NAME_ERROR_RESOLVING">
            <summary>
             Name translation: Generic processing error.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NAME_ERROR_RESOLVING: <c>HRESULT_FROM_WIN32(ERROR_DS_NAME_ERROR_RESOLVING)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NAME_ERROR_RESOLVING"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NAME_ERROR_NOT_FOUND">
            <summary>
             Name translation: Could not find the name or insufficient right to see name.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NAME_ERROR_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_DS_NAME_ERROR_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NAME_ERROR_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NAME_ERROR_NOT_UNIQUE">
            <summary>
             Name translation: Input name mapped to more than one output name.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NAME_ERROR_NOT_UNIQUE: <c>HRESULT_FROM_WIN32(ERROR_DS_NAME_ERROR_NOT_UNIQUE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NAME_ERROR_NOT_UNIQUE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NAME_ERROR_NO_MAPPING">
            <summary>
             Name translation: Input name found, but not the associated output format.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NAME_ERROR_NO_MAPPING: <c>HRESULT_FROM_WIN32(ERROR_DS_NAME_ERROR_NO_MAPPING)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NAME_ERROR_NO_MAPPING"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NAME_ERROR_DOMAIN_ONLY">
            <summary>
             Name translation: Unable to resolve completely, only the domain was found.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NAME_ERROR_DOMAIN_ONLY: <c>HRESULT_FROM_WIN32(ERROR_DS_NAME_ERROR_DOMAIN_ONLY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NAME_ERROR_DOMAIN_ONLY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING">
            <summary>
             Name translation: Unable to perform purely syntactical mapping at the client without going out to the wire.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING: <c>HRESULT_FROM_WIN32(ERROR_DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CONSTRUCTED_ATT_MOD">
            <summary>
             Modification of a constructed attribute is not allowed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CONSTRUCTED_ATT_MOD: <c>HRESULT_FROM_WIN32(ERROR_DS_CONSTRUCTED_ATT_MOD)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CONSTRUCTED_ATT_MOD"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_WRONG_OM_OBJ_CLASS">
            <summary>
             The OM-Object-Class specified is incorrect for an attribute with the specified syntax.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_WRONG_OM_OBJ_CLASS: <c>HRESULT_FROM_WIN32(ERROR_DS_WRONG_OM_OBJ_CLASS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_WRONG_OM_OBJ_CLASS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DRA_REPL_PENDING">
            <summary>
             The replication request has been posted; waiting for reply.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DRA_REPL_PENDING: <c>HRESULT_FROM_WIN32(ERROR_DS_DRA_REPL_PENDING)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_REPL_PENDING"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DS_REQUIRED">
            <summary>
             The requested operation requires a directory service, and none was available.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DS_REQUIRED: <c>HRESULT_FROM_WIN32(ERROR_DS_DS_REQUIRED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DS_REQUIRED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_INVALID_LDAP_DISPLAY_NAME">
            <summary>
             The LDAP display name of the class or attribute contains non-ASCII characters.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_INVALID_LDAP_DISPLAY_NAME: <c>HRESULT_FROM_WIN32(ERROR_DS_INVALID_LDAP_DISPLAY_NAME)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_INVALID_LDAP_DISPLAY_NAME"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NON_BASE_SEARCH">
            <summary>
             The requested search operation is only supported for base searches.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NON_BASE_SEARCH: <c>HRESULT_FROM_WIN32(ERROR_DS_NON_BASE_SEARCH)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NON_BASE_SEARCH"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CANT_RETRIEVE_ATTS">
            <summary>
             The search failed to retrieve attributes from the database.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CANT_RETRIEVE_ATTS: <c>HRESULT_FROM_WIN32(ERROR_DS_CANT_RETRIEVE_ATTS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_RETRIEVE_ATTS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_BACKLINK_WITHOUT_LINK">
            <summary>
             The schema update operation tried to add a backward link attribute that has no corresponding forward link.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_BACKLINK_WITHOUT_LINK: <c>HRESULT_FROM_WIN32(ERROR_DS_BACKLINK_WITHOUT_LINK)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_BACKLINK_WITHOUT_LINK"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_EPOCH_MISMATCH">
            <summary>
             Source and destination of a cross-domain move do not agree on the object's epoch number.  Either source or destination does not have the latest version of the object.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_EPOCH_MISMATCH: <c>HRESULT_FROM_WIN32(ERROR_DS_EPOCH_MISMATCH)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_EPOCH_MISMATCH"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_SRC_NAME_MISMATCH">
            <summary>
             Source and destination of a cross-domain move do not agree on the object's current name.  Either source or destination does not have the latest version of the object.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_SRC_NAME_MISMATCH: <c>HRESULT_FROM_WIN32(ERROR_DS_SRC_NAME_MISMATCH)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SRC_NAME_MISMATCH"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_SRC_AND_DST_NC_IDENTICAL">
            <summary>
             Source and destination for the cross-domain move operation are identical.  Caller should use local move operation instead of cross-domain move operation.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_SRC_AND_DST_NC_IDENTICAL: <c>HRESULT_FROM_WIN32(ERROR_DS_SRC_AND_DST_NC_IDENTICAL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SRC_AND_DST_NC_IDENTICAL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DST_NC_MISMATCH">
            <summary>
             Source and destination for a cross-domain move are not in agreement on the naming contexts in the forest.  Either source or destination does not have the latest version of the Partitions container.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DST_NC_MISMATCH: <c>HRESULT_FROM_WIN32(ERROR_DS_DST_NC_MISMATCH)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DST_NC_MISMATCH"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NOT_AUTHORITIVE_FOR_DST_NC">
            <summary>
             Destination of a cross-domain move is not authoritative for the destination naming context.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NOT_AUTHORITIVE_FOR_DST_NC: <c>HRESULT_FROM_WIN32(ERROR_DS_NOT_AUTHORITIVE_FOR_DST_NC)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NOT_AUTHORITIVE_FOR_DST_NC"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_SRC_GUID_MISMATCH">
            <summary>
             Source and destination of a cross-domain move do not agree on the identity of the source object.  Either source or destination does not have the latest version of the source object.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_SRC_GUID_MISMATCH: <c>HRESULT_FROM_WIN32(ERROR_DS_SRC_GUID_MISMATCH)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SRC_GUID_MISMATCH"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CANT_MOVE_DELETED_OBJECT">
            <summary>
             Object being moved across-domains is already known to be deleted by the destination server.  The source server does not have the latest version of the source object.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CANT_MOVE_DELETED_OBJECT: <c>HRESULT_FROM_WIN32(ERROR_DS_CANT_MOVE_DELETED_OBJECT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_MOVE_DELETED_OBJECT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_PDC_OPERATION_IN_PROGRESS">
            <summary>
             Another operation which requires exclusive access to the PDC FSMO is already in progress.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_PDC_OPERATION_IN_PROGRESS: <c>HRESULT_FROM_WIN32(ERROR_DS_PDC_OPERATION_IN_PROGRESS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_PDC_OPERATION_IN_PROGRESS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CROSS_DOMAIN_CLEANUP_REQD">
            <summary>
             A cross-domain move operation failed such that two versions of the moved object exist - one each in the source and destination domains.  The destination object needs to be removed to restore the system to a consistent state.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CROSS_DOMAIN_CLEANUP_REQD: <c>HRESULT_FROM_WIN32(ERROR_DS_CROSS_DOMAIN_CLEANUP_REQD)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CROSS_DOMAIN_CLEANUP_REQD"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_ILLEGAL_XDOM_MOVE_OPERATION">
            <summary>
             This object may not be moved across domain boundaries either because cross-domain moves for this class are disallowed, or the object has some special characteristics, e.g.: trust account or restricted RID, which prevent its move.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_ILLEGAL_XDOM_MOVE_OPERATION: <c>HRESULT_FROM_WIN32(ERROR_DS_ILLEGAL_XDOM_MOVE_OPERATION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_ILLEGAL_XDOM_MOVE_OPERATION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CANT_WITH_ACCT_GROUP_MEMBERSHPS">
            <summary>
             Can't move objects with memberships across domain boundaries as once moved, this would violate the membership conditions of the account group.  Remove the object from any account group memberships and retry.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CANT_WITH_ACCT_GROUP_MEMBERSHPS: <c>HRESULT_FROM_WIN32(ERROR_DS_CANT_WITH_ACCT_GROUP_MEMBERSHPS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_WITH_ACCT_GROUP_MEMBERSHPS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NC_MUST_HAVE_NC_PARENT">
            <summary>
             A naming context head must be the immediate child of another naming context head, not of an interior node.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NC_MUST_HAVE_NC_PARENT: <c>HRESULT_FROM_WIN32(ERROR_DS_NC_MUST_HAVE_NC_PARENT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NC_MUST_HAVE_NC_PARENT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE">
            <summary>
             The directory cannot validate the proposed naming context name because it does not hold a replica of the naming context above the proposed naming context.  Please ensure that the domain naming master role is held by a server that is configured as a global catalog server, and that the server is up to date with its replication partners. (Applies only to Windows 2000 Domain Naming masters)
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE: <c>HRESULT_FROM_WIN32(ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DST_DOMAIN_NOT_NATIVE">
            <summary>
             Destination domain must be in native mode.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DST_DOMAIN_NOT_NATIVE: <c>HRESULT_FROM_WIN32(ERROR_DS_DST_DOMAIN_NOT_NATIVE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DST_DOMAIN_NOT_NATIVE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_MISSING_INFRASTRUCTURE_CONTAINER">
            <summary>
             The operation cannot be performed because the server does not have an infrastructure container in the domain of interest.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_MISSING_INFRASTRUCTURE_CONTAINER: <c>HRESULT_FROM_WIN32(ERROR_DS_MISSING_INFRASTRUCTURE_CONTAINER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_MISSING_INFRASTRUCTURE_CONTAINER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CANT_MOVE_ACCOUNT_GROUP">
            <summary>
             Cross-domain move of non-empty account groups is not allowed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CANT_MOVE_ACCOUNT_GROUP: <c>HRESULT_FROM_WIN32(ERROR_DS_CANT_MOVE_ACCOUNT_GROUP)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_MOVE_ACCOUNT_GROUP"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CANT_MOVE_RESOURCE_GROUP">
            <summary>
             Cross-domain move of non-empty resource groups is not allowed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CANT_MOVE_RESOURCE_GROUP: <c>HRESULT_FROM_WIN32(ERROR_DS_CANT_MOVE_RESOURCE_GROUP)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_MOVE_RESOURCE_GROUP"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_INVALID_SEARCH_FLAG">
            <summary>
             The search flags for the attribute are invalid. The ANR bit is valid only on attributes of Unicode or Teletex strings.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_INVALID_SEARCH_FLAG: <c>HRESULT_FROM_WIN32(ERROR_DS_INVALID_SEARCH_FLAG)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_INVALID_SEARCH_FLAG"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NO_TREE_DELETE_ABOVE_NC">
            <summary>
             Tree deletions starting at an object which has an NC head as a descendant are not allowed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NO_TREE_DELETE_ABOVE_NC: <c>HRESULT_FROM_WIN32(ERROR_DS_NO_TREE_DELETE_ABOVE_NC)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NO_TREE_DELETE_ABOVE_NC"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_COULDNT_LOCK_TREE_FOR_DELETE">
            <summary>
             The directory service failed to lock a tree in preparation for a tree deletion because the tree was in use.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_COULDNT_LOCK_TREE_FOR_DELETE: <c>HRESULT_FROM_WIN32(ERROR_DS_COULDNT_LOCK_TREE_FOR_DELETE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_COULDNT_LOCK_TREE_FOR_DELETE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_COULDNT_IDENTIFY_OBJECTS_FOR_TREE_DELETE">
            <summary>
             The directory service failed to identify the list of objects to delete while attempting a tree deletion.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_COULDNT_IDENTIFY_OBJECTS_FOR_TREE_DELETE: <c>HRESULT_FROM_WIN32(ERROR_DS_COULDNT_IDENTIFY_OBJECTS_FOR_TREE_DELETE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_COULDNT_IDENTIFY_OBJECTS_FOR_TREE_DELETE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_SAM_INIT_FAILURE">
            <summary>
             Security Accounts Manager initialization failed because of the following error: %1.
             Error Status: 0x%2. Click OK to shut down the system and reboot into Directory Services Restore Mode. Check the event log for detailed information.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_SAM_INIT_FAILURE: <c>HRESULT_FROM_WIN32(ERROR_DS_SAM_INIT_FAILURE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SAM_INIT_FAILURE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_SENSITIVE_GROUP_VIOLATION">
            <summary>
             Only an administrator can modify the membership list of an administrative group.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_SENSITIVE_GROUP_VIOLATION: <c>HRESULT_FROM_WIN32(ERROR_DS_SENSITIVE_GROUP_VIOLATION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SENSITIVE_GROUP_VIOLATION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CANT_MOD_PRIMARYGROUPID">
            <summary>
             Cannot change the primary group ID of a domain controller account.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CANT_MOD_PRIMARYGROUPID: <c>HRESULT_FROM_WIN32(ERROR_DS_CANT_MOD_PRIMARYGROUPID)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_MOD_PRIMARYGROUPID"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_ILLEGAL_BASE_SCHEMA_MOD">
            <summary>
             An attempt is made to modify the base schema.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_ILLEGAL_BASE_SCHEMA_MOD: <c>HRESULT_FROM_WIN32(ERROR_DS_ILLEGAL_BASE_SCHEMA_MOD)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_ILLEGAL_BASE_SCHEMA_MOD"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NONSAFE_SCHEMA_CHANGE">
            <summary>
             Adding a new mandatory attribute to an existing class, deleting a mandatory attribute from an existing class, or adding an optional attribute to the special class Top that is not a backlink attribute (directly or through inheritance, for example, by adding or deleting an auxiliary class) is not allowed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NONSAFE_SCHEMA_CHANGE: <c>HRESULT_FROM_WIN32(ERROR_DS_NONSAFE_SCHEMA_CHANGE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NONSAFE_SCHEMA_CHANGE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_SCHEMA_UPDATE_DISALLOWED">
            <summary>
             Schema update is not allowed on this DC because the DC is not the schema FSMO Role Owner.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_SCHEMA_UPDATE_DISALLOWED: <c>HRESULT_FROM_WIN32(ERROR_DS_SCHEMA_UPDATE_DISALLOWED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SCHEMA_UPDATE_DISALLOWED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CANT_CREATE_UNDER_SCHEMA">
            <summary>
             An object of this class cannot be created under the schema container. You can only create attribute-schema and class-schema objects under the schema container.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CANT_CREATE_UNDER_SCHEMA: <c>HRESULT_FROM_WIN32(ERROR_DS_CANT_CREATE_UNDER_SCHEMA)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_CREATE_UNDER_SCHEMA"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_INSTALL_NO_SRC_SCH_VERSION">
            <summary>
             The replica/child install failed to get the objectVersion attribute on the schema container on the source DC. Either the attribute is missing on the schema container or the credentials supplied do not have permission to read it.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_INSTALL_NO_SRC_SCH_VERSION: <c>HRESULT_FROM_WIN32(ERROR_DS_INSTALL_NO_SRC_SCH_VERSION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_INSTALL_NO_SRC_SCH_VERSION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_INSTALL_NO_SCH_VERSION_IN_INIFILE">
            <summary>
             The replica/child install failed to read the objectVersion attribute in the SCHEMA section of the file schema.ini in the system32 directory.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_INSTALL_NO_SCH_VERSION_IN_INIFILE: <c>HRESULT_FROM_WIN32(ERROR_DS_INSTALL_NO_SCH_VERSION_IN_INIFILE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_INSTALL_NO_SCH_VERSION_IN_INIFILE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_INVALID_GROUP_TYPE">
            <summary>
             The specified group type is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_INVALID_GROUP_TYPE: <c>HRESULT_FROM_WIN32(ERROR_DS_INVALID_GROUP_TYPE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_INVALID_GROUP_TYPE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN">
            <summary>
             You cannot nest global groups in a mixed domain if the group is security-enabled.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN: <c>HRESULT_FROM_WIN32(ERROR_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN">
            <summary>
             You cannot nest local groups in a mixed domain if the group is security-enabled.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN: <c>HRESULT_FROM_WIN32(ERROR_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER">
            <summary>
             A global group cannot have a local group as a member.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER: <c>HRESULT_FROM_WIN32(ERROR_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER">
            <summary>
             A global group cannot have a universal group as a member.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER: <c>HRESULT_FROM_WIN32(ERROR_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER">
            <summary>
             A universal group cannot have a local group as a member.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER: <c>HRESULT_FROM_WIN32(ERROR_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER">
            <summary>
             A global group cannot have a cross-domain member.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER: <c>HRESULT_FROM_WIN32(ERROR_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER">
            <summary>
             A local group cannot have another cross domain local group as a member.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER: <c>HRESULT_FROM_WIN32(ERROR_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_HAVE_PRIMARY_MEMBERS">
            <summary>
             A group with primary members cannot change to a security-disabled group.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_HAVE_PRIMARY_MEMBERS: <c>HRESULT_FROM_WIN32(ERROR_DS_HAVE_PRIMARY_MEMBERS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_HAVE_PRIMARY_MEMBERS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_STRING_SD_CONVERSION_FAILED">
            <summary>
             The schema cache load failed to convert the string default SD on a class-schema object.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_STRING_SD_CONVERSION_FAILED: <c>HRESULT_FROM_WIN32(ERROR_DS_STRING_SD_CONVERSION_FAILED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_STRING_SD_CONVERSION_FAILED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NAMING_MASTER_GC">
            <summary>
             Only DSAs configured to be Global Catalog servers should be allowed to hold the Domain Naming Master FSMO role. (Applies only to Windows 2000 servers)
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NAMING_MASTER_GC: <c>HRESULT_FROM_WIN32(ERROR_DS_NAMING_MASTER_GC)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NAMING_MASTER_GC"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DNS_LOOKUP_FAILURE">
            <summary>
             The DSA operation is unable to proceed because of a DNS lookup failure.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DNS_LOOKUP_FAILURE: <c>HRESULT_FROM_WIN32(ERROR_DS_DNS_LOOKUP_FAILURE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DNS_LOOKUP_FAILURE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_COULDNT_UPDATE_SPNS">
            <summary>
             While processing a change to the DNS Host Name for an object, the Service Principal Name values could not be kept in sync.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_COULDNT_UPDATE_SPNS: <c>HRESULT_FROM_WIN32(ERROR_DS_COULDNT_UPDATE_SPNS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_COULDNT_UPDATE_SPNS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CANT_RETRIEVE_SD">
            <summary>
             The Security Descriptor attribute could not be read.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CANT_RETRIEVE_SD: <c>HRESULT_FROM_WIN32(ERROR_DS_CANT_RETRIEVE_SD)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_RETRIEVE_SD"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_KEY_NOT_UNIQUE">
            <summary>
             The object requested was not found, but an object with that key was found.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_KEY_NOT_UNIQUE: <c>HRESULT_FROM_WIN32(ERROR_DS_KEY_NOT_UNIQUE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_KEY_NOT_UNIQUE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_WRONG_LINKED_ATT_SYNTAX">
            <summary>
             The syntax of the linked attribute being added is incorrect. Forward links can only have syntax 2.5.5.1, 2.5.5.7, and 2.5.5.14, and backlinks can only have syntax 2.5.5.1
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_WRONG_LINKED_ATT_SYNTAX: <c>HRESULT_FROM_WIN32(ERROR_DS_WRONG_LINKED_ATT_SYNTAX)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_WRONG_LINKED_ATT_SYNTAX"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_SAM_NEED_BOOTKEY_PASSWORD">
            <summary>
             Security Account Manager needs to get the boot password.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_SAM_NEED_BOOTKEY_PASSWORD: <c>HRESULT_FROM_WIN32(ERROR_DS_SAM_NEED_BOOTKEY_PASSWORD)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SAM_NEED_BOOTKEY_PASSWORD"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_SAM_NEED_BOOTKEY_FLOPPY">
            <summary>
             Security Account Manager needs to get the boot key from floppy disk.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_SAM_NEED_BOOTKEY_FLOPPY: <c>HRESULT_FROM_WIN32(ERROR_DS_SAM_NEED_BOOTKEY_FLOPPY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SAM_NEED_BOOTKEY_FLOPPY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CANT_START">
            <summary>
             Directory Service cannot start.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CANT_START: <c>HRESULT_FROM_WIN32(ERROR_DS_CANT_START)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_START"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_INIT_FAILURE">
            <summary>
             Directory Services could not start.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_INIT_FAILURE: <c>HRESULT_FROM_WIN32(ERROR_DS_INIT_FAILURE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_INIT_FAILURE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NO_PKT_PRIVACY_ON_CONNECTION">
            <summary>
             The connection between client and server requires packet privacy or better.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NO_PKT_PRIVACY_ON_CONNECTION: <c>HRESULT_FROM_WIN32(ERROR_DS_NO_PKT_PRIVACY_ON_CONNECTION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NO_PKT_PRIVACY_ON_CONNECTION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_SOURCE_DOMAIN_IN_FOREST">
            <summary>
             The source domain may not be in the same forest as destination.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_SOURCE_DOMAIN_IN_FOREST: <c>HRESULT_FROM_WIN32(ERROR_DS_SOURCE_DOMAIN_IN_FOREST)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SOURCE_DOMAIN_IN_FOREST"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DESTINATION_DOMAIN_NOT_IN_FOREST">
            <summary>
             The destination domain must be in the forest.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DESTINATION_DOMAIN_NOT_IN_FOREST: <c>HRESULT_FROM_WIN32(ERROR_DS_DESTINATION_DOMAIN_NOT_IN_FOREST)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DESTINATION_DOMAIN_NOT_IN_FOREST"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DESTINATION_AUDITING_NOT_ENABLED">
            <summary>
             The operation requires that destination domain auditing be enabled.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DESTINATION_AUDITING_NOT_ENABLED: <c>HRESULT_FROM_WIN32(ERROR_DS_DESTINATION_AUDITING_NOT_ENABLED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DESTINATION_AUDITING_NOT_ENABLED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CANT_FIND_DC_FOR_SRC_DOMAIN">
            <summary>
             The operation couldn't locate a DC for the source domain.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CANT_FIND_DC_FOR_SRC_DOMAIN: <c>HRESULT_FROM_WIN32(ERROR_DS_CANT_FIND_DC_FOR_SRC_DOMAIN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_FIND_DC_FOR_SRC_DOMAIN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_SRC_OBJ_NOT_GROUP_OR_USER">
            <summary>
             The source object must be a group or user.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_SRC_OBJ_NOT_GROUP_OR_USER: <c>HRESULT_FROM_WIN32(ERROR_DS_SRC_OBJ_NOT_GROUP_OR_USER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SRC_OBJ_NOT_GROUP_OR_USER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_SRC_SID_EXISTS_IN_FOREST">
            <summary>
             The source object's SID already exists in destination forest.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_SRC_SID_EXISTS_IN_FOREST: <c>HRESULT_FROM_WIN32(ERROR_DS_SRC_SID_EXISTS_IN_FOREST)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SRC_SID_EXISTS_IN_FOREST"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_SRC_AND_DST_OBJECT_CLASS_MISMATCH">
            <summary>
             The source and destination object must be of the same type.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_SRC_AND_DST_OBJECT_CLASS_MISMATCH: <c>HRESULT_FROM_WIN32(ERROR_DS_SRC_AND_DST_OBJECT_CLASS_MISMATCH)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SRC_AND_DST_OBJECT_CLASS_MISMATCH"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SAM_INIT_FAILURE">
            <summary>
             Security Accounts Manager initialization failed because of the following error: %1.
             Error Status: 0x%2. Click OK to shut down the system and reboot into Safe Mode. Check the event log for detailed information.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SAM_INIT_FAILURE: <c>HRESULT_FROM_WIN32(ERROR_SAM_INIT_FAILURE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SAM_INIT_FAILURE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DRA_SCHEMA_INFO_SHIP">
            <summary>
             Schema information could not be included in the replication request.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DRA_SCHEMA_INFO_SHIP: <c>HRESULT_FROM_WIN32(ERROR_DS_DRA_SCHEMA_INFO_SHIP)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_SCHEMA_INFO_SHIP"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DRA_SCHEMA_CONFLICT">
            <summary>
             The replication operation could not be completed due to a schema incompatibility.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DRA_SCHEMA_CONFLICT: <c>HRESULT_FROM_WIN32(ERROR_DS_DRA_SCHEMA_CONFLICT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_SCHEMA_CONFLICT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DRA_EARLIER_SCHEMA_CONFLICT">
            <summary>
             The replication operation could not be completed due to a previous schema incompatibility.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DRA_EARLIER_SCHEMA_CONFLICT: <c>HRESULT_FROM_WIN32(ERROR_DS_DRA_EARLIER_SCHEMA_CONFLICT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_EARLIER_SCHEMA_CONFLICT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DRA_OBJ_NC_MISMATCH">
            <summary>
             The replication update could not be applied because either the source or the destination has not yet received information regarding a recent cross-domain move operation.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DRA_OBJ_NC_MISMATCH: <c>HRESULT_FROM_WIN32(ERROR_DS_DRA_OBJ_NC_MISMATCH)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_OBJ_NC_MISMATCH"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NC_STILL_HAS_DSAS">
            <summary>
             The requested domain could not be deleted because there exist domain controllers that still host this domain.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NC_STILL_HAS_DSAS: <c>HRESULT_FROM_WIN32(ERROR_DS_NC_STILL_HAS_DSAS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NC_STILL_HAS_DSAS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_GC_REQUIRED">
            <summary>
             The requested operation can be performed only on a global catalog server.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_GC_REQUIRED: <c>HRESULT_FROM_WIN32(ERROR_DS_GC_REQUIRED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_GC_REQUIRED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_LOCAL_MEMBER_OF_LOCAL_ONLY">
            <summary>
             A local group can only be a member of other local groups in the same domain.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_LOCAL_MEMBER_OF_LOCAL_ONLY: <c>HRESULT_FROM_WIN32(ERROR_DS_LOCAL_MEMBER_OF_LOCAL_ONLY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_LOCAL_MEMBER_OF_LOCAL_ONLY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NO_FPO_IN_UNIVERSAL_GROUPS">
            <summary>
             Foreign security principals cannot be members of universal groups.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NO_FPO_IN_UNIVERSAL_GROUPS: <c>HRESULT_FROM_WIN32(ERROR_DS_NO_FPO_IN_UNIVERSAL_GROUPS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NO_FPO_IN_UNIVERSAL_GROUPS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CANT_ADD_TO_GC">
            <summary>
             The attribute is not allowed to be replicated to the GC because of security reasons.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CANT_ADD_TO_GC: <c>HRESULT_FROM_WIN32(ERROR_DS_CANT_ADD_TO_GC)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_ADD_TO_GC"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NO_CHECKPOINT_WITH_PDC">
            <summary>
             The checkpoint with the PDC could not be taken because there too many modifications being processed currently.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NO_CHECKPOINT_WITH_PDC: <c>HRESULT_FROM_WIN32(ERROR_DS_NO_CHECKPOINT_WITH_PDC)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NO_CHECKPOINT_WITH_PDC"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_SOURCE_AUDITING_NOT_ENABLED">
            <summary>
             The operation requires that source domain auditing be enabled.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_SOURCE_AUDITING_NOT_ENABLED: <c>HRESULT_FROM_WIN32(ERROR_DS_SOURCE_AUDITING_NOT_ENABLED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SOURCE_AUDITING_NOT_ENABLED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CANT_CREATE_IN_NONDOMAIN_NC">
            <summary>
             Security principal objects can only be created inside domain naming contexts.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CANT_CREATE_IN_NONDOMAIN_NC: <c>HRESULT_FROM_WIN32(ERROR_DS_CANT_CREATE_IN_NONDOMAIN_NC)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_CREATE_IN_NONDOMAIN_NC"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_INVALID_NAME_FOR_SPN">
            <summary>
             A Service Principal Name (SPN) could not be constructed because the provided hostname is not in the necessary format.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_INVALID_NAME_FOR_SPN: <c>HRESULT_FROM_WIN32(ERROR_DS_INVALID_NAME_FOR_SPN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_INVALID_NAME_FOR_SPN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_FILTER_USES_CONTRUCTED_ATTRS">
            <summary>
             A Filter was passed that uses constructed attributes.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_FILTER_USES_CONTRUCTED_ATTRS: <c>HRESULT_FROM_WIN32(ERROR_DS_FILTER_USES_CONTRUCTED_ATTRS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_FILTER_USES_CONTRUCTED_ATTRS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_UNICODEPWD_NOT_IN_QUOTES">
            <summary>
             The unicodePwd attribute value must be enclosed in double quotes.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_UNICODEPWD_NOT_IN_QUOTES: <c>HRESULT_FROM_WIN32(ERROR_DS_UNICODEPWD_NOT_IN_QUOTES)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_UNICODEPWD_NOT_IN_QUOTES"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED">
            <summary>
             Your computer could not be joined to the domain. You have exceeded the maximum number of computer accounts you are allowed to create in this domain. Contact your system administrator to have this limit reset or increased.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED: <c>HRESULT_FROM_WIN32(ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_MUST_BE_RUN_ON_DST_DC">
            <summary>
             For security reasons, the operation must be run on the destination DC.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_MUST_BE_RUN_ON_DST_DC: <c>HRESULT_FROM_WIN32(ERROR_DS_MUST_BE_RUN_ON_DST_DC)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_MUST_BE_RUN_ON_DST_DC"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_SRC_DC_MUST_BE_SP4_OR_GREATER">
            <summary>
             For security reasons, the source DC must be NT4SP4 or greater.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_SRC_DC_MUST_BE_SP4_OR_GREATER: <c>HRESULT_FROM_WIN32(ERROR_DS_SRC_DC_MUST_BE_SP4_OR_GREATER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SRC_DC_MUST_BE_SP4_OR_GREATER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CANT_TREE_DELETE_CRITICAL_OBJ">
            <summary>
             Critical Directory Service System objects cannot be deleted during tree delete operations.  The tree delete may have been partially performed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CANT_TREE_DELETE_CRITICAL_OBJ: <c>HRESULT_FROM_WIN32(ERROR_DS_CANT_TREE_DELETE_CRITICAL_OBJ)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_TREE_DELETE_CRITICAL_OBJ"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_INIT_FAILURE_CONSOLE">
            <summary>
             Directory Services could not start because of the following error: %1.
             Error Status: 0x%2. Please click OK to shutdown the system. You can use the recovery console to diagnose the system further.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_INIT_FAILURE_CONSOLE: <c>HRESULT_FROM_WIN32(ERROR_DS_INIT_FAILURE_CONSOLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_INIT_FAILURE_CONSOLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_SAM_INIT_FAILURE_CONSOLE">
            <summary>
             Security Accounts Manager initialization failed because of the following error: %1.
             Error Status: 0x%2. Please click OK to shutdown the system. You can use the recovery console to diagnose the system further.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_SAM_INIT_FAILURE_CONSOLE: <c>HRESULT_FROM_WIN32(ERROR_DS_SAM_INIT_FAILURE_CONSOLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SAM_INIT_FAILURE_CONSOLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_FOREST_VERSION_TOO_HIGH">
            <summary>
             The version of the operating system installed is incompatible with the current forest functional level. You must upgrade to a new version of the operating system before this server can become a domain controller in this forest.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_FOREST_VERSION_TOO_HIGH: <c>HRESULT_FROM_WIN32(ERROR_DS_FOREST_VERSION_TOO_HIGH)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_FOREST_VERSION_TOO_HIGH"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DOMAIN_VERSION_TOO_HIGH">
            <summary>
             The version of the operating system installed is incompatible with the current domain functional level. You must upgrade to a new version of the operating system before this server can become a domain controller in this domain.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DOMAIN_VERSION_TOO_HIGH: <c>HRESULT_FROM_WIN32(ERROR_DS_DOMAIN_VERSION_TOO_HIGH)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DOMAIN_VERSION_TOO_HIGH"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_FOREST_VERSION_TOO_LOW">
            <summary>
             The version of the operating system installed on this server no longer supports the current forest functional level. You must raise the forest functional level before this server can become a domain controller in this forest.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_FOREST_VERSION_TOO_LOW: <c>HRESULT_FROM_WIN32(ERROR_DS_FOREST_VERSION_TOO_LOW)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_FOREST_VERSION_TOO_LOW"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DOMAIN_VERSION_TOO_LOW">
            <summary>
             The version of the operating system installed on this server no longer supports the current domain functional level. You must raise the domain functional level before this server can become a domain controller in this domain.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DOMAIN_VERSION_TOO_LOW: <c>HRESULT_FROM_WIN32(ERROR_DS_DOMAIN_VERSION_TOO_LOW)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DOMAIN_VERSION_TOO_LOW"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_INCOMPATIBLE_VERSION">
            <summary>
             The version of the operating system installed on this server is incompatible with the functional level of the domain or forest.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_INCOMPATIBLE_VERSION: <c>HRESULT_FROM_WIN32(ERROR_DS_INCOMPATIBLE_VERSION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_INCOMPATIBLE_VERSION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_LOW_DSA_VERSION">
            <summary>
             The functional level of the domain (or forest) cannot be raised to the requested value, because there exist one or more domain controllers in the domain (or forest) that are at a lower incompatible functional level.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_LOW_DSA_VERSION: <c>HRESULT_FROM_WIN32(ERROR_DS_LOW_DSA_VERSION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_LOW_DSA_VERSION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NO_BEHAVIOR_VERSION_IN_MIXEDDOMAIN">
            <summary>
             The forest functional level cannot be raised to the requested value since one or more domains are still in mixed domain mode. All domains in the forest must be in native mode, for you to raise the forest functional level.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NO_BEHAVIOR_VERSION_IN_MIXEDDOMAIN: <c>HRESULT_FROM_WIN32(ERROR_DS_NO_BEHAVIOR_VERSION_IN_MIXEDDOMAIN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NO_BEHAVIOR_VERSION_IN_MIXEDDOMAIN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NOT_SUPPORTED_SORT_ORDER">
            <summary>
             The sort order requested is not supported.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NOT_SUPPORTED_SORT_ORDER: <c>HRESULT_FROM_WIN32(ERROR_DS_NOT_SUPPORTED_SORT_ORDER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NOT_SUPPORTED_SORT_ORDER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NAME_NOT_UNIQUE">
            <summary>
             The requested name already exists as a unique identifier.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NAME_NOT_UNIQUE: <c>HRESULT_FROM_WIN32(ERROR_DS_NAME_NOT_UNIQUE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NAME_NOT_UNIQUE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_MACHINE_ACCOUNT_CREATED_PRENT4">
            <summary>
             The machine account was created pre-NT4.  The account needs to be recreated.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_MACHINE_ACCOUNT_CREATED_PRENT4: <c>HRESULT_FROM_WIN32(ERROR_DS_MACHINE_ACCOUNT_CREATED_PRENT4)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_MACHINE_ACCOUNT_CREATED_PRENT4"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_OUT_OF_VERSION_STORE">
            <summary>
             The database is out of version store.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_OUT_OF_VERSION_STORE: <c>HRESULT_FROM_WIN32(ERROR_DS_OUT_OF_VERSION_STORE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_OUT_OF_VERSION_STORE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_INCOMPATIBLE_CONTROLS_USED">
            <summary>
             Unable to continue operation because multiple conflicting controls were used.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_INCOMPATIBLE_CONTROLS_USED: <c>HRESULT_FROM_WIN32(ERROR_DS_INCOMPATIBLE_CONTROLS_USED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_INCOMPATIBLE_CONTROLS_USED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NO_REF_DOMAIN">
            <summary>
             Unable to find a valid security descriptor reference domain for this partition.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NO_REF_DOMAIN: <c>HRESULT_FROM_WIN32(ERROR_DS_NO_REF_DOMAIN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NO_REF_DOMAIN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_RESERVED_LINK_ID">
            <summary>
             Schema update failed: The link identifier is reserved.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_RESERVED_LINK_ID: <c>HRESULT_FROM_WIN32(ERROR_DS_RESERVED_LINK_ID)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_RESERVED_LINK_ID"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_LINK_ID_NOT_AVAILABLE">
            <summary>
             Schema update failed: There are no link identifiers available.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_LINK_ID_NOT_AVAILABLE: <c>HRESULT_FROM_WIN32(ERROR_DS_LINK_ID_NOT_AVAILABLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_LINK_ID_NOT_AVAILABLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER">
            <summary>
             An account group cannot have a universal group as a member.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER: <c>HRESULT_FROM_WIN32(ERROR_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_MODIFYDN_DISALLOWED_BY_INSTANCE_TYPE">
            <summary>
             Rename or move operations on naming context heads or read-only objects are not allowed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_MODIFYDN_DISALLOWED_BY_INSTANCE_TYPE: <c>HRESULT_FROM_WIN32(ERROR_DS_MODIFYDN_DISALLOWED_BY_INSTANCE_TYPE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_MODIFYDN_DISALLOWED_BY_INSTANCE_TYPE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NO_OBJECT_MOVE_IN_SCHEMA_NC">
            <summary>
             Move operations on objects in the schema naming context are not allowed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NO_OBJECT_MOVE_IN_SCHEMA_NC: <c>HRESULT_FROM_WIN32(ERROR_DS_NO_OBJECT_MOVE_IN_SCHEMA_NC)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NO_OBJECT_MOVE_IN_SCHEMA_NC"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_MODIFYDN_DISALLOWED_BY_FLAG">
            <summary>
             A system flag has been set on the object and does not allow the object to be moved or renamed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_MODIFYDN_DISALLOWED_BY_FLAG: <c>HRESULT_FROM_WIN32(ERROR_DS_MODIFYDN_DISALLOWED_BY_FLAG)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_MODIFYDN_DISALLOWED_BY_FLAG"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_MODIFYDN_WRONG_GRANDPARENT">
            <summary>
             This object is not allowed to change its grandparent container. Moves are not forbidden on this object, but are restricted to sibling containers.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_MODIFYDN_WRONG_GRANDPARENT: <c>HRESULT_FROM_WIN32(ERROR_DS_MODIFYDN_WRONG_GRANDPARENT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_MODIFYDN_WRONG_GRANDPARENT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NAME_ERROR_TRUST_REFERRAL">
            <summary>
             Unable to resolve completely, a referral to another forest is generated.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NAME_ERROR_TRUST_REFERRAL: <c>HRESULT_FROM_WIN32(ERROR_DS_NAME_ERROR_TRUST_REFERRAL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NAME_ERROR_TRUST_REFERRAL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_NOT_SUPPORTED_ON_STANDARD_SERVER">
            <summary>
             The requested action is not supported on standard server.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_NOT_SUPPORTED_ON_STANDARD_SERVER: <c>HRESULT_FROM_WIN32(ERROR_NOT_SUPPORTED_ON_STANDARD_SERVER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_SUPPORTED_ON_STANDARD_SERVER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CANT_ACCESS_REMOTE_PART_OF_AD">
            <summary>
             Could not access a partition of the Active Directory located on a remote server.  Make sure at least one server is running for the partition in question.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CANT_ACCESS_REMOTE_PART_OF_AD: <c>HRESULT_FROM_WIN32(ERROR_DS_CANT_ACCESS_REMOTE_PART_OF_AD)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_ACCESS_REMOTE_PART_OF_AD"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE_V2">
            <summary>
             The directory cannot validate the proposed naming context (or partition) name because it does not hold a replica nor can it contact a replica of the naming context above the proposed naming context.  Please ensure that the parent naming context is properly registered in DNS, and at least one replica of this naming context is reachable by the Domain Naming master.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE_V2: <c>HRESULT_FROM_WIN32(ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE_V2)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE_V2"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_THREAD_LIMIT_EXCEEDED">
            <summary>
             The thread limit for this request was exceeded.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_THREAD_LIMIT_EXCEEDED: <c>HRESULT_FROM_WIN32(ERROR_DS_THREAD_LIMIT_EXCEEDED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_THREAD_LIMIT_EXCEEDED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NOT_CLOSEST">
            <summary>
             The Global catalog server is not in the closest site.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NOT_CLOSEST: <c>HRESULT_FROM_WIN32(ERROR_DS_NOT_CLOSEST)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NOT_CLOSEST"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CANT_DERIVE_SPN_WITHOUT_SERVER_REF">
            <summary>
             The DS cannot derive a service principal name (SPN) with which to mutually authenticate the target server because the corresponding server object in the local DS database has no serverReference attribute.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CANT_DERIVE_SPN_WITHOUT_SERVER_REF: <c>HRESULT_FROM_WIN32(ERROR_DS_CANT_DERIVE_SPN_WITHOUT_SERVER_REF)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_DERIVE_SPN_WITHOUT_SERVER_REF"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_SINGLE_USER_MODE_FAILED">
            <summary>
             The Directory Service failed to enter single user mode.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_SINGLE_USER_MODE_FAILED: <c>HRESULT_FROM_WIN32(ERROR_DS_SINGLE_USER_MODE_FAILED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SINGLE_USER_MODE_FAILED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NTDSCRIPT_SYNTAX_ERROR">
            <summary>
             The Directory Service cannot parse the script because of a syntax error.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NTDSCRIPT_SYNTAX_ERROR: <c>HRESULT_FROM_WIN32(ERROR_DS_NTDSCRIPT_SYNTAX_ERROR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NTDSCRIPT_SYNTAX_ERROR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NTDSCRIPT_PROCESS_ERROR">
            <summary>
             The Directory Service cannot process the script because of an error.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NTDSCRIPT_PROCESS_ERROR: <c>HRESULT_FROM_WIN32(ERROR_DS_NTDSCRIPT_PROCESS_ERROR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NTDSCRIPT_PROCESS_ERROR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DIFFERENT_REPL_EPOCHS">
            <summary>
             The directory service cannot perform the requested operation because the servers
             involved are of different replication epochs (which is usually related to a
             domain rename that is in progress).
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DIFFERENT_REPL_EPOCHS: <c>HRESULT_FROM_WIN32(ERROR_DS_DIFFERENT_REPL_EPOCHS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DIFFERENT_REPL_EPOCHS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DRS_EXTENSIONS_CHANGED">
            <summary>
             The directory service binding must be renegotiated due to a change in the server
             extensions information.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DRS_EXTENSIONS_CHANGED: <c>HRESULT_FROM_WIN32(ERROR_DS_DRS_EXTENSIONS_CHANGED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRS_EXTENSIONS_CHANGED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_REPLICA_SET_CHANGE_NOT_ALLOWED_ON_DISABLED_CR">
            <summary>
             Operation not allowed on a disabled cross ref.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_REPLICA_SET_CHANGE_NOT_ALLOWED_ON_DISABLED_CR: <c>HRESULT_FROM_WIN32(ERROR_DS_REPLICA_SET_CHANGE_NOT_ALLOWED_ON_DISABLED_CR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_REPLICA_SET_CHANGE_NOT_ALLOWED_ON_DISABLED_CR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_NO_MSDS_INTID">
            <summary>
             Schema update failed: No values for msDS-IntId are available.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_NO_MSDS_INTID: <c>HRESULT_FROM_WIN32(ERROR_DS_NO_MSDS_INTID)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NO_MSDS_INTID"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DUP_MSDS_INTID">
            <summary>
             Schema update failed: Duplicate msDS-INtId. Retry the operation.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DUP_MSDS_INTID: <c>HRESULT_FROM_WIN32(ERROR_DS_DUP_MSDS_INTID)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DUP_MSDS_INTID"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_EXISTS_IN_RDNATTID">
            <summary>
             Schema deletion failed: attribute is used in rDNAttID.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_EXISTS_IN_RDNATTID: <c>HRESULT_FROM_WIN32(ERROR_DS_EXISTS_IN_RDNATTID)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_EXISTS_IN_RDNATTID"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_AUTHORIZATION_FAILED">
            <summary>
             The directory service failed to authorize the request.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_AUTHORIZATION_FAILED: <c>HRESULT_FROM_WIN32(ERROR_DS_AUTHORIZATION_FAILED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_AUTHORIZATION_FAILED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_INVALID_SCRIPT">
            <summary>
             The Directory Service cannot process the script because it is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_INVALID_SCRIPT: <c>HRESULT_FROM_WIN32(ERROR_DS_INVALID_SCRIPT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_INVALID_SCRIPT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_REMOTE_CROSSREF_OP_FAILED">
            <summary>
             The remote create cross reference operation failed on the Domain Naming Master FSMO.  The operation's error is in the extended data.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_REMOTE_CROSSREF_OP_FAILED: <c>HRESULT_FROM_WIN32(ERROR_DS_REMOTE_CROSSREF_OP_FAILED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_REMOTE_CROSSREF_OP_FAILED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CROSS_REF_BUSY">
            <summary>
             A cross reference is in use locally with the same name.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CROSS_REF_BUSY: <c>HRESULT_FROM_WIN32(ERROR_DS_CROSS_REF_BUSY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CROSS_REF_BUSY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CANT_DERIVE_SPN_FOR_DELETED_DOMAIN">
            <summary>
             The DS cannot derive a service principal name (SPN) with which to mutually authenticate the target server because the server's domain has been deleted from the forest.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CANT_DERIVE_SPN_FOR_DELETED_DOMAIN: <c>HRESULT_FROM_WIN32(ERROR_DS_CANT_DERIVE_SPN_FOR_DELETED_DOMAIN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_DERIVE_SPN_FOR_DELETED_DOMAIN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CANT_DEMOTE_WITH_WRITEABLE_NC">
            <summary>
             Writeable NCs prevent this DC from demoting.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CANT_DEMOTE_WITH_WRITEABLE_NC: <c>HRESULT_FROM_WIN32(ERROR_DS_CANT_DEMOTE_WITH_WRITEABLE_NC)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_DEMOTE_WITH_WRITEABLE_NC"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DUPLICATE_ID_FOUND">
            <summary>
             The requested object has a non-unique identifier and cannot be retrieved.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DUPLICATE_ID_FOUND: <c>HRESULT_FROM_WIN32(ERROR_DS_DUPLICATE_ID_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DUPLICATE_ID_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_INSUFFICIENT_ATTR_TO_CREATE_OBJECT">
            <summary>
             Insufficient attributes were given to create an object.  This object may not exist because it may have been deleted and already garbage collected.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_INSUFFICIENT_ATTR_TO_CREATE_OBJECT: <c>HRESULT_FROM_WIN32(ERROR_DS_INSUFFICIENT_ATTR_TO_CREATE_OBJECT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_INSUFFICIENT_ATTR_TO_CREATE_OBJECT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_GROUP_CONVERSION_ERROR">
            <summary>
             The group cannot be converted due to attribute restrictions on the requested group type.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_GROUP_CONVERSION_ERROR: <c>HRESULT_FROM_WIN32(ERROR_DS_GROUP_CONVERSION_ERROR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_GROUP_CONVERSION_ERROR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CANT_MOVE_APP_BASIC_GROUP">
            <summary>
             Cross-domain move of non-empty basic application groups is not allowed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CANT_MOVE_APP_BASIC_GROUP: <c>HRESULT_FROM_WIN32(ERROR_DS_CANT_MOVE_APP_BASIC_GROUP)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_MOVE_APP_BASIC_GROUP"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_CANT_MOVE_APP_QUERY_GROUP">
            <summary>
             Cross-domain move of non-empty query based application groups is not allowed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_CANT_MOVE_APP_QUERY_GROUP: <c>HRESULT_FROM_WIN32(ERROR_DS_CANT_MOVE_APP_QUERY_GROUP)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_MOVE_APP_QUERY_GROUP"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_ROLE_NOT_VERIFIED">
            <summary>
             The FSMO role ownership could not be verified because its directory partition has not replicated successfully with atleast one replication partner.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_ROLE_NOT_VERIFIED: <c>HRESULT_FROM_WIN32(ERROR_DS_ROLE_NOT_VERIFIED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_ROLE_NOT_VERIFIED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_WKO_CONTAINER_CANNOT_BE_SPECIAL">
            <summary>
             The target container for a redirection of a well known object container cannot already be a special container.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_WKO_CONTAINER_CANNOT_BE_SPECIAL: <c>HRESULT_FROM_WIN32(ERROR_DS_WKO_CONTAINER_CANNOT_BE_SPECIAL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_WKO_CONTAINER_CANNOT_BE_SPECIAL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DOMAIN_RENAME_IN_PROGRESS">
            <summary>
             The Directory Service cannot perform the requested operation because a domain rename operation is in progress.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DOMAIN_RENAME_IN_PROGRESS: <c>HRESULT_FROM_WIN32(ERROR_DS_DOMAIN_RENAME_IN_PROGRESS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DOMAIN_RENAME_IN_PROGRESS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_EXISTING_AD_CHILD_NC">
            <summary>
             The Active Directory detected an Active Directory child partition below the
             requested new partition name.  The Active Directory's partition heiarchy must
             be created in a top down method.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_EXISTING_AD_CHILD_NC: <c>HRESULT_FROM_WIN32(ERROR_DS_EXISTING_AD_CHILD_NC)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_EXISTING_AD_CHILD_NC"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_REPL_LIFETIME_EXCEEDED">
            <summary>
             The Active Directory cannot replicate with this server because the time since the last replication with this server has exceeded the tombstone lifetime.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_REPL_LIFETIME_EXCEEDED: <c>HRESULT_FROM_WIN32(ERROR_DS_REPL_LIFETIME_EXCEEDED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_REPL_LIFETIME_EXCEEDED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DISALLOWED_IN_SYSTEM_CONTAINER">
            <summary>
             The requested operation is not allowed on an object under the system container.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DISALLOWED_IN_SYSTEM_CONTAINER: <c>HRESULT_FROM_WIN32(ERROR_DS_DISALLOWED_IN_SYSTEM_CONTAINER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DISALLOWED_IN_SYSTEM_CONTAINER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_LDAP_SEND_QUEUE_FULL">
            <summary>
             The LDAP servers network send queue has filled up because the client is not
             processing the results of it's requests fast enough.  No more requests will
             be processed until the client catches up.  If the client does not catch up
             then it will be disconnected.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_LDAP_SEND_QUEUE_FULL: <c>HRESULT_FROM_WIN32(ERROR_DS_LDAP_SEND_QUEUE_FULL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_LDAP_SEND_QUEUE_FULL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_DS_DRA_OUT_SCHEDULE_WINDOW">
            <summary>
             The scheduled replication did not take place because the system was too busy to execute the request within the schedule window.  The replication queue is overloaded. Consider reducing the number of partners or decreasing the scheduled replication frequency.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_DS_DRA_OUT_SCHEDULE_WINDOW: <c>HRESULT_FROM_WIN32(ERROR_DS_DRA_OUT_SCHEDULE_WINDOW)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_OUT_SCHEDULE_WINDOW"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_RCODE_FORMAT_ERROR">
            <summary>
             DNS server unable to interpret format.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_RCODE_FORMAT_ERROR: <c>HRESULT_FROM_WIN32(DNS_ERROR_RCODE_FORMAT_ERROR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_RCODE_FORMAT_ERROR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_RCODE_SERVER_FAILURE">
            <summary>
             DNS server failure.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_RCODE_SERVER_FAILURE: <c>HRESULT_FROM_WIN32(DNS_ERROR_RCODE_SERVER_FAILURE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_RCODE_SERVER_FAILURE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_RCODE_NAME_ERROR">
            <summary>
             DNS name does not exist.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_RCODE_NAME_ERROR: <c>HRESULT_FROM_WIN32(DNS_ERROR_RCODE_NAME_ERROR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_RCODE_NAME_ERROR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_RCODE_NOT_IMPLEMENTED">
            <summary>
             DNS request not supported by name server.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_RCODE_NOT_IMPLEMENTED: <c>HRESULT_FROM_WIN32(DNS_ERROR_RCODE_NOT_IMPLEMENTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_RCODE_NOT_IMPLEMENTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_RCODE_REFUSED">
            <summary>
             DNS operation refused.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_RCODE_REFUSED: <c>HRESULT_FROM_WIN32(DNS_ERROR_RCODE_REFUSED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_RCODE_REFUSED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_RCODE_YXDOMAIN">
            <summary>
             DNS name that ought not exist, does exist.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_RCODE_YXDOMAIN: <c>HRESULT_FROM_WIN32(DNS_ERROR_RCODE_YXDOMAIN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_RCODE_YXDOMAIN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_RCODE_YXRRSET">
            <summary>
             DNS RR set that ought not exist, does exist.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_RCODE_YXRRSET: <c>HRESULT_FROM_WIN32(DNS_ERROR_RCODE_YXRRSET)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_RCODE_YXRRSET"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_RCODE_NXRRSET">
            <summary>
             DNS RR set that ought to exist, does not exist.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_RCODE_NXRRSET: <c>HRESULT_FROM_WIN32(DNS_ERROR_RCODE_NXRRSET)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_RCODE_NXRRSET"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_RCODE_NOTAUTH">
            <summary>
             DNS server not authoritative for zone.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_RCODE_NOTAUTH: <c>HRESULT_FROM_WIN32(DNS_ERROR_RCODE_NOTAUTH)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_RCODE_NOTAUTH"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_RCODE_NOTZONE">
            <summary>
             DNS name in update or prereq is not in zone.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_RCODE_NOTZONE: <c>HRESULT_FROM_WIN32(DNS_ERROR_RCODE_NOTZONE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_RCODE_NOTZONE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_RCODE_BADSIG">
            <summary>
             DNS signature failed to verify.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_RCODE_BADSIG: <c>HRESULT_FROM_WIN32(DNS_ERROR_RCODE_BADSIG)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_RCODE_BADSIG"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_RCODE_BADKEY">
            <summary>
             DNS bad key.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_RCODE_BADKEY: <c>HRESULT_FROM_WIN32(DNS_ERROR_RCODE_BADKEY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_RCODE_BADKEY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_RCODE_BADTIME">
            <summary>
             DNS signature validity expired.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_RCODE_BADTIME: <c>HRESULT_FROM_WIN32(DNS_ERROR_RCODE_BADTIME)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_RCODE_BADTIME"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_PACKET_FMT_BASE">
            <summary>
             Packet format
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_PACKET_FMT_BASE: <c>HRESULT_FROM_WIN32(DNS_ERROR_PACKET_FMT_BASE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_PACKET_FMT_BASE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_INFO_NO_RECORDS">
            <summary>
             No records found for given DNS query.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_INFO_NO_RECORDS: <c>HRESULT_FROM_WIN32(DNS_INFO_NO_RECORDS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_INFO_NO_RECORDS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_BAD_PACKET">
            <summary>
             Bad DNS packet.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_BAD_PACKET: <c>HRESULT_FROM_WIN32(DNS_ERROR_BAD_PACKET)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_BAD_PACKET"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_NO_PACKET">
            <summary>
             No DNS packet.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_NO_PACKET: <c>HRESULT_FROM_WIN32(DNS_ERROR_NO_PACKET)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_NO_PACKET"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_RCODE">
            <summary>
             DNS error, check rcode.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_RCODE: <c>HRESULT_FROM_WIN32(DNS_ERROR_RCODE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_RCODE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_UNSECURE_PACKET">
            <summary>
             Unsecured DNS packet.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_UNSECURE_PACKET: <c>HRESULT_FROM_WIN32(DNS_ERROR_UNSECURE_PACKET)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_UNSECURE_PACKET"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_INVALID_TYPE">
            <summary>
             Invalid DNS type.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_INVALID_TYPE: <c>HRESULT_FROM_WIN32(DNS_ERROR_INVALID_TYPE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_INVALID_TYPE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_INVALID_IP_ADDRESS">
            <summary>
             Invalid IP address.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_INVALID_IP_ADDRESS: <c>HRESULT_FROM_WIN32(DNS_ERROR_INVALID_IP_ADDRESS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_INVALID_IP_ADDRESS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_INVALID_PROPERTY">
            <summary>
             Invalid property.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_INVALID_PROPERTY: <c>HRESULT_FROM_WIN32(DNS_ERROR_INVALID_PROPERTY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_INVALID_PROPERTY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_TRY_AGAIN_LATER">
            <summary>
             Try DNS operation again later.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_TRY_AGAIN_LATER: <c>HRESULT_FROM_WIN32(DNS_ERROR_TRY_AGAIN_LATER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_TRY_AGAIN_LATER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_NOT_UNIQUE">
            <summary>
             Record for given name and type is not unique.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_NOT_UNIQUE: <c>HRESULT_FROM_WIN32(DNS_ERROR_NOT_UNIQUE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_NOT_UNIQUE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_NON_RFC_NAME">
            <summary>
             DNS name does not comply with RFC specifications.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_NON_RFC_NAME: <c>HRESULT_FROM_WIN32(DNS_ERROR_NON_RFC_NAME)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_NON_RFC_NAME"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_STATUS_FQDN">
            <summary>
             DNS name is a fully-qualified DNS name.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_STATUS_FQDN: <c>HRESULT_FROM_WIN32(DNS_STATUS_FQDN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_STATUS_FQDN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_STATUS_DOTTED_NAME">
            <summary>
             DNS name is dotted (multi-label).
            </summary>
            <remarks>An HRESULT from Windows error code DNS_STATUS_DOTTED_NAME: <c>HRESULT_FROM_WIN32(DNS_STATUS_DOTTED_NAME)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_STATUS_DOTTED_NAME"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_STATUS_SINGLE_PART_NAME">
            <summary>
             DNS name is a single-part name.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_STATUS_SINGLE_PART_NAME: <c>HRESULT_FROM_WIN32(DNS_STATUS_SINGLE_PART_NAME)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_STATUS_SINGLE_PART_NAME"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_INVALID_NAME_CHAR">
            <summary>
             DNS name contains an invalid character.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_INVALID_NAME_CHAR: <c>HRESULT_FROM_WIN32(DNS_ERROR_INVALID_NAME_CHAR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_INVALID_NAME_CHAR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_NUMERIC_NAME">
            <summary>
             DNS name is entirely numeric.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_NUMERIC_NAME: <c>HRESULT_FROM_WIN32(DNS_ERROR_NUMERIC_NAME)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_NUMERIC_NAME"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_NOT_ALLOWED_ON_ROOT_SERVER">
            <summary>
             The operation requested is not permitted on a DNS root server.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_NOT_ALLOWED_ON_ROOT_SERVER: <c>HRESULT_FROM_WIN32(DNS_ERROR_NOT_ALLOWED_ON_ROOT_SERVER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_NOT_ALLOWED_ON_ROOT_SERVER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_NOT_ALLOWED_UNDER_DELEGATION">
            <summary>
             The record could not be created because this part of the DNS namespace has
             been delegated to another server.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_NOT_ALLOWED_UNDER_DELEGATION: <c>HRESULT_FROM_WIN32(DNS_ERROR_NOT_ALLOWED_UNDER_DELEGATION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_NOT_ALLOWED_UNDER_DELEGATION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_CANNOT_FIND_ROOT_HINTS">
            <summary>
             The DNS server could not find a set of root hints.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_CANNOT_FIND_ROOT_HINTS: <c>HRESULT_FROM_WIN32(DNS_ERROR_CANNOT_FIND_ROOT_HINTS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_CANNOT_FIND_ROOT_HINTS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_INCONSISTENT_ROOT_HINTS">
            <summary>
             The DNS server found root hints but they were not consistent across
             all adapters.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_INCONSISTENT_ROOT_HINTS: <c>HRESULT_FROM_WIN32(DNS_ERROR_INCONSISTENT_ROOT_HINTS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_INCONSISTENT_ROOT_HINTS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_ZONE_BASE">
            <summary>
             Zone errors
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_ZONE_BASE: <c>HRESULT_FROM_WIN32(DNS_ERROR_ZONE_BASE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_ZONE_BASE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_ZONE_DOES_NOT_EXIST">
            <summary>
             DNS zone does not exist.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_ZONE_DOES_NOT_EXIST: <c>HRESULT_FROM_WIN32(DNS_ERROR_ZONE_DOES_NOT_EXIST)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_ZONE_DOES_NOT_EXIST"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_NO_ZONE_INFO">
            <summary>
             DNS zone information not available.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_NO_ZONE_INFO: <c>HRESULT_FROM_WIN32(DNS_ERROR_NO_ZONE_INFO)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_NO_ZONE_INFO"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_INVALID_ZONE_OPERATION">
            <summary>
             Invalid operation for DNS zone.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_INVALID_ZONE_OPERATION: <c>HRESULT_FROM_WIN32(DNS_ERROR_INVALID_ZONE_OPERATION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_INVALID_ZONE_OPERATION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_ZONE_CONFIGURATION_ERROR">
            <summary>
             Invalid DNS zone configuration.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_ZONE_CONFIGURATION_ERROR: <c>HRESULT_FROM_WIN32(DNS_ERROR_ZONE_CONFIGURATION_ERROR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_ZONE_CONFIGURATION_ERROR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_ZONE_HAS_NO_SOA_RECORD">
            <summary>
             DNS zone has no start of authority (SOA) record.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_ZONE_HAS_NO_SOA_RECORD: <c>HRESULT_FROM_WIN32(DNS_ERROR_ZONE_HAS_NO_SOA_RECORD)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_ZONE_HAS_NO_SOA_RECORD"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_ZONE_HAS_NO_NS_RECORDS">
            <summary>
             DNS zone has no Name Server (NS) record.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_ZONE_HAS_NO_NS_RECORDS: <c>HRESULT_FROM_WIN32(DNS_ERROR_ZONE_HAS_NO_NS_RECORDS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_ZONE_HAS_NO_NS_RECORDS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_ZONE_LOCKED">
            <summary>
             DNS zone is locked.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_ZONE_LOCKED: <c>HRESULT_FROM_WIN32(DNS_ERROR_ZONE_LOCKED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_ZONE_LOCKED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_ZONE_CREATION_FAILED">
            <summary>
             DNS zone creation failed.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_ZONE_CREATION_FAILED: <c>HRESULT_FROM_WIN32(DNS_ERROR_ZONE_CREATION_FAILED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_ZONE_CREATION_FAILED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_ZONE_ALREADY_EXISTS">
            <summary>
             DNS zone already exists.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_ZONE_ALREADY_EXISTS: <c>HRESULT_FROM_WIN32(DNS_ERROR_ZONE_ALREADY_EXISTS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_ZONE_ALREADY_EXISTS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_AUTOZONE_ALREADY_EXISTS">
            <summary>
             DNS automatic zone already exists.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_AUTOZONE_ALREADY_EXISTS: <c>HRESULT_FROM_WIN32(DNS_ERROR_AUTOZONE_ALREADY_EXISTS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_AUTOZONE_ALREADY_EXISTS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_INVALID_ZONE_TYPE">
            <summary>
             Invalid DNS zone type.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_INVALID_ZONE_TYPE: <c>HRESULT_FROM_WIN32(DNS_ERROR_INVALID_ZONE_TYPE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_INVALID_ZONE_TYPE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_SECONDARY_REQUIRES_MASTER_IP">
            <summary>
             Secondary DNS zone requires master IP address.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_SECONDARY_REQUIRES_MASTER_IP: <c>HRESULT_FROM_WIN32(DNS_ERROR_SECONDARY_REQUIRES_MASTER_IP)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_SECONDARY_REQUIRES_MASTER_IP"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_ZONE_NOT_SECONDARY">
            <summary>
             DNS zone not secondary.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_ZONE_NOT_SECONDARY: <c>HRESULT_FROM_WIN32(DNS_ERROR_ZONE_NOT_SECONDARY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_ZONE_NOT_SECONDARY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_NEED_SECONDARY_ADDRESSES">
            <summary>
             Need secondary IP address.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_NEED_SECONDARY_ADDRESSES: <c>HRESULT_FROM_WIN32(DNS_ERROR_NEED_SECONDARY_ADDRESSES)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_NEED_SECONDARY_ADDRESSES"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_WINS_INIT_FAILED">
            <summary>
             WINS initialization failed.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_WINS_INIT_FAILED: <c>HRESULT_FROM_WIN32(DNS_ERROR_WINS_INIT_FAILED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_WINS_INIT_FAILED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_NEED_WINS_SERVERS">
            <summary>
             Need WINS servers.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_NEED_WINS_SERVERS: <c>HRESULT_FROM_WIN32(DNS_ERROR_NEED_WINS_SERVERS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_NEED_WINS_SERVERS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_NBSTAT_INIT_FAILED">
            <summary>
             NBTSTAT initialization call failed.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_NBSTAT_INIT_FAILED: <c>HRESULT_FROM_WIN32(DNS_ERROR_NBSTAT_INIT_FAILED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_NBSTAT_INIT_FAILED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_SOA_DELETE_INVALID">
            <summary>
             Invalid delete of start of authority (SOA)
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_SOA_DELETE_INVALID: <c>HRESULT_FROM_WIN32(DNS_ERROR_SOA_DELETE_INVALID)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_SOA_DELETE_INVALID"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_FORWARDER_ALREADY_EXISTS">
            <summary>
             A conditional forwarding zone already exists for that name.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_FORWARDER_ALREADY_EXISTS: <c>HRESULT_FROM_WIN32(DNS_ERROR_FORWARDER_ALREADY_EXISTS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_FORWARDER_ALREADY_EXISTS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_ZONE_REQUIRES_MASTER_IP">
            <summary>
             This zone must be configured with one or more master DNS server IP addresses.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_ZONE_REQUIRES_MASTER_IP: <c>HRESULT_FROM_WIN32(DNS_ERROR_ZONE_REQUIRES_MASTER_IP)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_ZONE_REQUIRES_MASTER_IP"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_ZONE_IS_SHUTDOWN">
            <summary>
             The operation cannot be performed because this zone is shutdown.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_ZONE_IS_SHUTDOWN: <c>HRESULT_FROM_WIN32(DNS_ERROR_ZONE_IS_SHUTDOWN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_ZONE_IS_SHUTDOWN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_DATAFILE_BASE">
            <summary>
             Datafile errors
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_DATAFILE_BASE: <c>HRESULT_FROM_WIN32(DNS_ERROR_DATAFILE_BASE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_DATAFILE_BASE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_PRIMARY_REQUIRES_DATAFILE">
            <summary>
             Primary DNS zone requires datafile.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_PRIMARY_REQUIRES_DATAFILE: <c>HRESULT_FROM_WIN32(DNS_ERROR_PRIMARY_REQUIRES_DATAFILE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_PRIMARY_REQUIRES_DATAFILE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_INVALID_DATAFILE_NAME">
            <summary>
             Invalid datafile name for DNS zone.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_INVALID_DATAFILE_NAME: <c>HRESULT_FROM_WIN32(DNS_ERROR_INVALID_DATAFILE_NAME)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_INVALID_DATAFILE_NAME"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_DATAFILE_OPEN_FAILURE">
            <summary>
             Failed to open datafile for DNS zone.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_DATAFILE_OPEN_FAILURE: <c>HRESULT_FROM_WIN32(DNS_ERROR_DATAFILE_OPEN_FAILURE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_DATAFILE_OPEN_FAILURE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_FILE_WRITEBACK_FAILED">
            <summary>
             Failed to write datafile for DNS zone.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_FILE_WRITEBACK_FAILED: <c>HRESULT_FROM_WIN32(DNS_ERROR_FILE_WRITEBACK_FAILED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_FILE_WRITEBACK_FAILED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_DATAFILE_PARSING">
            <summary>
             Failure while reading datafile for DNS zone.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_DATAFILE_PARSING: <c>HRESULT_FROM_WIN32(DNS_ERROR_DATAFILE_PARSING)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_DATAFILE_PARSING"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_DATABASE_BASE">
            <summary>
             Database errors
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_DATABASE_BASE: <c>HRESULT_FROM_WIN32(DNS_ERROR_DATABASE_BASE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_DATABASE_BASE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_RECORD_DOES_NOT_EXIST">
            <summary>
             DNS record does not exist.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_RECORD_DOES_NOT_EXIST: <c>HRESULT_FROM_WIN32(DNS_ERROR_RECORD_DOES_NOT_EXIST)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_RECORD_DOES_NOT_EXIST"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_RECORD_FORMAT">
            <summary>
             DNS record format error.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_RECORD_FORMAT: <c>HRESULT_FROM_WIN32(DNS_ERROR_RECORD_FORMAT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_RECORD_FORMAT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_NODE_CREATION_FAILED">
            <summary>
             Node creation failure in DNS.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_NODE_CREATION_FAILED: <c>HRESULT_FROM_WIN32(DNS_ERROR_NODE_CREATION_FAILED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_NODE_CREATION_FAILED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_UNKNOWN_RECORD_TYPE">
            <summary>
             Unknown DNS record type.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_UNKNOWN_RECORD_TYPE: <c>HRESULT_FROM_WIN32(DNS_ERROR_UNKNOWN_RECORD_TYPE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_UNKNOWN_RECORD_TYPE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_RECORD_TIMED_OUT">
            <summary>
             DNS record timed out.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_RECORD_TIMED_OUT: <c>HRESULT_FROM_WIN32(DNS_ERROR_RECORD_TIMED_OUT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_RECORD_TIMED_OUT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_NAME_NOT_IN_ZONE">
            <summary>
             Name not in DNS zone.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_NAME_NOT_IN_ZONE: <c>HRESULT_FROM_WIN32(DNS_ERROR_NAME_NOT_IN_ZONE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_NAME_NOT_IN_ZONE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_CNAME_LOOP">
            <summary>
             CNAME loop detected.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_CNAME_LOOP: <c>HRESULT_FROM_WIN32(DNS_ERROR_CNAME_LOOP)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_CNAME_LOOP"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_NODE_IS_CNAME">
            <summary>
             Node is a CNAME DNS record.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_NODE_IS_CNAME: <c>HRESULT_FROM_WIN32(DNS_ERROR_NODE_IS_CNAME)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_NODE_IS_CNAME"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_CNAME_COLLISION">
            <summary>
             A CNAME record already exists for given name.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_CNAME_COLLISION: <c>HRESULT_FROM_WIN32(DNS_ERROR_CNAME_COLLISION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_CNAME_COLLISION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_RECORD_ONLY_AT_ZONE_ROOT">
            <summary>
             Record only at DNS zone root.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_RECORD_ONLY_AT_ZONE_ROOT: <c>HRESULT_FROM_WIN32(DNS_ERROR_RECORD_ONLY_AT_ZONE_ROOT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_RECORD_ONLY_AT_ZONE_ROOT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_RECORD_ALREADY_EXISTS">
            <summary>
             DNS record already exists.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_RECORD_ALREADY_EXISTS: <c>HRESULT_FROM_WIN32(DNS_ERROR_RECORD_ALREADY_EXISTS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_RECORD_ALREADY_EXISTS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_SECONDARY_DATA">
            <summary>
             Secondary DNS zone data error.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_SECONDARY_DATA: <c>HRESULT_FROM_WIN32(DNS_ERROR_SECONDARY_DATA)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_SECONDARY_DATA"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_NO_CREATE_CACHE_DATA">
            <summary>
             Could not create DNS cache data.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_NO_CREATE_CACHE_DATA: <c>HRESULT_FROM_WIN32(DNS_ERROR_NO_CREATE_CACHE_DATA)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_NO_CREATE_CACHE_DATA"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_NAME_DOES_NOT_EXIST">
            <summary>
             DNS name does not exist.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_NAME_DOES_NOT_EXIST: <c>HRESULT_FROM_WIN32(DNS_ERROR_NAME_DOES_NOT_EXIST)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_NAME_DOES_NOT_EXIST"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_WARNING_PTR_CREATE_FAILED">
            <summary>
             Could not create pointer (PTR) record.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_WARNING_PTR_CREATE_FAILED: <c>HRESULT_FROM_WIN32(DNS_WARNING_PTR_CREATE_FAILED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_WARNING_PTR_CREATE_FAILED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_WARNING_DOMAIN_UNDELETED">
            <summary>
             DNS domain was undeleted.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_WARNING_DOMAIN_UNDELETED: <c>HRESULT_FROM_WIN32(DNS_WARNING_DOMAIN_UNDELETED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_WARNING_DOMAIN_UNDELETED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_DS_UNAVAILABLE">
            <summary>
             The directory service is unavailable.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_DS_UNAVAILABLE: <c>HRESULT_FROM_WIN32(DNS_ERROR_DS_UNAVAILABLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_DS_UNAVAILABLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_DS_ZONE_ALREADY_EXISTS">
            <summary>
             DNS zone already exists in the directory service.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_DS_ZONE_ALREADY_EXISTS: <c>HRESULT_FROM_WIN32(DNS_ERROR_DS_ZONE_ALREADY_EXISTS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_DS_ZONE_ALREADY_EXISTS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_NO_BOOTFILE_IF_DS_ZONE">
            <summary>
             DNS server not creating or reading the boot file for the directory service integrated DNS zone.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_NO_BOOTFILE_IF_DS_ZONE: <c>HRESULT_FROM_WIN32(DNS_ERROR_NO_BOOTFILE_IF_DS_ZONE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_NO_BOOTFILE_IF_DS_ZONE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_OPERATION_BASE">
            <summary>
              Operation errors
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_OPERATION_BASE: <c>HRESULT_FROM_WIN32(DNS_ERROR_OPERATION_BASE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_OPERATION_BASE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_INFO_AXFR_COMPLETE">
            <summary>
             DNS AXFR (zone transfer) complete.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_INFO_AXFR_COMPLETE: <c>HRESULT_FROM_WIN32(DNS_INFO_AXFR_COMPLETE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_INFO_AXFR_COMPLETE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_AXFR">
            <summary>
             DNS zone transfer failed.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_AXFR: <c>HRESULT_FROM_WIN32(DNS_ERROR_AXFR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_AXFR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_INFO_ADDED_LOCAL_WINS">
            <summary>
             Added local WINS server.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_INFO_ADDED_LOCAL_WINS: <c>HRESULT_FROM_WIN32(DNS_INFO_ADDED_LOCAL_WINS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_INFO_ADDED_LOCAL_WINS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_SECURE_BASE">
            <summary>
              Secure update
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_SECURE_BASE: <c>HRESULT_FROM_WIN32(DNS_ERROR_SECURE_BASE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_SECURE_BASE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_STATUS_CONTINUE_NEEDED">
            <summary>
             Secure update call needs to continue update request.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_STATUS_CONTINUE_NEEDED: <c>HRESULT_FROM_WIN32(DNS_STATUS_CONTINUE_NEEDED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_STATUS_CONTINUE_NEEDED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_SETUP_BASE">
            <summary>
              Setup errors
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_SETUP_BASE: <c>HRESULT_FROM_WIN32(DNS_ERROR_SETUP_BASE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_SETUP_BASE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_NO_TCPIP">
            <summary>
             TCP/IP network protocol not installed.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_NO_TCPIP: <c>HRESULT_FROM_WIN32(DNS_ERROR_NO_TCPIP)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_NO_TCPIP"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_NO_DNS_SERVERS">
            <summary>
             No DNS servers configured for local system.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_NO_DNS_SERVERS: <c>HRESULT_FROM_WIN32(DNS_ERROR_NO_DNS_SERVERS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_NO_DNS_SERVERS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_DP_BASE">
            <summary>
              Directory partition (DP) errors
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_DP_BASE: <c>HRESULT_FROM_WIN32(DNS_ERROR_DP_BASE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_DP_BASE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_DP_DOES_NOT_EXIST">
            <summary>
             The specified directory partition does not exist.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_DP_DOES_NOT_EXIST: <c>HRESULT_FROM_WIN32(DNS_ERROR_DP_DOES_NOT_EXIST)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_DP_DOES_NOT_EXIST"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_DP_ALREADY_EXISTS">
            <summary>
             The specified directory partition already exists.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_DP_ALREADY_EXISTS: <c>HRESULT_FROM_WIN32(DNS_ERROR_DP_ALREADY_EXISTS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_DP_ALREADY_EXISTS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_DP_NOT_ENLISTED">
            <summary>
             This DNS server is not enlisted in the specified directory partition.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_DP_NOT_ENLISTED: <c>HRESULT_FROM_WIN32(DNS_ERROR_DP_NOT_ENLISTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_DP_NOT_ENLISTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_DP_ALREADY_ENLISTED">
            <summary>
             This DNS server is already enlisted in the specified directory partition.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_DP_ALREADY_ENLISTED: <c>HRESULT_FROM_WIN32(DNS_ERROR_DP_ALREADY_ENLISTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_DP_ALREADY_ENLISTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_DP_NOT_AVAILABLE">
            <summary>
             The directory partition is not available at this time. Please wait
             a few minutes and try again.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_DP_NOT_AVAILABLE: <c>HRESULT_FROM_WIN32(DNS_ERROR_DP_NOT_AVAILABLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_DP_NOT_AVAILABLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_DNS_ERROR_DP_FSMO_ERROR">
            <summary>
             The application directory partition operation failed. The domain controller
             holding the domain naming master role is down or unable to service the
             request or is not running Windows Server 2003.
            </summary>
            <remarks>An HRESULT from Windows error code DNS_ERROR_DP_FSMO_ERROR: <c>HRESULT_FROM_WIN32(DNS_ERROR_DP_FSMO_ERROR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_DP_FSMO_ERROR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAEINTR">
            <summary>
             A blocking operation was interrupted by a call to WSACancelBlockingCall.
            </summary>
            <remarks>An HRESULT from Windows error code WSAEINTR: <c>HRESULT_FROM_WIN32(WSAEINTR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAEINTR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAEBADF">
            <summary>
             The file handle supplied is not valid.
            </summary>
            <remarks>An HRESULT from Windows error code WSAEBADF: <c>HRESULT_FROM_WIN32(WSAEBADF)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAEBADF"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAEACCES">
            <summary>
             An attempt was made to access a socket in a way forbidden by its access permissions.
            </summary>
            <remarks>An HRESULT from Windows error code WSAEACCES: <c>HRESULT_FROM_WIN32(WSAEACCES)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAEACCES"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAEFAULT">
            <summary>
             The system detected an invalid pointer address in attempting to use a pointer argument in a call.
            </summary>
            <remarks>An HRESULT from Windows error code WSAEFAULT: <c>HRESULT_FROM_WIN32(WSAEFAULT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAEFAULT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAEINVAL">
            <summary>
             An invalid argument was supplied.
            </summary>
            <remarks>An HRESULT from Windows error code WSAEINVAL: <c>HRESULT_FROM_WIN32(WSAEINVAL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAEINVAL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAEMFILE">
            <summary>
             Too many open sockets.
            </summary>
            <remarks>An HRESULT from Windows error code WSAEMFILE: <c>HRESULT_FROM_WIN32(WSAEMFILE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAEMFILE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAEWOULDBLOCK">
            <summary>
             A non-blocking socket operation could not be completed immediately.
            </summary>
            <remarks>An HRESULT from Windows error code WSAEWOULDBLOCK: <c>HRESULT_FROM_WIN32(WSAEWOULDBLOCK)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAEWOULDBLOCK"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAEINPROGRESS">
            <summary>
             A blocking operation is currently executing.
            </summary>
            <remarks>An HRESULT from Windows error code WSAEINPROGRESS: <c>HRESULT_FROM_WIN32(WSAEINPROGRESS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAEINPROGRESS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAEALREADY">
            <summary>
             An operation was attempted on a non-blocking socket that already had an operation in progress.
            </summary>
            <remarks>An HRESULT from Windows error code WSAEALREADY: <c>HRESULT_FROM_WIN32(WSAEALREADY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAEALREADY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAENOTSOCK">
            <summary>
             An operation was attempted on something that is not a socket.
            </summary>
            <remarks>An HRESULT from Windows error code WSAENOTSOCK: <c>HRESULT_FROM_WIN32(WSAENOTSOCK)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAENOTSOCK"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAEDESTADDRREQ">
            <summary>
             A required address was omitted from an operation on a socket.
            </summary>
            <remarks>An HRESULT from Windows error code WSAEDESTADDRREQ: <c>HRESULT_FROM_WIN32(WSAEDESTADDRREQ)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAEDESTADDRREQ"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAEMSGSIZE">
            <summary>
             A message sent on a datagram socket was larger than the internal message buffer or some other network limit, or the buffer used to receive a datagram into was smaller than the datagram itself.
            </summary>
            <remarks>An HRESULT from Windows error code WSAEMSGSIZE: <c>HRESULT_FROM_WIN32(WSAEMSGSIZE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAEMSGSIZE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAEPROTOTYPE">
            <summary>
             A protocol was specified in the socket function call that does not support the semantics of the socket type requested.
            </summary>
            <remarks>An HRESULT from Windows error code WSAEPROTOTYPE: <c>HRESULT_FROM_WIN32(WSAEPROTOTYPE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAEPROTOTYPE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAENOPROTOOPT">
            <summary>
             An unknown, invalid, or unsupported option or level was specified in a getsockopt or setsockopt call.
            </summary>
            <remarks>An HRESULT from Windows error code WSAENOPROTOOPT: <c>HRESULT_FROM_WIN32(WSAENOPROTOOPT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAENOPROTOOPT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAEPROTONOSUPPORT">
            <summary>
             The requested protocol has not been configured into the system, or no implementation for it exists.
            </summary>
            <remarks>An HRESULT from Windows error code WSAEPROTONOSUPPORT: <c>HRESULT_FROM_WIN32(WSAEPROTONOSUPPORT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAEPROTONOSUPPORT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAESOCKTNOSUPPORT">
            <summary>
             The support for the specified socket type does not exist in this address family.
            </summary>
            <remarks>An HRESULT from Windows error code WSAESOCKTNOSUPPORT: <c>HRESULT_FROM_WIN32(WSAESOCKTNOSUPPORT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAESOCKTNOSUPPORT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAEOPNOTSUPP">
            <summary>
             The attempted operation is not supported for the type of object referenced.
            </summary>
            <remarks>An HRESULT from Windows error code WSAEOPNOTSUPP: <c>HRESULT_FROM_WIN32(WSAEOPNOTSUPP)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAEOPNOTSUPP"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAEPFNOSUPPORT">
            <summary>
             The protocol family has not been configured into the system or no implementation for it exists.
            </summary>
            <remarks>An HRESULT from Windows error code WSAEPFNOSUPPORT: <c>HRESULT_FROM_WIN32(WSAEPFNOSUPPORT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAEPFNOSUPPORT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAEAFNOSUPPORT">
            <summary>
             An address incompatible with the requested protocol was used.
            </summary>
            <remarks>An HRESULT from Windows error code WSAEAFNOSUPPORT: <c>HRESULT_FROM_WIN32(WSAEAFNOSUPPORT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAEAFNOSUPPORT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAEADDRINUSE">
            <summary>
             Only one usage of each socket address (protocol/network address/port) is normally permitted.
            </summary>
            <remarks>An HRESULT from Windows error code WSAEADDRINUSE: <c>HRESULT_FROM_WIN32(WSAEADDRINUSE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAEADDRINUSE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAEADDRNOTAVAIL">
            <summary>
             The requested address is not valid in its context.
            </summary>
            <remarks>An HRESULT from Windows error code WSAEADDRNOTAVAIL: <c>HRESULT_FROM_WIN32(WSAEADDRNOTAVAIL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAEADDRNOTAVAIL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAENETDOWN">
            <summary>
             A socket operation encountered a dead network.
            </summary>
            <remarks>An HRESULT from Windows error code WSAENETDOWN: <c>HRESULT_FROM_WIN32(WSAENETDOWN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAENETDOWN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAENETUNREACH">
            <summary>
             A socket operation was attempted to an unreachable network.
            </summary>
            <remarks>An HRESULT from Windows error code WSAENETUNREACH: <c>HRESULT_FROM_WIN32(WSAENETUNREACH)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAENETUNREACH"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAENETRESET">
            <summary>
             The connection has been broken due to keep-alive activity detecting a failure while the operation was in progress.
            </summary>
            <remarks>An HRESULT from Windows error code WSAENETRESET: <c>HRESULT_FROM_WIN32(WSAENETRESET)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAENETRESET"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAECONNABORTED">
            <summary>
             An established connection was aborted by the software in your host machine.
            </summary>
            <remarks>An HRESULT from Windows error code WSAECONNABORTED: <c>HRESULT_FROM_WIN32(WSAECONNABORTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAECONNABORTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAECONNRESET">
            <summary>
             An existing connection was forcibly closed by the remote host.
            </summary>
            <remarks>An HRESULT from Windows error code WSAECONNRESET: <c>HRESULT_FROM_WIN32(WSAECONNRESET)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAECONNRESET"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAENOBUFS">
            <summary>
             An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full.
            </summary>
            <remarks>An HRESULT from Windows error code WSAENOBUFS: <c>HRESULT_FROM_WIN32(WSAENOBUFS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAENOBUFS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAEISCONN">
            <summary>
             A connect request was made on an already connected socket.
            </summary>
            <remarks>An HRESULT from Windows error code WSAEISCONN: <c>HRESULT_FROM_WIN32(WSAEISCONN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAEISCONN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAENOTCONN">
            <summary>
             A request to send or receive data was disallowed because the socket is not connected and (when sending on a datagram socket using a sendto call) no address was supplied.
            </summary>
            <remarks>An HRESULT from Windows error code WSAENOTCONN: <c>HRESULT_FROM_WIN32(WSAENOTCONN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAENOTCONN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAESHUTDOWN">
            <summary>
             A request to send or receive data was disallowed because the socket had already been shut down in that direction with a previous shutdown call.
            </summary>
            <remarks>An HRESULT from Windows error code WSAESHUTDOWN: <c>HRESULT_FROM_WIN32(WSAESHUTDOWN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAESHUTDOWN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAETOOMANYREFS">
            <summary>
             Too many references to some kernel object.
            </summary>
            <remarks>An HRESULT from Windows error code WSAETOOMANYREFS: <c>HRESULT_FROM_WIN32(WSAETOOMANYREFS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAETOOMANYREFS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAETIMEDOUT">
            <summary>
             A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.
            </summary>
            <remarks>An HRESULT from Windows error code WSAETIMEDOUT: <c>HRESULT_FROM_WIN32(WSAETIMEDOUT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAETIMEDOUT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAECONNREFUSED">
            <summary>
             No connection could be made because the target machine actively refused it.
            </summary>
            <remarks>An HRESULT from Windows error code WSAECONNREFUSED: <c>HRESULT_FROM_WIN32(WSAECONNREFUSED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAECONNREFUSED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAELOOP">
            <summary>
             Cannot translate name.
            </summary>
            <remarks>An HRESULT from Windows error code WSAELOOP: <c>HRESULT_FROM_WIN32(WSAELOOP)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAELOOP"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAENAMETOOLONG">
            <summary>
             Name component or name was too long.
            </summary>
            <remarks>An HRESULT from Windows error code WSAENAMETOOLONG: <c>HRESULT_FROM_WIN32(WSAENAMETOOLONG)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAENAMETOOLONG"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAEHOSTDOWN">
            <summary>
             A socket operation failed because the destination host was down.
            </summary>
            <remarks>An HRESULT from Windows error code WSAEHOSTDOWN: <c>HRESULT_FROM_WIN32(WSAEHOSTDOWN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAEHOSTDOWN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAEHOSTUNREACH">
            <summary>
             A socket operation was attempted to an unreachable host.
            </summary>
            <remarks>An HRESULT from Windows error code WSAEHOSTUNREACH: <c>HRESULT_FROM_WIN32(WSAEHOSTUNREACH)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAEHOSTUNREACH"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAENOTEMPTY">
            <summary>
             Cannot remove a directory that is not empty.
            </summary>
            <remarks>An HRESULT from Windows error code WSAENOTEMPTY: <c>HRESULT_FROM_WIN32(WSAENOTEMPTY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAENOTEMPTY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAEPROCLIM">
            <summary>
             A Windows Sockets implementation may have a limit on the number of applications that may use it simultaneously.
            </summary>
            <remarks>An HRESULT from Windows error code WSAEPROCLIM: <c>HRESULT_FROM_WIN32(WSAEPROCLIM)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAEPROCLIM"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAEUSERS">
            <summary>
             Ran out of quota.
            </summary>
            <remarks>An HRESULT from Windows error code WSAEUSERS: <c>HRESULT_FROM_WIN32(WSAEUSERS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAEUSERS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAEDQUOT">
            <summary>
             Ran out of disk quota.
            </summary>
            <remarks>An HRESULT from Windows error code WSAEDQUOT: <c>HRESULT_FROM_WIN32(WSAEDQUOT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAEDQUOT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAESTALE">
            <summary>
             File handle reference is no longer available.
            </summary>
            <remarks>An HRESULT from Windows error code WSAESTALE: <c>HRESULT_FROM_WIN32(WSAESTALE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAESTALE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAEREMOTE">
            <summary>
             Item is not available locally.
            </summary>
            <remarks>An HRESULT from Windows error code WSAEREMOTE: <c>HRESULT_FROM_WIN32(WSAEREMOTE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAEREMOTE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSASYSNOTREADY">
            <summary>
             WSAStartup cannot function at this time because the underlying system it uses to provide network services is currently unavailable.
            </summary>
            <remarks>An HRESULT from Windows error code WSASYSNOTREADY: <c>HRESULT_FROM_WIN32(WSASYSNOTREADY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSASYSNOTREADY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAVERNOTSUPPORTED">
            <summary>
             The Windows Sockets version requested is not supported.
            </summary>
            <remarks>An HRESULT from Windows error code WSAVERNOTSUPPORTED: <c>HRESULT_FROM_WIN32(WSAVERNOTSUPPORTED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAVERNOTSUPPORTED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSANOTINITIALISED">
            <summary>
             Either the application has not called WSAStartup, or WSAStartup failed.
            </summary>
            <remarks>An HRESULT from Windows error code WSANOTINITIALISED: <c>HRESULT_FROM_WIN32(WSANOTINITIALISED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSANOTINITIALISED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAEDISCON">
            <summary>
             Returned by WSARecv or WSARecvFrom to indicate the remote party has initiated a graceful shutdown sequence.
            </summary>
            <remarks>An HRESULT from Windows error code WSAEDISCON: <c>HRESULT_FROM_WIN32(WSAEDISCON)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAEDISCON"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAENOMORE">
            <summary>
             No more results can be returned by WSALookupServiceNext.
            </summary>
            <remarks>An HRESULT from Windows error code WSAENOMORE: <c>HRESULT_FROM_WIN32(WSAENOMORE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAENOMORE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAECANCELLED">
            <summary>
             A call to WSALookupServiceEnd was made while this call was still processing. The call has been canceled.
            </summary>
            <remarks>An HRESULT from Windows error code WSAECANCELLED: <c>HRESULT_FROM_WIN32(WSAECANCELLED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAECANCELLED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAEINVALIDPROCTABLE">
            <summary>
             The procedure call table is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code WSAEINVALIDPROCTABLE: <c>HRESULT_FROM_WIN32(WSAEINVALIDPROCTABLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAEINVALIDPROCTABLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAEINVALIDPROVIDER">
            <summary>
             The requested service provider is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code WSAEINVALIDPROVIDER: <c>HRESULT_FROM_WIN32(WSAEINVALIDPROVIDER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAEINVALIDPROVIDER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAEPROVIDERFAILEDINIT">
            <summary>
             The requested service provider could not be loaded or initialized.
            </summary>
            <remarks>An HRESULT from Windows error code WSAEPROVIDERFAILEDINIT: <c>HRESULT_FROM_WIN32(WSAEPROVIDERFAILEDINIT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAEPROVIDERFAILEDINIT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSASYSCALLFAILURE">
            <summary>
             A system call that should never fail has failed.
            </summary>
            <remarks>An HRESULT from Windows error code WSASYSCALLFAILURE: <c>HRESULT_FROM_WIN32(WSASYSCALLFAILURE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSASYSCALLFAILURE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSASERVICE_NOT_FOUND">
            <summary>
             No such service is known. The service cannot be found in the specified name space.
            </summary>
            <remarks>An HRESULT from Windows error code WSASERVICE_NOT_FOUND: <c>HRESULT_FROM_WIN32(WSASERVICE_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSASERVICE_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSATYPE_NOT_FOUND">
            <summary>
             The specified class was not found.
            </summary>
            <remarks>An HRESULT from Windows error code WSATYPE_NOT_FOUND: <c>HRESULT_FROM_WIN32(WSATYPE_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSATYPE_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSA_E_NO_MORE">
            <summary>
             No more results can be returned by WSALookupServiceNext.
            </summary>
            <remarks>An HRESULT from Windows error code WSA_E_NO_MORE: <c>HRESULT_FROM_WIN32(WSA_E_NO_MORE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSA_E_NO_MORE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSA_E_CANCELLED">
            <summary>
             A call to WSALookupServiceEnd was made while this call was still processing. The call has been canceled.
            </summary>
            <remarks>An HRESULT from Windows error code WSA_E_CANCELLED: <c>HRESULT_FROM_WIN32(WSA_E_CANCELLED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSA_E_CANCELLED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAEREFUSED">
            <summary>
             A database query failed because it was actively refused.
            </summary>
            <remarks>An HRESULT from Windows error code WSAEREFUSED: <c>HRESULT_FROM_WIN32(WSAEREFUSED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAEREFUSED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSAHOST_NOT_FOUND">
            <summary>
             No such host is known.
            </summary>
            <remarks>An HRESULT from Windows error code WSAHOST_NOT_FOUND: <c>HRESULT_FROM_WIN32(WSAHOST_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSAHOST_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSATRY_AGAIN">
            <summary>
             This is usually a temporary error during hostname resolution and means that the local server did not receive a response from an authoritative server.
            </summary>
            <remarks>An HRESULT from Windows error code WSATRY_AGAIN: <c>HRESULT_FROM_WIN32(WSATRY_AGAIN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSATRY_AGAIN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSANO_RECOVERY">
            <summary>
             A non-recoverable error occurred during a database lookup.
            </summary>
            <remarks>An HRESULT from Windows error code WSANO_RECOVERY: <c>HRESULT_FROM_WIN32(WSANO_RECOVERY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSANO_RECOVERY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSANO_DATA">
            <summary>
             The requested name is valid, but no data of the requested type was found.
            </summary>
            <remarks>An HRESULT from Windows error code WSANO_DATA: <c>HRESULT_FROM_WIN32(WSANO_DATA)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSANO_DATA"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSA_QOS_RECEIVERS">
            <summary>
             At least one reserve has arrived.
            </summary>
            <remarks>An HRESULT from Windows error code WSA_QOS_RECEIVERS: <c>HRESULT_FROM_WIN32(WSA_QOS_RECEIVERS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_RECEIVERS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSA_QOS_SENDERS">
            <summary>
             At least one path has arrived.
            </summary>
            <remarks>An HRESULT from Windows error code WSA_QOS_SENDERS: <c>HRESULT_FROM_WIN32(WSA_QOS_SENDERS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_SENDERS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSA_QOS_NO_SENDERS">
            <summary>
             There are no senders.
            </summary>
            <remarks>An HRESULT from Windows error code WSA_QOS_NO_SENDERS: <c>HRESULT_FROM_WIN32(WSA_QOS_NO_SENDERS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_NO_SENDERS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSA_QOS_NO_RECEIVERS">
            <summary>
             There are no receivers.
            </summary>
            <remarks>An HRESULT from Windows error code WSA_QOS_NO_RECEIVERS: <c>HRESULT_FROM_WIN32(WSA_QOS_NO_RECEIVERS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_NO_RECEIVERS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSA_QOS_REQUEST_CONFIRMED">
            <summary>
             Reserve has been confirmed.
            </summary>
            <remarks>An HRESULT from Windows error code WSA_QOS_REQUEST_CONFIRMED: <c>HRESULT_FROM_WIN32(WSA_QOS_REQUEST_CONFIRMED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_REQUEST_CONFIRMED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSA_QOS_ADMISSION_FAILURE">
            <summary>
             Error due to lack of resources.
            </summary>
            <remarks>An HRESULT from Windows error code WSA_QOS_ADMISSION_FAILURE: <c>HRESULT_FROM_WIN32(WSA_QOS_ADMISSION_FAILURE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_ADMISSION_FAILURE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSA_QOS_POLICY_FAILURE">
            <summary>
             Rejected for administrative reasons - bad credentials.
            </summary>
            <remarks>An HRESULT from Windows error code WSA_QOS_POLICY_FAILURE: <c>HRESULT_FROM_WIN32(WSA_QOS_POLICY_FAILURE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_POLICY_FAILURE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSA_QOS_BAD_STYLE">
            <summary>
             Unknown or conflicting style.
            </summary>
            <remarks>An HRESULT from Windows error code WSA_QOS_BAD_STYLE: <c>HRESULT_FROM_WIN32(WSA_QOS_BAD_STYLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_BAD_STYLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSA_QOS_BAD_OBJECT">
            <summary>
             Problem with some part of the filterspec or providerspecific buffer in general.
            </summary>
            <remarks>An HRESULT from Windows error code WSA_QOS_BAD_OBJECT: <c>HRESULT_FROM_WIN32(WSA_QOS_BAD_OBJECT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_BAD_OBJECT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSA_QOS_TRAFFIC_CTRL_ERROR">
            <summary>
             Problem with some part of the flowspec.
            </summary>
            <remarks>An HRESULT from Windows error code WSA_QOS_TRAFFIC_CTRL_ERROR: <c>HRESULT_FROM_WIN32(WSA_QOS_TRAFFIC_CTRL_ERROR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_TRAFFIC_CTRL_ERROR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSA_QOS_GENERIC_ERROR">
            <summary>
             General QOS error.
            </summary>
            <remarks>An HRESULT from Windows error code WSA_QOS_GENERIC_ERROR: <c>HRESULT_FROM_WIN32(WSA_QOS_GENERIC_ERROR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_GENERIC_ERROR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSA_QOS_ESERVICETYPE">
            <summary>
             An invalid or unrecognized service type was found in the flowspec.
            </summary>
            <remarks>An HRESULT from Windows error code WSA_QOS_ESERVICETYPE: <c>HRESULT_FROM_WIN32(WSA_QOS_ESERVICETYPE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_ESERVICETYPE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSA_QOS_EFLOWSPEC">
            <summary>
             An invalid or inconsistent flowspec was found in the QOS structure.
            </summary>
            <remarks>An HRESULT from Windows error code WSA_QOS_EFLOWSPEC: <c>HRESULT_FROM_WIN32(WSA_QOS_EFLOWSPEC)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_EFLOWSPEC"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSA_QOS_EPROVSPECBUF">
            <summary>
             Invalid QOS provider-specific buffer.
            </summary>
            <remarks>An HRESULT from Windows error code WSA_QOS_EPROVSPECBUF: <c>HRESULT_FROM_WIN32(WSA_QOS_EPROVSPECBUF)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_EPROVSPECBUF"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSA_QOS_EFILTERSTYLE">
            <summary>
             An invalid QOS filter style was used.
            </summary>
            <remarks>An HRESULT from Windows error code WSA_QOS_EFILTERSTYLE: <c>HRESULT_FROM_WIN32(WSA_QOS_EFILTERSTYLE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_EFILTERSTYLE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSA_QOS_EFILTERTYPE">
            <summary>
             An invalid QOS filter type was used.
            </summary>
            <remarks>An HRESULT from Windows error code WSA_QOS_EFILTERTYPE: <c>HRESULT_FROM_WIN32(WSA_QOS_EFILTERTYPE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_EFILTERTYPE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSA_QOS_EFILTERCOUNT">
            <summary>
             An incorrect number of QOS FILTERSPECs were specified in the FLOWDESCRIPTOR.
            </summary>
            <remarks>An HRESULT from Windows error code WSA_QOS_EFILTERCOUNT: <c>HRESULT_FROM_WIN32(WSA_QOS_EFILTERCOUNT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_EFILTERCOUNT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSA_QOS_EOBJLENGTH">
            <summary>
             An object with an invalid ObjectLength field was specified in the QOS provider-specific buffer.
            </summary>
            <remarks>An HRESULT from Windows error code WSA_QOS_EOBJLENGTH: <c>HRESULT_FROM_WIN32(WSA_QOS_EOBJLENGTH)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_EOBJLENGTH"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSA_QOS_EFLOWCOUNT">
            <summary>
             An incorrect number of flow descriptors was specified in the QOS structure.
            </summary>
            <remarks>An HRESULT from Windows error code WSA_QOS_EFLOWCOUNT: <c>HRESULT_FROM_WIN32(WSA_QOS_EFLOWCOUNT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_EFLOWCOUNT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSA_QOS_EUNKOWNPSOBJ">
            <summary>
             An unrecognized object was found in the QOS provider-specific buffer.
            </summary>
            <remarks>An HRESULT from Windows error code WSA_QOS_EUNKOWNPSOBJ: <c>HRESULT_FROM_WIN32(WSA_QOS_EUNKOWNPSOBJ)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_EUNKOWNPSOBJ"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSA_QOS_EPOLICYOBJ">
            <summary>
             An invalid policy object was found in the QOS provider-specific buffer.
            </summary>
            <remarks>An HRESULT from Windows error code WSA_QOS_EPOLICYOBJ: <c>HRESULT_FROM_WIN32(WSA_QOS_EPOLICYOBJ)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_EPOLICYOBJ"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSA_QOS_EFLOWDESC">
            <summary>
             An invalid QOS flow descriptor was found in the flow descriptor list.
            </summary>
            <remarks>An HRESULT from Windows error code WSA_QOS_EFLOWDESC: <c>HRESULT_FROM_WIN32(WSA_QOS_EFLOWDESC)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_EFLOWDESC"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSA_QOS_EPSFLOWSPEC">
            <summary>
             An invalid or inconsistent flowspec was found in the QOS provider specific buffer.
            </summary>
            <remarks>An HRESULT from Windows error code WSA_QOS_EPSFLOWSPEC: <c>HRESULT_FROM_WIN32(WSA_QOS_EPSFLOWSPEC)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_EPSFLOWSPEC"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSA_QOS_EPSFILTERSPEC">
            <summary>
             An invalid FILTERSPEC was found in the QOS provider-specific buffer.
            </summary>
            <remarks>An HRESULT from Windows error code WSA_QOS_EPSFILTERSPEC: <c>HRESULT_FROM_WIN32(WSA_QOS_EPSFILTERSPEC)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_EPSFILTERSPEC"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSA_QOS_ESDMODEOBJ">
            <summary>
             An invalid shape discard mode object was found in the QOS provider specific buffer.
            </summary>
            <remarks>An HRESULT from Windows error code WSA_QOS_ESDMODEOBJ: <c>HRESULT_FROM_WIN32(WSA_QOS_ESDMODEOBJ)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_ESDMODEOBJ"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSA_QOS_ESHAPERATEOBJ">
            <summary>
             An invalid shaping rate object was found in the QOS provider-specific buffer.
            </summary>
            <remarks>An HRESULT from Windows error code WSA_QOS_ESHAPERATEOBJ: <c>HRESULT_FROM_WIN32(WSA_QOS_ESHAPERATEOBJ)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_ESHAPERATEOBJ"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WSA_QOS_RESERVED_PETYPE">
            <summary>
             A reserved policy element was found in the QOS provider-specific buffer.
            </summary>
            <remarks>An HRESULT from Windows error code WSA_QOS_RESERVED_PETYPE: <c>HRESULT_FROM_WIN32(WSA_QOS_RESERVED_PETYPE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_RESERVED_PETYPE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_SECTION_NOT_FOUND">
            <summary>
             The requested section was not present in the activation context.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_SECTION_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_SXS_SECTION_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_SECTION_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_CANT_GEN_ACTCTX">
            <summary>
             This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_CANT_GEN_ACTCTX: <c>HRESULT_FROM_WIN32(ERROR_SXS_CANT_GEN_ACTCTX)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_CANT_GEN_ACTCTX"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_INVALID_ACTCTXDATA_FORMAT">
            <summary>
             The application binding data format is invalid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_INVALID_ACTCTXDATA_FORMAT: <c>HRESULT_FROM_WIN32(ERROR_SXS_INVALID_ACTCTXDATA_FORMAT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_INVALID_ACTCTXDATA_FORMAT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_ASSEMBLY_NOT_FOUND">
            <summary>
             The referenced assembly is not installed on your system.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_ASSEMBLY_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_SXS_ASSEMBLY_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_ASSEMBLY_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_MANIFEST_FORMAT_ERROR">
            <summary>
             The manifest file does not begin with the required tag and format information.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_MANIFEST_FORMAT_ERROR: <c>HRESULT_FROM_WIN32(ERROR_SXS_MANIFEST_FORMAT_ERROR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_MANIFEST_FORMAT_ERROR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_MANIFEST_PARSE_ERROR">
            <summary>
             The manifest file contains one or more syntax errors.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_MANIFEST_PARSE_ERROR: <c>HRESULT_FROM_WIN32(ERROR_SXS_MANIFEST_PARSE_ERROR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_MANIFEST_PARSE_ERROR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_ACTIVATION_CONTEXT_DISABLED">
            <summary>
             The application attempted to activate a disabled activation context.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_ACTIVATION_CONTEXT_DISABLED: <c>HRESULT_FROM_WIN32(ERROR_SXS_ACTIVATION_CONTEXT_DISABLED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_ACTIVATION_CONTEXT_DISABLED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_KEY_NOT_FOUND">
            <summary>
             The requested lookup key was not found in any active activation context.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_KEY_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_SXS_KEY_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_KEY_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_VERSION_CONFLICT">
            <summary>
             A component version required by the application conflicts with another component version already active.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_VERSION_CONFLICT: <c>HRESULT_FROM_WIN32(ERROR_SXS_VERSION_CONFLICT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_VERSION_CONFLICT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_WRONG_SECTION_TYPE">
            <summary>
             The type requested activation context section does not match the query API used.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_WRONG_SECTION_TYPE: <c>HRESULT_FROM_WIN32(ERROR_SXS_WRONG_SECTION_TYPE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_WRONG_SECTION_TYPE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_THREAD_QUERIES_DISABLED">
            <summary>
             Lack of system resources has required isolated activation to be disabled for the current thread of execution.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_THREAD_QUERIES_DISABLED: <c>HRESULT_FROM_WIN32(ERROR_SXS_THREAD_QUERIES_DISABLED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_THREAD_QUERIES_DISABLED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_PROCESS_DEFAULT_ALREADY_SET">
            <summary>
             An attempt to set the process default activation context failed because the process default activation context was already set.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_PROCESS_DEFAULT_ALREADY_SET: <c>HRESULT_FROM_WIN32(ERROR_SXS_PROCESS_DEFAULT_ALREADY_SET)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_PROCESS_DEFAULT_ALREADY_SET"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_UNKNOWN_ENCODING_GROUP">
            <summary>
             The encoding group identifier specified is not recognized.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_UNKNOWN_ENCODING_GROUP: <c>HRESULT_FROM_WIN32(ERROR_SXS_UNKNOWN_ENCODING_GROUP)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_UNKNOWN_ENCODING_GROUP"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_UNKNOWN_ENCODING">
            <summary>
             The encoding requested is not recognized.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_UNKNOWN_ENCODING: <c>HRESULT_FROM_WIN32(ERROR_SXS_UNKNOWN_ENCODING)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_UNKNOWN_ENCODING"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_INVALID_XML_NAMESPACE_URI">
            <summary>
             The manifest contains a reference to an invalid URI.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_INVALID_XML_NAMESPACE_URI: <c>HRESULT_FROM_WIN32(ERROR_SXS_INVALID_XML_NAMESPACE_URI)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_INVALID_XML_NAMESPACE_URI"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_ROOT_MANIFEST_DEPENDENCY_NOT_INSTALLED">
            <summary>
             The application manifest contains a reference to a dependent assembly which is not installed
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_ROOT_MANIFEST_DEPENDENCY_NOT_INSTALLED: <c>HRESULT_FROM_WIN32(ERROR_SXS_ROOT_MANIFEST_DEPENDENCY_NOT_INSTALLED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_ROOT_MANIFEST_DEPENDENCY_NOT_INSTALLED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_LEAF_MANIFEST_DEPENDENCY_NOT_INSTALLED">
            <summary>
             The manifest for an assembly used by the application has a reference to a dependent assembly which is not installed
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_LEAF_MANIFEST_DEPENDENCY_NOT_INSTALLED: <c>HRESULT_FROM_WIN32(ERROR_SXS_LEAF_MANIFEST_DEPENDENCY_NOT_INSTALLED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_LEAF_MANIFEST_DEPENDENCY_NOT_INSTALLED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE">
            <summary>
             The manifest contains an attribute for the assembly identity which is not valid.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE: <c>HRESULT_FROM_WIN32(ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_MANIFEST_MISSING_REQUIRED_DEFAULT_NAMESPACE">
            <summary>
             The manifest is missing the required default namespace specification on the assembly element.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_MANIFEST_MISSING_REQUIRED_DEFAULT_NAMESPACE: <c>HRESULT_FROM_WIN32(ERROR_SXS_MANIFEST_MISSING_REQUIRED_DEFAULT_NAMESPACE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_MANIFEST_MISSING_REQUIRED_DEFAULT_NAMESPACE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_MANIFEST_INVALID_REQUIRED_DEFAULT_NAMESPACE">
            <summary>
             The manifest has a default namespace specified on the assembly element but its value is not "urn:schemas-microsoft-com:asm.v1".
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_MANIFEST_INVALID_REQUIRED_DEFAULT_NAMESPACE: <c>HRESULT_FROM_WIN32(ERROR_SXS_MANIFEST_INVALID_REQUIRED_DEFAULT_NAMESPACE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_MANIFEST_INVALID_REQUIRED_DEFAULT_NAMESPACE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_PRIVATE_MANIFEST_CROSS_PATH_WITH_REPARSE_POINT">
            <summary>
             The private manifest probed has crossed reparse-point-associated path
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_PRIVATE_MANIFEST_CROSS_PATH_WITH_REPARSE_POINT: <c>HRESULT_FROM_WIN32(ERROR_SXS_PRIVATE_MANIFEST_CROSS_PATH_WITH_REPARSE_POINT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_PRIVATE_MANIFEST_CROSS_PATH_WITH_REPARSE_POINT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_DUPLICATE_DLL_NAME">
            <summary>
             Two or more components referenced directly or indirectly by the application manifest have files by the same name.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_DUPLICATE_DLL_NAME: <c>HRESULT_FROM_WIN32(ERROR_SXS_DUPLICATE_DLL_NAME)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_DUPLICATE_DLL_NAME"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_DUPLICATE_WINDOWCLASS_NAME">
            <summary>
             Two or more components referenced directly or indirectly by the application manifest have window classes with the same name.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_DUPLICATE_WINDOWCLASS_NAME: <c>HRESULT_FROM_WIN32(ERROR_SXS_DUPLICATE_WINDOWCLASS_NAME)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_DUPLICATE_WINDOWCLASS_NAME"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_DUPLICATE_CLSID">
            <summary>
             Two or more components referenced directly or indirectly by the application manifest have the same COM server CLSIDs.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_DUPLICATE_CLSID: <c>HRESULT_FROM_WIN32(ERROR_SXS_DUPLICATE_CLSID)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_DUPLICATE_CLSID"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_DUPLICATE_IID">
            <summary>
             Two or more components referenced directly or indirectly by the application manifest have proxies for the same COM interface IIDs.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_DUPLICATE_IID: <c>HRESULT_FROM_WIN32(ERROR_SXS_DUPLICATE_IID)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_DUPLICATE_IID"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_DUPLICATE_TLBID">
            <summary>
             Two or more components referenced directly or indirectly by the application manifest have the same COM type library TLBIDs.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_DUPLICATE_TLBID: <c>HRESULT_FROM_WIN32(ERROR_SXS_DUPLICATE_TLBID)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_DUPLICATE_TLBID"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_DUPLICATE_PROGID">
            <summary>
             Two or more components referenced directly or indirectly by the application manifest have the same COM ProgIDs.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_DUPLICATE_PROGID: <c>HRESULT_FROM_WIN32(ERROR_SXS_DUPLICATE_PROGID)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_DUPLICATE_PROGID"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_DUPLICATE_ASSEMBLY_NAME">
            <summary>
             Two or more components referenced directly or indirectly by the application manifest are different versions of the same component which is not permitted.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_DUPLICATE_ASSEMBLY_NAME: <c>HRESULT_FROM_WIN32(ERROR_SXS_DUPLICATE_ASSEMBLY_NAME)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_DUPLICATE_ASSEMBLY_NAME"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_FILE_HASH_MISMATCH">
            <summary>
             A component's file does not match the verification information present in the
             component manifest.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_FILE_HASH_MISMATCH: <c>HRESULT_FROM_WIN32(ERROR_SXS_FILE_HASH_MISMATCH)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_FILE_HASH_MISMATCH"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_POLICY_PARSE_ERROR">
            <summary>
             The policy manifest contains one or more syntax errors.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_POLICY_PARSE_ERROR: <c>HRESULT_FROM_WIN32(ERROR_SXS_POLICY_PARSE_ERROR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_POLICY_PARSE_ERROR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_XML_E_MISSINGQUOTE">
            <summary>
             Manifest Parse Error : A string literal was expected, but no opening quote character was found.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_XML_E_MISSINGQUOTE: <c>HRESULT_FROM_WIN32(ERROR_SXS_XML_E_MISSINGQUOTE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_MISSINGQUOTE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_XML_E_COMMENTSYNTAX">
            <summary>
             Manifest Parse Error : Incorrect syntax was used in a comment.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_XML_E_COMMENTSYNTAX: <c>HRESULT_FROM_WIN32(ERROR_SXS_XML_E_COMMENTSYNTAX)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_COMMENTSYNTAX"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_XML_E_BADSTARTNAMECHAR">
            <summary>
             Manifest Parse Error : A name was started with an invalid character.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_XML_E_BADSTARTNAMECHAR: <c>HRESULT_FROM_WIN32(ERROR_SXS_XML_E_BADSTARTNAMECHAR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_BADSTARTNAMECHAR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_XML_E_BADNAMECHAR">
            <summary>
             Manifest Parse Error : A name contained an invalid character.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_XML_E_BADNAMECHAR: <c>HRESULT_FROM_WIN32(ERROR_SXS_XML_E_BADNAMECHAR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_BADNAMECHAR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_XML_E_BADCHARINSTRING">
            <summary>
             Manifest Parse Error : A string literal contained an invalid character.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_XML_E_BADCHARINSTRING: <c>HRESULT_FROM_WIN32(ERROR_SXS_XML_E_BADCHARINSTRING)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_BADCHARINSTRING"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_XML_E_XMLDECLSYNTAX">
            <summary>
             Manifest Parse Error : Invalid syntax for an xml declaration.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_XML_E_XMLDECLSYNTAX: <c>HRESULT_FROM_WIN32(ERROR_SXS_XML_E_XMLDECLSYNTAX)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_XMLDECLSYNTAX"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_XML_E_BADCHARDATA">
            <summary>
             Manifest Parse Error : An Invalid character was found in text content.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_XML_E_BADCHARDATA: <c>HRESULT_FROM_WIN32(ERROR_SXS_XML_E_BADCHARDATA)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_BADCHARDATA"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_XML_E_MISSINGWHITESPACE">
            <summary>
             Manifest Parse Error : Required white space was missing.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_XML_E_MISSINGWHITESPACE: <c>HRESULT_FROM_WIN32(ERROR_SXS_XML_E_MISSINGWHITESPACE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_MISSINGWHITESPACE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_XML_E_EXPECTINGTAGEND">
            <summary>
             Manifest Parse Error : The character '>' was expected.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_XML_E_EXPECTINGTAGEND: <c>HRESULT_FROM_WIN32(ERROR_SXS_XML_E_EXPECTINGTAGEND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_EXPECTINGTAGEND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_XML_E_MISSINGSEMICOLON">
            <summary>
             Manifest Parse Error : A semi colon character was expected.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_XML_E_MISSINGSEMICOLON: <c>HRESULT_FROM_WIN32(ERROR_SXS_XML_E_MISSINGSEMICOLON)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_MISSINGSEMICOLON"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_XML_E_UNBALANCEDPAREN">
            <summary>
             Manifest Parse Error : Unbalanced parentheses.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_XML_E_UNBALANCEDPAREN: <c>HRESULT_FROM_WIN32(ERROR_SXS_XML_E_UNBALANCEDPAREN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_UNBALANCEDPAREN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_XML_E_INTERNALERROR">
            <summary>
             Manifest Parse Error : Internal error.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_XML_E_INTERNALERROR: <c>HRESULT_FROM_WIN32(ERROR_SXS_XML_E_INTERNALERROR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_INTERNALERROR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_XML_E_UNEXPECTED_WHITESPACE">
            <summary>
             Manifest Parse Error : Whitespace is not allowed at this location.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_XML_E_UNEXPECTED_WHITESPACE: <c>HRESULT_FROM_WIN32(ERROR_SXS_XML_E_UNEXPECTED_WHITESPACE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_UNEXPECTED_WHITESPACE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_XML_E_INCOMPLETE_ENCODING">
            <summary>
             Manifest Parse Error : End of file reached in invalid state for current encoding.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_XML_E_INCOMPLETE_ENCODING: <c>HRESULT_FROM_WIN32(ERROR_SXS_XML_E_INCOMPLETE_ENCODING)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_INCOMPLETE_ENCODING"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_XML_E_MISSING_PAREN">
            <summary>
             Manifest Parse Error : Missing parenthesis.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_XML_E_MISSING_PAREN: <c>HRESULT_FROM_WIN32(ERROR_SXS_XML_E_MISSING_PAREN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_MISSING_PAREN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_XML_E_EXPECTINGCLOSEQUOTE">
            <summary>
             Manifest Parse Error : A single or double closing quote character (\' or \") is missing.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_XML_E_EXPECTINGCLOSEQUOTE: <c>HRESULT_FROM_WIN32(ERROR_SXS_XML_E_EXPECTINGCLOSEQUOTE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_EXPECTINGCLOSEQUOTE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_XML_E_MULTIPLE_COLONS">
            <summary>
             Manifest Parse Error : Multiple colons are not allowed in a name.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_XML_E_MULTIPLE_COLONS: <c>HRESULT_FROM_WIN32(ERROR_SXS_XML_E_MULTIPLE_COLONS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_MULTIPLE_COLONS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_XML_E_INVALID_DECIMAL">
            <summary>
             Manifest Parse Error : Invalid character for decimal digit.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_XML_E_INVALID_DECIMAL: <c>HRESULT_FROM_WIN32(ERROR_SXS_XML_E_INVALID_DECIMAL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_INVALID_DECIMAL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_XML_E_INVALID_HEXIDECIMAL">
            <summary>
             Manifest Parse Error : Invalid character for hexidecimal digit.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_XML_E_INVALID_HEXIDECIMAL: <c>HRESULT_FROM_WIN32(ERROR_SXS_XML_E_INVALID_HEXIDECIMAL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_INVALID_HEXIDECIMAL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_XML_E_INVALID_UNICODE">
            <summary>
             Manifest Parse Error : Invalid unicode character value for this platform.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_XML_E_INVALID_UNICODE: <c>HRESULT_FROM_WIN32(ERROR_SXS_XML_E_INVALID_UNICODE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_INVALID_UNICODE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_XML_E_WHITESPACEORQUESTIONMARK">
            <summary>
             Manifest Parse Error : Expecting whitespace or '?'.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_XML_E_WHITESPACEORQUESTIONMARK: <c>HRESULT_FROM_WIN32(ERROR_SXS_XML_E_WHITESPACEORQUESTIONMARK)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_WHITESPACEORQUESTIONMARK"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_XML_E_UNEXPECTEDENDTAG">
            <summary>
             Manifest Parse Error : End tag was not expected at this location.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_XML_E_UNEXPECTEDENDTAG: <c>HRESULT_FROM_WIN32(ERROR_SXS_XML_E_UNEXPECTEDENDTAG)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_UNEXPECTEDENDTAG"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_XML_E_UNCLOSEDTAG">
            <summary>
             Manifest Parse Error : The following tags were not closed: %1.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_XML_E_UNCLOSEDTAG: <c>HRESULT_FROM_WIN32(ERROR_SXS_XML_E_UNCLOSEDTAG)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_UNCLOSEDTAG"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_XML_E_DUPLICATEATTRIBUTE">
            <summary>
             Manifest Parse Error : Duplicate attribute.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_XML_E_DUPLICATEATTRIBUTE: <c>HRESULT_FROM_WIN32(ERROR_SXS_XML_E_DUPLICATEATTRIBUTE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_DUPLICATEATTRIBUTE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_XML_E_MULTIPLEROOTS">
            <summary>
             Manifest Parse Error : Only one top level element is allowed in an XML document.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_XML_E_MULTIPLEROOTS: <c>HRESULT_FROM_WIN32(ERROR_SXS_XML_E_MULTIPLEROOTS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_MULTIPLEROOTS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_XML_E_INVALIDATROOTLEVEL">
            <summary>
             Manifest Parse Error : Invalid at the top level of the document.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_XML_E_INVALIDATROOTLEVEL: <c>HRESULT_FROM_WIN32(ERROR_SXS_XML_E_INVALIDATROOTLEVEL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_INVALIDATROOTLEVEL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_XML_E_BADXMLDECL">
            <summary>
             Manifest Parse Error : Invalid xml declaration.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_XML_E_BADXMLDECL: <c>HRESULT_FROM_WIN32(ERROR_SXS_XML_E_BADXMLDECL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_BADXMLDECL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_XML_E_MISSINGROOT">
            <summary>
             Manifest Parse Error : XML document must have a top level element.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_XML_E_MISSINGROOT: <c>HRESULT_FROM_WIN32(ERROR_SXS_XML_E_MISSINGROOT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_MISSINGROOT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_XML_E_UNEXPECTEDEOF">
            <summary>
             Manifest Parse Error : Unexpected end of file.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_XML_E_UNEXPECTEDEOF: <c>HRESULT_FROM_WIN32(ERROR_SXS_XML_E_UNEXPECTEDEOF)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_UNEXPECTEDEOF"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_XML_E_BADPEREFINSUBSET">
            <summary>
             Manifest Parse Error : Parameter entities cannot be used inside markup declarations in an internal subset.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_XML_E_BADPEREFINSUBSET: <c>HRESULT_FROM_WIN32(ERROR_SXS_XML_E_BADPEREFINSUBSET)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_BADPEREFINSUBSET"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_XML_E_UNCLOSEDSTARTTAG">
            <summary>
             Manifest Parse Error : Element was not closed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_XML_E_UNCLOSEDSTARTTAG: <c>HRESULT_FROM_WIN32(ERROR_SXS_XML_E_UNCLOSEDSTARTTAG)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_UNCLOSEDSTARTTAG"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_XML_E_UNCLOSEDENDTAG">
            <summary>
             Manifest Parse Error : End element was missing the character '>'.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_XML_E_UNCLOSEDENDTAG: <c>HRESULT_FROM_WIN32(ERROR_SXS_XML_E_UNCLOSEDENDTAG)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_UNCLOSEDENDTAG"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_XML_E_UNCLOSEDSTRING">
            <summary>
             Manifest Parse Error : A string literal was not closed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_XML_E_UNCLOSEDSTRING: <c>HRESULT_FROM_WIN32(ERROR_SXS_XML_E_UNCLOSEDSTRING)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_UNCLOSEDSTRING"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_XML_E_UNCLOSEDCOMMENT">
            <summary>
             Manifest Parse Error : A comment was not closed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_XML_E_UNCLOSEDCOMMENT: <c>HRESULT_FROM_WIN32(ERROR_SXS_XML_E_UNCLOSEDCOMMENT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_UNCLOSEDCOMMENT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_XML_E_UNCLOSEDDECL">
            <summary>
             Manifest Parse Error : A declaration was not closed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_XML_E_UNCLOSEDDECL: <c>HRESULT_FROM_WIN32(ERROR_SXS_XML_E_UNCLOSEDDECL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_UNCLOSEDDECL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_XML_E_UNCLOSEDCDATA">
            <summary>
             Manifest Parse Error : A CDATA section was not closed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_XML_E_UNCLOSEDCDATA: <c>HRESULT_FROM_WIN32(ERROR_SXS_XML_E_UNCLOSEDCDATA)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_UNCLOSEDCDATA"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_XML_E_RESERVEDNAMESPACE">
            <summary>
             Manifest Parse Error : The namespace prefix is not allowed to start with the reserved string "xml".
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_XML_E_RESERVEDNAMESPACE: <c>HRESULT_FROM_WIN32(ERROR_SXS_XML_E_RESERVEDNAMESPACE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_RESERVEDNAMESPACE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_XML_E_INVALIDENCODING">
            <summary>
             Manifest Parse Error : System does not support the specified encoding.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_XML_E_INVALIDENCODING: <c>HRESULT_FROM_WIN32(ERROR_SXS_XML_E_INVALIDENCODING)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_INVALIDENCODING"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_XML_E_INVALIDSWITCH">
            <summary>
             Manifest Parse Error : Switch from current encoding to specified encoding not supported.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_XML_E_INVALIDSWITCH: <c>HRESULT_FROM_WIN32(ERROR_SXS_XML_E_INVALIDSWITCH)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_INVALIDSWITCH"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_XML_E_BADXMLCASE">
            <summary>
             Manifest Parse Error : The name 'xml' is reserved and must be lower case.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_XML_E_BADXMLCASE: <c>HRESULT_FROM_WIN32(ERROR_SXS_XML_E_BADXMLCASE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_BADXMLCASE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_XML_E_INVALID_STANDALONE">
            <summary>
             Manifest Parse Error : The standalone attribute must have the value 'yes' or 'no'.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_XML_E_INVALID_STANDALONE: <c>HRESULT_FROM_WIN32(ERROR_SXS_XML_E_INVALID_STANDALONE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_INVALID_STANDALONE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_XML_E_UNEXPECTED_STANDALONE">
            <summary>
             Manifest Parse Error : The standalone attribute cannot be used in external entities.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_XML_E_UNEXPECTED_STANDALONE: <c>HRESULT_FROM_WIN32(ERROR_SXS_XML_E_UNEXPECTED_STANDALONE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_UNEXPECTED_STANDALONE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_XML_E_INVALID_VERSION">
            <summary>
             Manifest Parse Error : Invalid version number.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_XML_E_INVALID_VERSION: <c>HRESULT_FROM_WIN32(ERROR_SXS_XML_E_INVALID_VERSION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_INVALID_VERSION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_XML_E_MISSINGEQUALS">
            <summary>
             Manifest Parse Error : Missing equals sign between attribute and attribute value.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_XML_E_MISSINGEQUALS: <c>HRESULT_FROM_WIN32(ERROR_SXS_XML_E_MISSINGEQUALS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_MISSINGEQUALS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_PROTECTION_RECOVERY_FAILED">
            <summary>
             Assembly Protection Error : Unable to recover the specified assembly.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_PROTECTION_RECOVERY_FAILED: <c>HRESULT_FROM_WIN32(ERROR_SXS_PROTECTION_RECOVERY_FAILED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_PROTECTION_RECOVERY_FAILED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_PROTECTION_PUBLIC_KEY_TOO_SHORT">
            <summary>
             Assembly Protection Error : The public key for an assembly was too short to be allowed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_PROTECTION_PUBLIC_KEY_TOO_SHORT: <c>HRESULT_FROM_WIN32(ERROR_SXS_PROTECTION_PUBLIC_KEY_TOO_SHORT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_PROTECTION_PUBLIC_KEY_TOO_SHORT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_PROTECTION_CATALOG_NOT_VALID">
            <summary>
             Assembly Protection Error : The catalog for an assembly is not valid, or does not match the assembly's manifest.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_PROTECTION_CATALOG_NOT_VALID: <c>HRESULT_FROM_WIN32(ERROR_SXS_PROTECTION_CATALOG_NOT_VALID)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_PROTECTION_CATALOG_NOT_VALID"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_UNTRANSLATABLE_HRESULT">
            <summary>
             An HRESULT could not be translated to a corresponding Win32 error code.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_UNTRANSLATABLE_HRESULT: <c>HRESULT_FROM_WIN32(ERROR_SXS_UNTRANSLATABLE_HRESULT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_UNTRANSLATABLE_HRESULT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_PROTECTION_CATALOG_FILE_MISSING">
            <summary>
             Assembly Protection Error : The catalog for an assembly is missing.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_PROTECTION_CATALOG_FILE_MISSING: <c>HRESULT_FROM_WIN32(ERROR_SXS_PROTECTION_CATALOG_FILE_MISSING)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_PROTECTION_CATALOG_FILE_MISSING"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_MISSING_ASSEMBLY_IDENTITY_ATTRIBUTE">
            <summary>
             The supplied assembly identity is missing one or more attributes which must be present in this context.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_MISSING_ASSEMBLY_IDENTITY_ATTRIBUTE: <c>HRESULT_FROM_WIN32(ERROR_SXS_MISSING_ASSEMBLY_IDENTITY_ATTRIBUTE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_MISSING_ASSEMBLY_IDENTITY_ATTRIBUTE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE_NAME">
            <summary>
             The supplied assembly identity has one or more attribute names that contain characters not permitted in XML names.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE_NAME: <c>HRESULT_FROM_WIN32(ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE_NAME)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE_NAME"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_QM_POLICY_EXISTS">
            <summary>
             The specified quick mode policy already exists.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_QM_POLICY_EXISTS: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_QM_POLICY_EXISTS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_QM_POLICY_EXISTS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_QM_POLICY_NOT_FOUND">
            <summary>
             The specified quick mode policy was not found.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_QM_POLICY_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_QM_POLICY_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_QM_POLICY_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_QM_POLICY_IN_USE">
            <summary>
             The specified quick mode policy is being used.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_QM_POLICY_IN_USE: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_QM_POLICY_IN_USE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_QM_POLICY_IN_USE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_MM_POLICY_EXISTS">
            <summary>
             The specified main mode policy already exists.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_MM_POLICY_EXISTS: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_MM_POLICY_EXISTS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_MM_POLICY_EXISTS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_MM_POLICY_NOT_FOUND">
            <summary>
             The specified main mode policy was not found
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_MM_POLICY_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_MM_POLICY_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_MM_POLICY_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_MM_POLICY_IN_USE">
            <summary>
             The specified main mode policy is being used.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_MM_POLICY_IN_USE: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_MM_POLICY_IN_USE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_MM_POLICY_IN_USE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_MM_FILTER_EXISTS">
            <summary>
             The specified main mode filter already exists.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_MM_FILTER_EXISTS: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_MM_FILTER_EXISTS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_MM_FILTER_EXISTS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_MM_FILTER_NOT_FOUND">
            <summary>
             The specified main mode filter was not found.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_MM_FILTER_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_MM_FILTER_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_MM_FILTER_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_TRANSPORT_FILTER_EXISTS">
            <summary>
             The specified transport mode filter already exists.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_TRANSPORT_FILTER_EXISTS: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_TRANSPORT_FILTER_EXISTS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_TRANSPORT_FILTER_EXISTS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_TRANSPORT_FILTER_NOT_FOUND">
            <summary>
             The specified transport mode filter does not exist.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_TRANSPORT_FILTER_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_TRANSPORT_FILTER_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_TRANSPORT_FILTER_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_MM_AUTH_EXISTS">
            <summary>
             The specified main mode authentication list exists.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_MM_AUTH_EXISTS: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_MM_AUTH_EXISTS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_MM_AUTH_EXISTS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_MM_AUTH_NOT_FOUND">
            <summary>
             The specified main mode authentication list was not found.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_MM_AUTH_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_MM_AUTH_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_MM_AUTH_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_MM_AUTH_IN_USE">
            <summary>
             The specified quick mode policy is being used.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_MM_AUTH_IN_USE: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_MM_AUTH_IN_USE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_MM_AUTH_IN_USE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_DEFAULT_MM_POLICY_NOT_FOUND">
            <summary>
             The specified main mode policy was not found.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_DEFAULT_MM_POLICY_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_DEFAULT_MM_POLICY_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_DEFAULT_MM_POLICY_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_DEFAULT_MM_AUTH_NOT_FOUND">
            <summary>
             The specified quick mode policy was not found
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_DEFAULT_MM_AUTH_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_DEFAULT_MM_AUTH_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_DEFAULT_MM_AUTH_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_DEFAULT_QM_POLICY_NOT_FOUND">
            <summary>
             The manifest file contains one or more syntax errors.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_DEFAULT_QM_POLICY_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_DEFAULT_QM_POLICY_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_DEFAULT_QM_POLICY_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_TUNNEL_FILTER_EXISTS">
            <summary>
             The application attempted to activate a disabled activation context.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_TUNNEL_FILTER_EXISTS: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_TUNNEL_FILTER_EXISTS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_TUNNEL_FILTER_EXISTS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_TUNNEL_FILTER_NOT_FOUND">
            <summary>
             The requested lookup key was not found in any active activation context.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_TUNNEL_FILTER_NOT_FOUND: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_TUNNEL_FILTER_NOT_FOUND)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_TUNNEL_FILTER_NOT_FOUND"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_MM_FILTER_PENDING_DELETION">
            <summary>
             The Main Mode filter is pending deletion.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_MM_FILTER_PENDING_DELETION: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_MM_FILTER_PENDING_DELETION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_MM_FILTER_PENDING_DELETION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_TRANSPORT_FILTER_PENDING_DELETION">
            <summary>
             The transport filter is pending deletion.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_TRANSPORT_FILTER_PENDING_DELETION: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_TRANSPORT_FILTER_PENDING_DELETION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_TRANSPORT_FILTER_PENDING_DELETION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_TUNNEL_FILTER_PENDING_DELETION">
            <summary>
             The tunnel filter is pending deletion.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_TUNNEL_FILTER_PENDING_DELETION: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_TUNNEL_FILTER_PENDING_DELETION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_TUNNEL_FILTER_PENDING_DELETION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_MM_POLICY_PENDING_DELETION">
            <summary>
             The Main Mode policy is pending deletion.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_MM_POLICY_PENDING_DELETION: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_MM_POLICY_PENDING_DELETION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_MM_POLICY_PENDING_DELETION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_MM_AUTH_PENDING_DELETION">
            <summary>
             The Main Mode authentication bundle is pending deletion.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_MM_AUTH_PENDING_DELETION: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_MM_AUTH_PENDING_DELETION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_MM_AUTH_PENDING_DELETION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_QM_POLICY_PENDING_DELETION">
            <summary>
             The Quick Mode policy is pending deletion.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_QM_POLICY_PENDING_DELETION: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_QM_POLICY_PENDING_DELETION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_QM_POLICY_PENDING_DELETION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WARNING_IPSEC_MM_POLICY_PRUNED">
            <summary>
             The Main Mode policy was successfully added, but some of the requested offers are not supported.
            </summary>
            <remarks>An HRESULT from Windows error code WARNING_IPSEC_MM_POLICY_PRUNED: <c>HRESULT_FROM_WIN32(WARNING_IPSEC_MM_POLICY_PRUNED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WARNING_IPSEC_MM_POLICY_PRUNED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_WARNING_IPSEC_QM_POLICY_PRUNED">
            <summary>
             The Quick Mode policy was successfully added, but some of the requested offers are not supported.
            </summary>
            <remarks>An HRESULT from Windows error code WARNING_IPSEC_QM_POLICY_PRUNED: <c>HRESULT_FROM_WIN32(WARNING_IPSEC_QM_POLICY_PRUNED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.WARNING_IPSEC_QM_POLICY_PRUNED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_NEG_STATUS_BEGIN">
            <summary>
             ERROR_IPSEC_IKE_NEG_STATUS_BEGIN
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_NEG_STATUS_BEGIN: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_NEG_STATUS_BEGIN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_NEG_STATUS_BEGIN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_AUTH_FAIL">
            <summary>
             IKE authentication credentials are unacceptable
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_AUTH_FAIL: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_AUTH_FAIL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_AUTH_FAIL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_ATTRIB_FAIL">
            <summary>
             IKE security attributes are unacceptable
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_ATTRIB_FAIL: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_ATTRIB_FAIL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_ATTRIB_FAIL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_NEGOTIATION_PENDING">
            <summary>
             IKE Negotiation in progress
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_NEGOTIATION_PENDING: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_NEGOTIATION_PENDING)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_NEGOTIATION_PENDING"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_GENERAL_PROCESSING_ERROR">
            <summary>
             General processing error
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_GENERAL_PROCESSING_ERROR: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_GENERAL_PROCESSING_ERROR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_GENERAL_PROCESSING_ERROR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_TIMED_OUT">
            <summary>
             Negotiation timed out
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_TIMED_OUT: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_TIMED_OUT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_TIMED_OUT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_NO_CERT">
            <summary>
             IKE failed to find valid machine certificate
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_NO_CERT: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_NO_CERT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_NO_CERT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_SA_DELETED">
            <summary>
             IKE SA deleted by peer before establishment completed
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_SA_DELETED: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_SA_DELETED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_SA_DELETED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_SA_REAPED">
            <summary>
             IKE SA deleted before establishment completed
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_SA_REAPED: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_SA_REAPED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_SA_REAPED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_MM_ACQUIRE_DROP">
            <summary>
             Negotiation request sat in Queue too long
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_MM_ACQUIRE_DROP: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_MM_ACQUIRE_DROP)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_MM_ACQUIRE_DROP"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_QM_ACQUIRE_DROP">
            <summary>
             Negotiation request sat in Queue too long
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_QM_ACQUIRE_DROP: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_QM_ACQUIRE_DROP)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_QM_ACQUIRE_DROP"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_QUEUE_DROP_MM">
            <summary>
             Negotiation request sat in Queue too long
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_QUEUE_DROP_MM: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_QUEUE_DROP_MM)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_QUEUE_DROP_MM"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_QUEUE_DROP_NO_MM">
            <summary>
             Negotiation request sat in Queue too long
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_QUEUE_DROP_NO_MM: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_QUEUE_DROP_NO_MM)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_QUEUE_DROP_NO_MM"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_DROP_NO_RESPONSE">
            <summary>
             No response from peer
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_DROP_NO_RESPONSE: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_DROP_NO_RESPONSE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_DROP_NO_RESPONSE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_MM_DELAY_DROP">
            <summary>
             Negotiation took too long
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_MM_DELAY_DROP: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_MM_DELAY_DROP)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_MM_DELAY_DROP"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_QM_DELAY_DROP">
            <summary>
             Negotiation took too long
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_QM_DELAY_DROP: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_QM_DELAY_DROP)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_QM_DELAY_DROP"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_ERROR">
            <summary>
             Unknown error occurred
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_ERROR: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_ERROR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_ERROR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_CRL_FAILED">
            <summary>
             Certificate Revocation Check failed
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_CRL_FAILED: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_CRL_FAILED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_CRL_FAILED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_INVALID_KEY_USAGE">
            <summary>
             Invalid certificate key usage
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_INVALID_KEY_USAGE: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_INVALID_KEY_USAGE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_INVALID_KEY_USAGE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_INVALID_CERT_TYPE">
            <summary>
             Invalid certificate type
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_INVALID_CERT_TYPE: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_INVALID_CERT_TYPE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_INVALID_CERT_TYPE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_NO_PRIVATE_KEY">
            <summary>
             No private key associated with machine certificate
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_NO_PRIVATE_KEY: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_NO_PRIVATE_KEY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_NO_PRIVATE_KEY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_DH_FAIL">
            <summary>
             Failure in Diffie-Helman computation
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_DH_FAIL: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_DH_FAIL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_DH_FAIL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_INVALID_HEADER">
            <summary>
             Invalid header
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_INVALID_HEADER: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_INVALID_HEADER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_INVALID_HEADER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_NO_POLICY">
            <summary>
             No policy configured
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_NO_POLICY: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_NO_POLICY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_NO_POLICY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_INVALID_SIGNATURE">
            <summary>
             Failed to verify signature
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_INVALID_SIGNATURE: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_INVALID_SIGNATURE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_INVALID_SIGNATURE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_KERBEROS_ERROR">
            <summary>
             Failed to authenticate using kerberos
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_KERBEROS_ERROR: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_KERBEROS_ERROR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_KERBEROS_ERROR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_NO_PUBLIC_KEY">
            <summary>
             Peer's certificate did not have a public key
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_NO_PUBLIC_KEY: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_NO_PUBLIC_KEY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_NO_PUBLIC_KEY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_PROCESS_ERR">
            <summary>
             Error processing error payload
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_PROCESS_ERR: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_PROCESS_ERR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_PROCESS_ERR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_PROCESS_ERR_SA">
            <summary>
             Error processing SA payload
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_PROCESS_ERR_SA: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_PROCESS_ERR_SA)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_PROCESS_ERR_SA"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_PROCESS_ERR_PROP">
            <summary>
             Error processing Proposal payload
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_PROCESS_ERR_PROP: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_PROCESS_ERR_PROP)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_PROCESS_ERR_PROP"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_PROCESS_ERR_TRANS">
            <summary>
             Error processing Transform payload
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_PROCESS_ERR_TRANS: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_PROCESS_ERR_TRANS)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_PROCESS_ERR_TRANS"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_PROCESS_ERR_KE">
            <summary>
             Error processing KE payload
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_PROCESS_ERR_KE: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_PROCESS_ERR_KE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_PROCESS_ERR_KE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_PROCESS_ERR_ID">
            <summary>
             Error processing ID payload
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_PROCESS_ERR_ID: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_PROCESS_ERR_ID)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_PROCESS_ERR_ID"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_PROCESS_ERR_CERT">
            <summary>
             Error processing Cert payload
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_PROCESS_ERR_CERT: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_PROCESS_ERR_CERT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_PROCESS_ERR_CERT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_PROCESS_ERR_CERT_REQ">
            <summary>
             Error processing Certificate Request payload
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_PROCESS_ERR_CERT_REQ: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_PROCESS_ERR_CERT_REQ)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_PROCESS_ERR_CERT_REQ"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_PROCESS_ERR_HASH">
            <summary>
             Error processing Hash payload
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_PROCESS_ERR_HASH: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_PROCESS_ERR_HASH)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_PROCESS_ERR_HASH"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_PROCESS_ERR_SIG">
            <summary>
             Error processing Signature payload
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_PROCESS_ERR_SIG: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_PROCESS_ERR_SIG)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_PROCESS_ERR_SIG"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_PROCESS_ERR_NONCE">
            <summary>
             Error processing Nonce payload
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_PROCESS_ERR_NONCE: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_PROCESS_ERR_NONCE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_PROCESS_ERR_NONCE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_PROCESS_ERR_NOTIFY">
            <summary>
             Error processing Notify payload
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_PROCESS_ERR_NOTIFY: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_PROCESS_ERR_NOTIFY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_PROCESS_ERR_NOTIFY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_PROCESS_ERR_DELETE">
            <summary>
             Error processing Delete Payload
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_PROCESS_ERR_DELETE: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_PROCESS_ERR_DELETE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_PROCESS_ERR_DELETE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_PROCESS_ERR_VENDOR">
            <summary>
             Error processing VendorId payload
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_PROCESS_ERR_VENDOR: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_PROCESS_ERR_VENDOR)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_PROCESS_ERR_VENDOR"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_INVALID_PAYLOAD">
            <summary>
             Invalid payload received
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_INVALID_PAYLOAD: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_INVALID_PAYLOAD)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_INVALID_PAYLOAD"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_LOAD_SOFT_SA">
            <summary>
             Soft SA loaded
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_LOAD_SOFT_SA: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_LOAD_SOFT_SA)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_LOAD_SOFT_SA"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_SOFT_SA_TORN_DOWN">
            <summary>
             Soft SA torn down
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_SOFT_SA_TORN_DOWN: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_SOFT_SA_TORN_DOWN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_SOFT_SA_TORN_DOWN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_INVALID_COOKIE">
            <summary>
             Invalid cookie received.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_INVALID_COOKIE: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_INVALID_COOKIE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_INVALID_COOKIE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_NO_PEER_CERT">
            <summary>
             Peer failed to send valid machine certificate
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_NO_PEER_CERT: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_NO_PEER_CERT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_NO_PEER_CERT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_PEER_CRL_FAILED">
            <summary>
             Certification Revocation check of peer's certificate failed
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_PEER_CRL_FAILED: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_PEER_CRL_FAILED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_PEER_CRL_FAILED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_POLICY_CHANGE">
            <summary>
             New policy invalidated SAs formed with old policy
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_POLICY_CHANGE: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_POLICY_CHANGE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_POLICY_CHANGE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_NO_MM_POLICY">
            <summary>
             There is no available Main Mode IKE policy.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_NO_MM_POLICY: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_NO_MM_POLICY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_NO_MM_POLICY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_NOTCBPRIV">
            <summary>
             Failed to enabled TCB privilege.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_NOTCBPRIV: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_NOTCBPRIV)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_NOTCBPRIV"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_SECLOADFAIL">
            <summary>
             Failed to load SECURITY.DLL.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_SECLOADFAIL: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_SECLOADFAIL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_SECLOADFAIL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_FAILSSPINIT">
            <summary>
             Failed to obtain security function table dispatch address from SSPI.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_FAILSSPINIT: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_FAILSSPINIT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_FAILSSPINIT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_FAILQUERYSSP">
            <summary>
             Failed to query Kerberos package to obtain max token size.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_FAILQUERYSSP: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_FAILQUERYSSP)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_FAILQUERYSSP"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_SRVACQFAIL">
            <summary>
             Failed to obtain Kerberos server credentials for ISAKMP/ERROR_IPSEC_IKE service.  Kerberos authentication will not function.  The most likely reason for this is lack of domain membership.  This is normal if your computer is a member of a workgroup.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_SRVACQFAIL: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_SRVACQFAIL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_SRVACQFAIL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_SRVQUERYCRED">
            <summary>
             Failed to determine SSPI principal name for ISAKMP/ERROR_IPSEC_IKE service (QueryCredentialsAttributes).
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_SRVQUERYCRED: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_SRVQUERYCRED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_SRVQUERYCRED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_GETSPIFAIL">
            <summary>
             Failed to obtain new SPI for the inbound SA from Ipsec driver.  The most common cause for this is that the driver does not have the correct filter.  Check your policy to verify the filters.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_GETSPIFAIL: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_GETSPIFAIL)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_GETSPIFAIL"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_INVALID_FILTER">
            <summary>
             Given filter is invalid
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_INVALID_FILTER: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_INVALID_FILTER)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_INVALID_FILTER"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_OUT_OF_MEMORY">
            <summary>
             Memory allocation failed.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_OUT_OF_MEMORY: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_OUT_OF_MEMORY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_OUT_OF_MEMORY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_ADD_UPDATE_KEY_FAILED">
            <summary>
             Failed to add Security Association to IPSec Driver.  The most common cause for this is if the IKE negotiation took too long to complete.  If the problem persists, reduce the load on the faulting machine.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_ADD_UPDATE_KEY_FAILED: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_ADD_UPDATE_KEY_FAILED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_ADD_UPDATE_KEY_FAILED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_INVALID_POLICY">
            <summary>
             Invalid policy
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_INVALID_POLICY: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_INVALID_POLICY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_INVALID_POLICY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_UNKNOWN_DOI">
            <summary>
             Invalid DOI
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_UNKNOWN_DOI: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_UNKNOWN_DOI)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_UNKNOWN_DOI"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_INVALID_SITUATION">
            <summary>
             Invalid situation
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_INVALID_SITUATION: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_INVALID_SITUATION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_INVALID_SITUATION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_DH_FAILURE">
            <summary>
             Diffie-Hellman failure
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_DH_FAILURE: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_DH_FAILURE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_DH_FAILURE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_INVALID_GROUP">
            <summary>
             Invalid Diffie-Hellman group
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_INVALID_GROUP: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_INVALID_GROUP)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_INVALID_GROUP"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_ENCRYPT">
            <summary>
             Error encrypting payload
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_ENCRYPT: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_ENCRYPT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_ENCRYPT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_DECRYPT">
            <summary>
             Error decrypting payload
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_DECRYPT: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_DECRYPT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_DECRYPT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_POLICY_MATCH">
            <summary>
             Policy match error
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_POLICY_MATCH: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_POLICY_MATCH)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_POLICY_MATCH"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_UNSUPPORTED_ID">
            <summary>
             Unsupported ID
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_UNSUPPORTED_ID: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_UNSUPPORTED_ID)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_UNSUPPORTED_ID"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_INVALID_HASH">
            <summary>
             Hash verification failed
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_INVALID_HASH: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_INVALID_HASH)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_INVALID_HASH"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_INVALID_HASH_ALG">
            <summary>
             Invalid hash algorithm
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_INVALID_HASH_ALG: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_INVALID_HASH_ALG)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_INVALID_HASH_ALG"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_INVALID_HASH_SIZE">
            <summary>
             Invalid hash size
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_INVALID_HASH_SIZE: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_INVALID_HASH_SIZE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_INVALID_HASH_SIZE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_INVALID_ENCRYPT_ALG">
            <summary>
             Invalid encryption algorithm
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_INVALID_ENCRYPT_ALG: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_INVALID_ENCRYPT_ALG)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_INVALID_ENCRYPT_ALG"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_INVALID_AUTH_ALG">
            <summary>
             Invalid authentication algorithm
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_INVALID_AUTH_ALG: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_INVALID_AUTH_ALG)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_INVALID_AUTH_ALG"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_INVALID_SIG">
            <summary>
             Invalid certificate signature
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_INVALID_SIG: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_INVALID_SIG)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_INVALID_SIG"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_LOAD_FAILED">
            <summary>
             Load failed
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_LOAD_FAILED: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_LOAD_FAILED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_LOAD_FAILED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_RPC_DELETE">
            <summary>
             Deleted via RPC call
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_RPC_DELETE: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_RPC_DELETE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_RPC_DELETE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_BENIGN_REINIT">
            <summary>
             Temporary state created to perform reinit. This is not a real failure.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_BENIGN_REINIT: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_BENIGN_REINIT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_BENIGN_REINIT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_INVALID_RESPONDER_LIFETIME_NOTIFY">
            <summary>
             The lifetime value received in the Responder Lifetime Notify is below the Windows 2000 configured minimum value.  Please fix the policy on the peer machine.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_INVALID_RESPONDER_LIFETIME_NOTIFY: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_INVALID_RESPONDER_LIFETIME_NOTIFY)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_INVALID_RESPONDER_LIFETIME_NOTIFY"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_INVALID_CERT_KEYLEN">
            <summary>
             Key length in certificate is too small for configured security requirements.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_INVALID_CERT_KEYLEN: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_INVALID_CERT_KEYLEN)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_INVALID_CERT_KEYLEN"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_MM_LIMIT">
            <summary>
             Max number of established MM SAs to peer exceeded.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_MM_LIMIT: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_MM_LIMIT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_MM_LIMIT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_NEGOTIATION_DISABLED">
            <summary>
             IKE received a policy that disables negotiation.
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_NEGOTIATION_DISABLED: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_NEGOTIATION_DISABLED)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_NEGOTIATION_DISABLED"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_ERROR_IPSEC_IKE_NEG_STATUS_END">
            <summary>
             ERROR_IPSEC_IKE_NEG_STATUS_END
            </summary>
            <remarks>An HRESULT from Windows error code ERROR_IPSEC_IKE_NEG_STATUS_END: <c>HRESULT_FROM_WIN32(ERROR_IPSEC_IKE_NEG_STATUS_END)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_NEG_STATUS_END"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_APPMODEL_ERROR_NO_PACKAGE">
            <summary>
            The process has no package identity.
            </summary>
            <remarks>An HRESULT from Windows error code APPMODEL_ERROR_NO_PACKAGE: <c>HRESULT_FROM_WIN32(APPMODEL_ERROR_NO_PACKAGE)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.APPMODEL_ERROR_NO_PACKAGE"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_APPMODEL_ERROR_PACKAGE_RUNTIME_CORRUPT">
            <summary>
            The package runtime information is corrupted.
            </summary>
            <remarks>An HRESULT from Windows error code APPMODEL_ERROR_PACKAGE_RUNTIME_CORRUPT: <c>HRESULT_FROM_WIN32(APPMODEL_ERROR_PACKAGE_RUNTIME_CORRUPT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.APPMODEL_ERROR_PACKAGE_RUNTIME_CORRUPT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_APPMODEL_ERROR_PACKAGE_IDENTITY_CORRUPT">
            <summary>
            The package identity is corrupted.
            </summary>
            <remarks>An HRESULT from Windows error code APPMODEL_ERROR_PACKAGE_IDENTITY_CORRUPT: <c>HRESULT_FROM_WIN32(APPMODEL_ERROR_PACKAGE_IDENTITY_CORRUPT)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.APPMODEL_ERROR_PACKAGE_IDENTITY_CORRUPT"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.WIN32_APPMODEL_ERROR_NO_APPLICATION">
            <summary>
            The process has no application identity.
            </summary>
            <remarks>An HRESULT from Windows error code APPMODEL_ERROR_NO_APPLICATION: <c>HRESULT_FROM_WIN32(APPMODEL_ERROR_NO_APPLICATION)</c>.</remarks>
            <seealso cref="F:JetBrains.Interop.WinApi.WinError.APPMODEL_ERROR_NO_APPLICATION"/>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_UNSUCCESSFUL">
            <summary>{Operation Failed}
            The requested operation was unsuccessful.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NOT_IMPLEMENTED">
            <summary>{Not Implemented}
            The requested operation is not implemented.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_INFO_CLASS">
            <summary>{Invalid Parameter}
            The specified information class is not a valid information class for the specified object.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INFO_LENGTH_MISMATCH">
            <summary>The specified information record length does not match the length required for the specified information class.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ACCESS_VIOLATION">
            <summary>The instruction at 0x%p referenced memory at 0x%p. The memory could not be %s.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_IN_PAGE_ERROR">
            <summary>The instruction at 0x%p referenced memory at 0x%p. The required data was not placed into memory because of an I/O error status of 0x%x.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PAGEFILE_QUOTA">
            <summary>The pagefile quota for the process has been exhausted.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_HANDLE">
            <summary>An invalid HANDLE was specified.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BAD_INITIAL_STACK">
            <summary>An invalid initial stack was specified in a call to NtCreateThread.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BAD_INITIAL_PC">
            <summary>An invalid initial start address was specified in a call to NtCreateThread.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_CID">
            <summary>An invalid Client ID was specified.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TIMER_NOT_CANCELED">
            <summary>An attempt was made to cancel or set a timer that has an associated APC and the subject thread is not the thread that originally set the timer with an associated APC routine.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_PARAMETER">
            <summary>An invalid parameter was passed to a service or function.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NO_SUCH_DEVICE">
            <summary>A device which does not exist was specified.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NO_SUCH_FILE">
            <summary>{File Not Found}
            The file %hs does not exist.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_DEVICE_REQUEST">
            <summary>The specified request is not a valid operation for the target device.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_END_OF_FILE">
            <summary>The end-of-file marker has been reached. There is no valid data in the file beyond this marker.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_WRONG_VOLUME">
            <summary>{Wrong Volume}
            The wrong volume is in the drive.
            Please insert volume %hs into drive %hs.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NO_MEDIA_IN_DEVICE">
            <summary>{No Disk}
            There is no disk in the drive.
            Please insert a disk into drive %hs.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_UNRECOGNIZED_MEDIA">
            <summary>{Unknown Disk Format}
            The disk in drive %hs is not formatted properly.
            Please check the disk, and reformat if necessary.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NONEXISTENT_SECTOR">
            <summary>{Sector Not Found}
            The specified sector does not exist.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_MORE_PROCESSING_REQUIRED">
            <summary>{Still Busy}
            The specified I/O request packet (IRP) cannot be disposed of because the I/O operation is not complete.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NO_MEMORY">
            <summary>{Not Enough Quota}
            Not enough virtual memory or paging file quota is available to complete the specified operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CONFLICTING_ADDRESSES">
            <summary>{Conflicting Address Range}
            The specified address range conflicts with the address space.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NOT_MAPPED_VIEW">
            <summary>Address range to unmap is not a mapped view.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_UNABLE_TO_FREE_VM">
            <summary>Virtual memory cannot be freed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_UNABLE_TO_DELETE_SECTION">
            <summary>Specified section cannot be deleted.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_SYSTEM_SERVICE">
            <summary>An invalid system service was specified in a system service call.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ILLEGAL_INSTRUCTION">
            <summary>{EXCEPTION}
            Illegal Instruction
            An attempt was made to execute an illegal instruction.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_LOCK_SEQUENCE">
            <summary>{Invalid Lock Sequence}
            An attempt was made to execute an invalid lock sequence.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_VIEW_SIZE">
            <summary>{Invalid Mapping}
            An attempt was made to create a view for a section which is bigger than the section.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_FILE_FOR_SECTION">
            <summary>{Bad File}
            The attributes of the specified mapping file for a section of memory cannot be read.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ALREADY_COMMITTED">
            <summary>{Already Committed}
            The specified address range is already committed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ACCESS_DENIED">
            <summary>{Access Denied}
            A process has requested access to an object, but has not been granted those access rights.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BUFFER_TOO_SMALL">
            <summary>{Buffer Too Small}
            The buffer is too small to contain the entry. No information has been written to the buffer.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_OBJECT_TYPE_MISMATCH">
            <summary>{Wrong Type}
            There is a mismatch between the type of object required by the requested operation and the type of object that is specified in the request.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NONCONTINUABLE_EXCEPTION">
            <summary>{EXCEPTION}
            Cannot Continue
            Windows cannot continue from this exception.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_DISPOSITION">
            <summary>An invalid exception disposition was returned by an exception handler.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_UNWIND">
            <summary>Unwind exception code.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BAD_STACK">
            <summary>An invalid or unaligned stack was encountered during an unwind operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_UNWIND_TARGET">
            <summary>An invalid unwind target was encountered during an unwind operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NOT_LOCKED">
            <summary>An attempt was made to unlock a page of memory which was not locked.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PARITY_ERROR">
            <summary>Device parity error on I/O operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_UNABLE_TO_DECOMMIT_VM">
            <summary>An attempt was made to decommit uncommitted virtual memory.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NOT_COMMITTED">
            <summary>An attempt was made to change the attributes on memory that has not been committed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_PORT_ATTRIBUTES">
            <summary>Invalid Object Attributes specified to NtCreatePort or invalid Port Attributes specified to NtConnectPort</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PORT_MESSAGE_TOO_LONG">
            <summary>Length of message passed to NtRequestPort or NtRequestWaitReplyPort was longer than the maximum message allowed by the port.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_PARAMETER_MIX">
            <summary>An invalid combination of parameters was specified.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_QUOTA_LOWER">
            <summary>An attempt was made to lower a quota limit below the current usage.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DISK_CORRUPT_ERROR">
            <summary>{Corrupt Disk}
            The file system structure on the disk is corrupt and unusable.
            Please run the Chkdsk utility on the volume %hs.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_OBJECT_NAME_INVALID">
            <summary>Object Name invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_OBJECT_NAME_NOT_FOUND">
            <summary>Object Name not found.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_OBJECT_NAME_COLLISION">
            <summary>Object Name already exists.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PORT_DO_NOT_DISTURB">
            <summary>A port with the 'do not disturb' flag set attempted to send a message to a port in a suspended process.
            The process was not woken, and the message was not delivered.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PORT_DISCONNECTED">
            <summary>Attempt to send a message to a disconnected communication port.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DEVICE_ALREADY_ATTACHED">
            <summary>An attempt was made to attach to a device that was already attached to another device.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_OBJECT_PATH_INVALID">
            <summary>Object Path Component was not a directory object.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_OBJECT_PATH_NOT_FOUND">
            <summary>{Path Not Found}
            The path %hs does not exist.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_OBJECT_PATH_SYNTAX_BAD">
            <summary>Object Path Component was not a directory object.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DATA_OVERRUN">
            <summary>{Data Overrun}
            A data overrun error occurred.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DATA_LATE_ERROR">
            <summary>{Data Late}
            A data late error occurred.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DATA_ERROR">
            <summary>{Data Error}
            An error in reading or writing data occurred.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CRC_ERROR">
            <summary>{Bad CRC}
            A cyclic redundancy check (CRC) checksum error occurred.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SECTION_TOO_BIG">
            <summary>{Section Too Large}
            The specified section is too big to map the file.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PORT_CONNECTION_REFUSED">
            <summary>The NtConnectPort request is refused.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_PORT_HANDLE">
            <summary>The type of port handle is invalid for the operation requested.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SHARING_VIOLATION">
            <summary>A file cannot be opened because the share access flags are incompatible.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_QUOTA_EXCEEDED">
            <summary>Insufficient quota exists to complete the operation</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_PAGE_PROTECTION">
            <summary>The specified page protection was not valid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_MUTANT_NOT_OWNED">
            <summary>An attempt to release a mutant object was made by a thread that was not the owner of the mutant object.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SEMAPHORE_LIMIT_EXCEEDED">
            <summary>An attempt was made to release a semaphore such that its maximum count would have been exceeded.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PORT_ALREADY_SET">
            <summary>An attempt to set a process's DebugPort or ExceptionPort was made, but a port already exists in the process or an attempt to set a file's CompletionPort made, but a port was already set in the file or an attempt to set an ALPC port's associated completion port was made, but it is already set.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SECTION_NOT_IMAGE">
            <summary>An attempt was made to query image information on a section which does not map an image.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SUSPEND_COUNT_EXCEEDED">
            <summary>An attempt was made to suspend a thread whose suspend count was at its maximum.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_THREAD_IS_TERMINATING">
            <summary>An attempt was made to access a thread that has begun termination.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BAD_WORKING_SET_LIMIT">
            <summary>An attempt was made to set the working set limit to an invalid value (minimum greater than maximum, etc).</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INCOMPATIBLE_FILE_MAP">
            <summary>A section was created to map a file which is not compatible to an already existing section which maps the same file.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SECTION_PROTECTION">
            <summary>A view to a section specifies a protection which is incompatible with the initial view's protection.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_EAS_NOT_SUPPORTED">
            <summary>An operation involving EAs failed because the file system does not support EAs.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_EA_TOO_LARGE">
            <summary>An EA operation failed because EA set is too large.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NONEXISTENT_EA_ENTRY">
            <summary>An EA operation failed because the name or EA index is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NO_EAS_ON_FILE">
            <summary>The file for which EAs were requested has no EAs.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_EA_CORRUPT_ERROR">
            <summary>The EA is corrupt and non-readable.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FILE_LOCK_CONFLICT">
            <summary>A requested read/write cannot be granted due to a conflicting file lock.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOCK_NOT_GRANTED">
            <summary>A requested file lock cannot be granted due to other existing locks.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DELETE_PENDING">
            <summary>A non close operation has been requested of a file object with a delete pending.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CTL_FILE_NOT_SUPPORTED">
            <summary>An attempt was made to set the control attribute on a file. This attribute is not supported in the target file system.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_UNKNOWN_REVISION">
            <summary>Indicates a revision number encountered or specified is not one known by the service. It may be a more recent revision than the service is aware of.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_REVISION_MISMATCH">
            <summary>Indicates two revision levels are incompatible.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_OWNER">
            <summary>Indicates a particular Security ID may not be assigned as the owner of an object.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_PRIMARY_GROUP">
            <summary>Indicates a particular Security ID may not be assigned as the primary group of an object.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NO_IMPERSONATION_TOKEN">
            <summary>An attempt has been made to operate on an impersonation token by a thread that is not currently impersonating a client.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CANT_DISABLE_MANDATORY">
            <summary>A mandatory group may not be disabled.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NO_LOGON_SERVERS">
            <summary>We can't sign you in with this credential because your domain isn't available. Make sure your device is connected to your organization's network and try again. If you previously signed in on this device with another credential, you can sign in with that credential.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NO_SUCH_LOGON_SESSION">
            <summary>A specified logon session does not exist. It may already have been terminated.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NO_SUCH_PRIVILEGE">
            <summary>A specified privilege does not exist.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PRIVILEGE_NOT_HELD">
            <summary>A required privilege is not held by the client.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_ACCOUNT_NAME">
            <summary>The name provided is not a properly formed account name.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_USER_EXISTS">
            <summary>The specified account already exists.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NO_SUCH_USER">
            <summary>The specified account does not exist.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GROUP_EXISTS">
            <summary>The specified group already exists.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NO_SUCH_GROUP">
            <summary>The specified group does not exist.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_MEMBER_IN_GROUP">
            <summary>The specified user account is already in the specified group account. Also used to indicate a group cannot be deleted because it contains a member.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_MEMBER_NOT_IN_GROUP">
            <summary>The specified user account is not a member of the specified group account.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LAST_ADMIN">
            <summary>Indicates the requested operation would disable, delete or could prevent logon for an administration account.
            This is not allowed to prevent creating a situation in which the system cannot be administrated.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_WRONG_PASSWORD">
            <summary>When trying to update a password, this return status indicates that the value provided as the current password is not correct.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ILL_FORMED_PASSWORD">
            <summary>When trying to update a password, this return status indicates that the value provided for the new password contains values that are not allowed in passwords.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PASSWORD_RESTRICTION">
            <summary>When trying to update a password, this status indicates that some password update rule has been violated. For example, the password may not meet length criteria.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOGON_FAILURE">
            <summary>The attempted logon is invalid. This is either due to a bad username or authentication information.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ACCOUNT_RESTRICTION">
            <summary>Indicates a referenced user name and authentication information are valid, but some user account restriction has prevented successful authentication (such as time-of-day restrictions).</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_LOGON_HOURS">
            <summary>The user account has time restrictions and may not be logged onto at this time.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_WORKSTATION">
            <summary>The user account is restricted such that it may not be used to log on from the source workstation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PASSWORD_EXPIRED">
            <summary>The user account's password has expired.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ACCOUNT_DISABLED">
            <summary>The referenced account is currently disabled and may not be logged on to.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NONE_MAPPED">
            <summary>None of the information to be translated has been translated.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TOO_MANY_LUIDS_REQUESTED">
            <summary>The number of LUIDs requested may not be allocated with a single allocation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LUIDS_EXHAUSTED">
            <summary>Indicates there are no more LUIDs to allocate.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_SUB_AUTHORITY">
            <summary>Indicates the sub-authority value is invalid for the particular use.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_ACL">
            <summary>Indicates the ACL structure is not valid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_SID">
            <summary>Indicates the SID structure is not valid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_SECURITY_DESCR">
            <summary>Indicates the SECURITY_DESCRIPTOR structure is not valid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PROCEDURE_NOT_FOUND">
            <summary>Indicates the specified procedure address cannot be found in the DLL.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_IMAGE_FORMAT">
            <summary>{Bad Image}
            %hs is either not designed to run on Windows or it contains an error. Try installing the program again using the original installation media or contact your system administrator or the software vendor for support. Error status 0x%08lx.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NO_TOKEN">
            <summary>An attempt was made to reference a token that doesn't exist.
            This is typically done by referencing the token associated with a thread when the thread is not impersonating a client.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BAD_INHERITANCE_ACL">
            <summary>Indicates that an attempt to build either an inherited ACL or ACE was not successful.
            This can be caused by a number of things. One of the more probable causes is the replacement of a CreatorId with an SID that didn't fit into the ACE or ACL.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_RANGE_NOT_LOCKED">
            <summary>The range specified in NtUnlockFile was not locked.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DISK_FULL">
            <summary>An operation failed because the disk was full.
            If this is a thinly provisioned volume the physical storage backing this volume has been exhausted.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SERVER_DISABLED">
            <summary>The GUID allocation server is [already] disabled at the moment.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SERVER_NOT_DISABLED">
            <summary>The GUID allocation server is [already] enabled at the moment.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TOO_MANY_GUIDS_REQUESTED">
            <summary>Too many GUIDs were requested from the allocation server at once.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GUIDS_EXHAUSTED">
            <summary>The GUIDs could not be allocated because the Authority Agent was exhausted.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_ID_AUTHORITY">
            <summary>The value provided was an invalid value for an identifier authority.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_AGENTS_EXHAUSTED">
            <summary>There are no more authority agent values available for the given identifier authority value.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_VOLUME_LABEL">
            <summary>An invalid volume label has been specified.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SECTION_NOT_EXTENDED">
            <summary>A mapped section could not be extended.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NOT_MAPPED_DATA">
            <summary>Specified section to flush does not map a data file.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_RESOURCE_DATA_NOT_FOUND">
            <summary>Indicates the specified image file did not contain a resource section.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_RESOURCE_TYPE_NOT_FOUND">
            <summary>Indicates the specified resource type cannot be found in the image file.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_RESOURCE_NAME_NOT_FOUND">
            <summary>Indicates the specified resource name cannot be found in the image file.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ARRAY_BOUNDS_EXCEEDED">
            <summary>{EXCEPTION}
            Array bounds exceeded.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FLOAT_DENORMAL_OPERAND">
            <summary>{EXCEPTION}
            Floating-point denormal operand.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FLOAT_DIVIDE_BY_ZERO">
            <summary>{EXCEPTION}
            Floating-point division by zero.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FLOAT_INEXACT_RESULT">
            <summary>{EXCEPTION}
            Floating-point inexact result.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FLOAT_INVALID_OPERATION">
            <summary>{EXCEPTION}
            Floating-point invalid operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FLOAT_OVERFLOW">
            <summary>{EXCEPTION}
            Floating-point overflow.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FLOAT_STACK_CHECK">
            <summary>{EXCEPTION}
            Floating-point stack check.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FLOAT_UNDERFLOW">
            <summary>{EXCEPTION}
            Floating-point underflow.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INTEGER_DIVIDE_BY_ZERO">
            <summary>{EXCEPTION}
            Integer division by zero.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INTEGER_OVERFLOW">
            <summary>{EXCEPTION}
            Integer overflow.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PRIVILEGED_INSTRUCTION">
            <summary>{EXCEPTION}
            Privileged instruction.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TOO_MANY_PAGING_FILES">
            <summary>An attempt was made to install more paging files than the system supports.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FILE_INVALID">
            <summary>The volume for a file has been externally altered such that the opened file is no longer valid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ALLOTTED_SPACE_EXCEEDED">
            <summary>When a block of memory is allotted for future updates, such as the memory allocated to hold discretionary access control and primary group information, successive updates may exceed the amount of memory originally allotted.
            Since quota may already have been charged to several processes which have handles to the object, it is not reasonable to alter the size of the allocated memory.
            Instead, a request that requires more memory than has been allotted must fail and the STATUS_ALLOTED_SPACE_EXCEEDED error returned.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INSUFFICIENT_RESOURCES">
            <summary>Insufficient system resources exist to complete the API.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DFS_EXIT_PATH_FOUND">
            <summary>An attempt has been made to open a DFS exit path control file.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DEVICE_DATA_ERROR">
            <summary> STATUS_DEVICE_DATA_ERROR</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DEVICE_NOT_CONNECTED">
            <summary> STATUS_DEVICE_NOT_CONNECTED</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DEVICE_POWER_FAILURE">
            <summary> STATUS_DEVICE_POWER_FAILURE</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FREE_VM_NOT_AT_BASE">
            <summary>Virtual memory cannot be freed as base address is not the base of the region and a region size of zero was specified.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_MEMORY_NOT_ALLOCATED">
            <summary>An attempt was made to free virtual memory which is not allocated.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_WORKING_SET_QUOTA">
            <summary>The working set is not big enough to allow the requested pages to be locked.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_MEDIA_WRITE_PROTECTED">
            <summary>{Write Protect Error}
            The disk cannot be written to because it is write protected. Please remove the write protection from the volume %hs in drive %hs.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DEVICE_NOT_READY">
            <summary>{Drive Not Ready}
            The drive is not ready for use; its door may be open. Please check drive %hs and make sure that a disk is inserted and that the drive door is closed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_GROUP_ATTRIBUTES">
            <summary>The specified attributes are invalid, or incompatible with the attributes for the group as a whole.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BAD_IMPERSONATION_LEVEL">
            <summary>A specified impersonation level is invalid.
            Also used to indicate a required impersonation level was not provided.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CANT_OPEN_ANONYMOUS">
            <summary>An attempt was made to open an Anonymous level token.
            Anonymous tokens may not be opened.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BAD_VALIDATION_CLASS">
            <summary>The validation information class requested was invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BAD_TOKEN_TYPE">
            <summary>The type of a token object is inappropriate for its attempted use.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BAD_MASTER_BOOT_RECORD">
            <summary>The type of a token object is inappropriate for its attempted use.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INSTRUCTION_MISALIGNMENT">
            <summary>An attempt was made to execute an instruction at an unaligned address and the host system does not support unaligned instruction references.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INSTANCE_NOT_AVAILABLE">
            <summary>The maximum named pipe instance count has been reached.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PIPE_NOT_AVAILABLE">
            <summary>An instance of a named pipe cannot be found in the listening state.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_PIPE_STATE">
            <summary>The named pipe is not in the connected or closing state.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PIPE_BUSY">
            <summary>The specified pipe is set to complete operations and there are current I/O operations queued so it cannot be changed to queue operations.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ILLEGAL_FUNCTION">
            <summary>The specified handle is not open to the server end of the named pipe.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PIPE_DISCONNECTED">
            <summary>The specified named pipe is in the disconnected state.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PIPE_CLOSING">
            <summary>The specified named pipe is in the closing state.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PIPE_CONNECTED">
            <summary>The specified named pipe is in the connected state.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PIPE_LISTENING">
            <summary>The specified named pipe is in the listening state.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_READ_MODE">
            <summary>The specified named pipe is not in message mode.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_IO_TIMEOUT">
            <summary>{Device Timeout}
            The specified I/O operation on %hs was not completed before the time-out period expired.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FILE_FORCED_CLOSED">
            <summary>The specified file has been closed by another process.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PROFILING_NOT_STARTED">
            <summary>Profiling not started.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PROFILING_NOT_STOPPED">
            <summary>Profiling not stopped.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_COULD_NOT_INTERPRET">
            <summary>The passed ACL did not contain the minimum required information.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FILE_IS_A_DIRECTORY">
            <summary>The file that was specified as a target is a directory and the caller specified that it could be anything but a directory.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NOT_SUPPORTED">
            <summary>Network specific errors.
            The request is not supported.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_REMOTE_NOT_LISTENING">
            <summary>This remote computer is not listening.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DUPLICATE_NAME">
            <summary>A duplicate name exists on the network.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BAD_NETWORK_PATH">
            <summary>The network path cannot be located.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NETWORK_BUSY">
            <summary>The network is busy.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DEVICE_DOES_NOT_EXIST">
            <summary>This device does not exist.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TOO_MANY_COMMANDS">
            <summary>The network BIOS command limit has been reached.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ADAPTER_HARDWARE_ERROR">
            <summary>An I/O adapter hardware error has occurred.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_NETWORK_RESPONSE">
            <summary>The network responded incorrectly.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_UNEXPECTED_NETWORK_ERROR">
            <summary>An unexpected network error occurred.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BAD_REMOTE_ADAPTER">
            <summary>The remote adapter is not compatible.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PRINT_QUEUE_FULL">
            <summary>The printer queue is full.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NO_SPOOL_SPACE">
            <summary>Space to store the file waiting to be printed is not available on the server.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PRINT_CANCELLED">
            <summary>The requested print file has been canceled.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NETWORK_NAME_DELETED">
            <summary>The network name was deleted.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NETWORK_ACCESS_DENIED">
            <summary>Network access is denied.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BAD_DEVICE_TYPE">
            <summary>{Incorrect Network Resource Type}
            The specified device type (LPT, for example) conflicts with the actual device type on the remote resource.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BAD_NETWORK_NAME">
            <summary>{Network Name Not Found}
            The specified share name cannot be found on the remote server.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TOO_MANY_NAMES">
            <summary>The name limit for the local computer network adapter card was exceeded.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TOO_MANY_SESSIONS">
            <summary>The network BIOS session limit was exceeded.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SHARING_PAUSED">
            <summary>File sharing has been temporarily paused.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_REQUEST_NOT_ACCEPTED">
            <summary>No more connections can be made to this remote computer at this time because there are already as many connections as the computer can accept.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_REDIRECTOR_PAUSED">
            <summary>Print or disk redirection is temporarily paused.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NET_WRITE_FAULT">
            <summary>A network data fault occurred.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PROFILING_AT_LIMIT">
            <summary>The number of active profiling objects is at the maximum and no more may be started.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NOT_SAME_DEVICE">
            <summary>{Incorrect Volume}
            The target file of a rename request is located on a different device than the source of the rename request.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FILE_RENAMED">
            <summary>The file specified has been renamed and thus cannot be modified.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VIRTUAL_CIRCUIT_CLOSED">
            <summary>{Network Request Timeout}
            The session with a remote server has been disconnected because the time-out interval for a request has expired.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NO_SECURITY_ON_OBJECT">
            <summary>Indicates an attempt was made to operate on the security of an object that does not have security associated with it.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CANT_WAIT">
            <summary>Used to indicate that an operation cannot continue without blocking for I/O.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PIPE_EMPTY">
            <summary>Used to indicate that a read operation was done on an empty pipe.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CANT_ACCESS_DOMAIN_INFO">
            <summary>Configuration information could not be read from the domain controller, either because the machine is unavailable, or access has been denied.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CANT_TERMINATE_SELF">
            <summary>Indicates that a thread attempted to terminate itself by default (called NtTerminateThread with NULL) and it was the last thread in the current process.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_SERVER_STATE">
            <summary>Indicates the Sam Server was in the wrong state to perform the desired operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_DOMAIN_STATE">
            <summary>Indicates the Domain was in the wrong state to perform the desired operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_DOMAIN_ROLE">
            <summary>This operation is only allowed for the Primary Domain Controller of the domain.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NO_SUCH_DOMAIN">
            <summary>The specified Domain did not exist.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DOMAIN_EXISTS">
            <summary>The specified Domain already exists.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DOMAIN_LIMIT_EXCEEDED">
            <summary>An attempt was made to exceed the limit on the number of domains per server for this release.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_OPLOCK_NOT_GRANTED">
            <summary>Error status returned when oplock request is denied.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_OPLOCK_PROTOCOL">
            <summary>Error status returned when an invalid oplock acknowledgment is received by a file system.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INTERNAL_DB_CORRUPTION">
            <summary>This error indicates that the requested operation cannot be completed due to a catastrophic media failure or on-disk data structure corruption.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INTERNAL_ERROR">
            <summary>An internal error occurred.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GENERIC_NOT_MAPPED">
            <summary>Indicates generic access types were contained in an access mask which should already be mapped to non-generic access types.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BAD_DESCRIPTOR_FORMAT">
            <summary>Indicates a security descriptor is not in the necessary format (absolute or self-relative).</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_USER_BUFFER">
            <summary>Status codes raised by the Cache Manager which must be considered as
            "expected" by its callers.
            An access to a user buffer failed at an "expected" point in time. This code is defined since the caller does not want to accept STATUS_ACCESS_VIOLATION in its filter.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_UNEXPECTED_IO_ERROR">
            <summary>If an I/O error is returned which is not defined in the standard FsRtl filter, it is converted to the following error which is guaranteed to be in the filter. In this case information is lost, however, the filter correctly handles the exception.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_UNEXPECTED_MM_CREATE_ERR">
            <summary>If an MM error is returned which is not defined in the standard FsRtl filter, it is converted to one of the following errors which is guaranteed to be in the filter. In this case information is lost, however, the filter correctly handles the exception.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_UNEXPECTED_MM_MAP_ERROR">
            <summary>If an MM error is returned which is not defined in the standard FsRtl filter, it is converted to one of the following errors which is guaranteed to be in the filter. In this case information is lost, however, the filter correctly handles the exception.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_UNEXPECTED_MM_EXTEND_ERR">
            <summary>If an MM error is returned which is not defined in the standard FsRtl filter, it is converted to one of the following errors which is guaranteed to be in the filter. In this case information is lost, however, the filter correctly handles the exception.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NOT_LOGON_PROCESS">
            <summary>The requested action is restricted for use by logon processes only. The calling process has not registered as a logon process.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOGON_SESSION_EXISTS">
            <summary>An attempt has been made to start a new session manager or LSA logon session with an ID that is already in use.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_PARAMETER_1">
            <summary>An invalid parameter was passed to a service or function as the first argument.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_PARAMETER_2">
            <summary>An invalid parameter was passed to a service or function as the second argument.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_PARAMETER_3">
            <summary>An invalid parameter was passed to a service or function as the third argument.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_PARAMETER_4">
            <summary>An invalid parameter was passed to a service or function as the fourth argument.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_PARAMETER_5">
            <summary>An invalid parameter was passed to a service or function as the fifth argument.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_PARAMETER_6">
            <summary>An invalid parameter was passed to a service or function as the sixth argument.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_PARAMETER_7">
            <summary>An invalid parameter was passed to a service or function as the seventh argument.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_PARAMETER_8">
            <summary>An invalid parameter was passed to a service or function as the eighth argument.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_PARAMETER_9">
            <summary>An invalid parameter was passed to a service or function as the ninth argument.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_PARAMETER_10">
            <summary>An invalid parameter was passed to a service or function as the tenth argument.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_PARAMETER_11">
            <summary>An invalid parameter was passed to a service or function as the eleventh argument.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_PARAMETER_12">
            <summary>An invalid parameter was passed to a service or function as the twelfth argument.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_REDIRECTOR_NOT_STARTED">
            <summary>An attempt was made to access a network file, but the network software was not yet started.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_REDIRECTOR_STARTED">
            <summary>An attempt was made to start the redirector, but the redirector has already been started.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_STACK_OVERFLOW">
            <summary>A new guard page for the stack cannot be created.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NO_SUCH_PACKAGE">
            <summary>A specified authentication package is unknown.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BAD_FUNCTION_TABLE">
            <summary>A malformed function table was encountered during an unwind operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VARIABLE_NOT_FOUND">
            <summary>Indicates the specified environment variable name was not found in the specified environment block.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DIRECTORY_NOT_EMPTY">
            <summary>Indicates that the directory trying to be deleted is not empty.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FILE_CORRUPT_ERROR">
            <summary>{Corrupt File}
            The file or directory %hs is corrupt and unreadable.
            Please run the Chkdsk utility.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NOT_A_DIRECTORY">
            <summary>A requested opened file is not a directory.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BAD_LOGON_SESSION_STATE">
            <summary>The logon session is not in a state that is consistent with the requested operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOGON_SESSION_COLLISION">
            <summary>An internal LSA error has occurred. An authentication package has requested the creation of a Logon Session but the ID of an already existing Logon Session has been specified.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NAME_TOO_LONG">
            <summary>A specified name string is too long for its intended use.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FILES_OPEN">
            <summary>The user attempted to force close the files on a redirected drive, but there were opened files on the drive, and the user did not specify a sufficient level of force.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CONNECTION_IN_USE">
            <summary>The user attempted to force close the files on a redirected drive, but there were opened directories on the drive, and the user did not specify a sufficient level of force.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_MESSAGE_NOT_FOUND">
            <summary>RtlFindMessage could not locate the requested message ID in the message table resource.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PROCESS_IS_TERMINATING">
            <summary>An attempt was made to access an exiting process.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_LOGON_TYPE">
            <summary>Indicates an invalid value has been provided for the LogonType requested.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NO_GUID_TRANSLATION">
            <summary>Indicates that an attempt was made to assign protection to a file system file or directory and one of the SIDs in the security descriptor could not be translated into a GUID that could be stored by the file system.
            This causes the protection attempt to fail, which may cause a file creation attempt to fail.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CANNOT_IMPERSONATE">
            <summary>Indicates that an attempt has been made to impersonate via a named pipe that has not yet been read from.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_IMAGE_ALREADY_LOADED">
            <summary>Indicates that the specified image is already loaded.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ABIOS_NOT_PRESENT">
            <summary>============================================================
            NOTE: The following ABIOS error code should be reserved on
                  non ABIOS kernel. Eventually, I will remove the ifdef
                  ABIOS.
            ============================================================
             STATUS_ABIOS_NOT_PRESENT</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ABIOS_LID_NOT_EXIST">
            <summary> STATUS_ABIOS_LID_NOT_EXIST</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ABIOS_LID_ALREADY_OWNED">
            <summary> STATUS_ABIOS_LID_ALREADY_OWNED</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ABIOS_NOT_LID_OWNER">
            <summary> STATUS_ABIOS_NOT_LID_OWNER</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ABIOS_INVALID_COMMAND">
            <summary> STATUS_ABIOS_INVALID_COMMAND</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ABIOS_INVALID_LID">
            <summary> STATUS_ABIOS_INVALID_LID</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ABIOS_SELECTOR_NOT_AVAILABLE">
            <summary> STATUS_ABIOS_SELECTOR_NOT_AVAILABLE</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ABIOS_INVALID_SELECTOR">
            <summary> STATUS_ABIOS_INVALID_SELECTOR</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NO_LDT">
            <summary>Indicates that an attempt was made to change the size of the LDT for a process that has no LDT.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_LDT_SIZE">
            <summary>Indicates that an attempt was made to grow an LDT by setting its size, or that the size was not an even number of selectors.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_LDT_OFFSET">
            <summary>Indicates that the starting value for the LDT information was not an integral multiple of the selector size.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_LDT_DESCRIPTOR">
            <summary>Indicates that the user supplied an invalid descriptor when trying to set up Ldt descriptors.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_IMAGE_NE_FORMAT">
            <summary>The specified image file did not have the correct format. It appears to be NE format.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_RXACT_INVALID_STATE">
            <summary>Indicates that the transaction state of a registry sub-tree is incompatible with the requested operation. For example, a request has been made to start a new transaction with one already in progress, or a request has been made to apply a transaction when one is not currently in progress.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_RXACT_COMMIT_FAILURE">
            <summary>Indicates an error has occurred during a registry transaction commit. The database has been left in an unknown, but probably inconsistent, state. The state of the registry transaction is left as COMMITTING.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_MAPPED_FILE_SIZE_ZERO">
            <summary>An attempt was made to map a file of size zero with the maximum size specified as zero.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TOO_MANY_OPENED_FILES">
            <summary>Too many files are opened on a remote server.
            This error should only be returned by the Windows redirector on a remote drive.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CANCELLED">
            <summary>The I/O request was canceled.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CANNOT_DELETE">
            <summary>An attempt has been made to remove a file or directory that cannot be deleted.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_COMPUTER_NAME">
            <summary>Indicates a name specified as a remote computer name is syntactically invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FILE_DELETED">
            <summary>An I/O request other than close was performed on a file after it has been deleted, which can only happen to a request which did not complete before the last handle was closed via NtClose.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SPECIAL_ACCOUNT">
            <summary>Indicates an operation has been attempted on a built-in (special) SAM account which is incompatible with built-in accounts. For example, built-in accounts cannot be deleted.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SPECIAL_GROUP">
            <summary>The operation requested may not be performed on the specified group because it is a built-in special group.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SPECIAL_USER">
            <summary>The operation requested may not be performed on the specified user because it is a built-in special user.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_MEMBERS_PRIMARY_GROUP">
            <summary>Indicates a member cannot be removed from a group because the group is currently the member's primary group.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FILE_CLOSED">
            <summary>An I/O request other than close and several other special case operations was attempted using a file object that had already been closed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TOO_MANY_THREADS">
            <summary>Indicates a process has too many threads to perform the requested action. For example, assignment of a primary token may only be performed when a process has zero or one threads.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_THREAD_NOT_IN_PROCESS">
            <summary>An attempt was made to operate on a thread within a specific process, but the thread specified is not in the process specified.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TOKEN_ALREADY_IN_USE">
            <summary>An attempt was made to establish a token for use as a primary token but the token is already in use. A token can only be the primary token of one process at a time.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PAGEFILE_QUOTA_EXCEEDED">
            <summary>Page file quota was exceeded.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_COMMITMENT_LIMIT">
            <summary>{Out of Virtual Memory}
            Your system is low on virtual memory. To ensure that Windows runs properly, increase the size of your virtual memory paging file. For more information, see Help.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_IMAGE_LE_FORMAT">
            <summary>The specified image file did not have the correct format, it appears to be LE format.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_IMAGE_NOT_MZ">
            <summary>The specified image file did not have the correct format, it did not have an initial MZ.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_IMAGE_PROTECT">
            <summary>The specified image file did not have the correct format, it did not have a proper e_lfarlc in the MZ header.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_IMAGE_WIN_16">
            <summary>The specified image file did not have the correct format, it appears to be a 16-bit Windows image.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOGON_SERVER_CONFLICT">
            <summary>The Netlogon service cannot start because another Netlogon service running in the domain conflicts with the specified role.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TIME_DIFFERENCE_AT_DC">
            <summary>The time at the Primary Domain Controller is different than the time at the Backup Domain Controller or member server by too large an amount.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SYNCHRONIZATION_REQUIRED">
            <summary>The SAM database on a Windows Server is significantly out of synchronization with the copy on the Domain Controller. A complete synchronization is required.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DLL_NOT_FOUND">
            <summary>The code execution cannot proceed because %hs was not found. Reinstalling the program may fix this problem.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_OPEN_FAILED">
            <summary>The NtCreateFile API failed. This error should never be returned to an application, it is a place holder for the Windows Lan Manager Redirector to use in its internal error mapping routines.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_IO_PRIVILEGE_FAILED">
            <summary>{Privilege Failed}
            The I/O permissions for the process could not be changed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ORDINAL_NOT_FOUND">
            <summary>{Ordinal Not Found}
            The ordinal %ld could not be located in the dynamic link library %hs.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ENTRYPOINT_NOT_FOUND">
            <summary>{Entry Point Not Found}
            The procedure entry point %hs could not be located in the dynamic link library %hs.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CONTROL_C_EXIT">
            <summary>{Application Exit by CTRL+C}
            The application terminated as a result of a CTRL+C.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOCAL_DISCONNECT">
            <summary>{Virtual Circuit Closed}
            The network transport on your computer has closed a network connection. There may or may not be I/O requests outstanding.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_REMOTE_DISCONNECT">
            <summary>{Virtual Circuit Closed}
            The network transport on a remote computer has closed a network connection. There may or may not be I/O requests outstanding.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_REMOTE_RESOURCES">
            <summary>{Insufficient Resources on Remote Computer}
            The remote computer has insufficient resources to complete the network request. For instance, there may not be enough memory available on the remote computer to carry out the request at this time.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LINK_FAILED">
            <summary>{Virtual Circuit Closed}
            An existing connection (virtual circuit) has been broken at the remote computer. There is probably something wrong with the network software protocol or the network hardware on the remote computer.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LINK_TIMEOUT">
            <summary>{Virtual Circuit Closed}
            The network transport on your computer has closed a network connection because it had to wait too long for a response from the remote computer.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_CONNECTION">
            <summary>The connection handle given to the transport was invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_ADDRESS">
            <summary>The address handle given to the transport was invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DLL_INIT_FAILED">
            <summary>{DLL Initialization Failed}
            Initialization of the dynamic link library %hs failed. The process is terminating abnormally.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_MISSING_SYSTEMFILE">
            <summary>{Missing System File}
            The required system file %hs is bad or missing.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_UNHANDLED_EXCEPTION">
            <summary>{Application Error}
            The exception %s (0x%08lx) occurred in the application at location 0x%p.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_APP_INIT_FAILURE">
            <summary>{Application Error}
            The application was unable to start correctly (0x%lx). Click OK to close the application.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PAGEFILE_CREATE_FAILED">
            <summary>{Unable to Create Paging File}
            The creation of the paging file %hs failed (%lx). The requested size was %ld.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NO_PAGEFILE">
            <summary>{No Paging File Specified}
            No paging file was specified in the system configuration.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_LEVEL">
            <summary>{Incorrect System Call Level}
            An invalid level was passed into the specified system call.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_WRONG_PASSWORD_CORE">
            <summary>{Incorrect Password to LAN Manager Server}
            You specified an incorrect password to a LAN Manager 2.x or MS-NET server.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ILLEGAL_FLOAT_CONTEXT">
            <summary>{EXCEPTION}
            A real-mode application issued a floating-point instruction and floating-point hardware is not present.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PIPE_BROKEN">
            <summary>The pipe operation has failed because the other end of the pipe has been closed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_REGISTRY_CORRUPT">
            <summary>{The Registry Is Corrupt}
            The structure of one of the files that contains Registry data is corrupt, or the image of the file in memory is corrupt, or the file could not be recovered because the alternate copy or log was absent or corrupt.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_REGISTRY_IO_FAILED">
            <summary>An I/O operation initiated by the Registry failed unrecoverably. The Registry could not read in, or write out, or flush, one of the files that contain the system's image of the Registry.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NO_EVENT_PAIR">
            <summary>An event pair synchronization operation was performed using the thread specific client/server event pair object, but no event pair object was associated with the thread.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_UNRECOGNIZED_VOLUME">
            <summary>The volume does not contain a recognized file system. Please make sure that all required file system drivers are loaded and that the volume is not corrupt.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SERIAL_NO_DEVICE_INITED">
            <summary>No serial device was successfully initialized. The serial driver will unload.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NO_SUCH_ALIAS">
            <summary>The specified local group does not exist.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_MEMBER_NOT_IN_ALIAS">
            <summary>The specified account name is not a member of the group.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_MEMBER_IN_ALIAS">
            <summary>The specified account name is already a member of the group.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ALIAS_EXISTS">
            <summary>The specified local group already exists.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOGON_NOT_GRANTED">
            <summary>A requested type of logon (e.g., Interactive, Network, Service) is not granted by the target system's local security policy.
            Please ask the system administrator to grant the necessary form of logon.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TOO_MANY_SECRETS">
            <summary>The maximum number of secrets that may be stored in a single system has been exceeded. The length and number of secrets is limited to satisfy United States State Department export restrictions.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SECRET_TOO_LONG">
            <summary>The length of a secret exceeds the maximum length allowed. The length and number of secrets is limited to satisfy United States State Department export restrictions.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INTERNAL_DB_ERROR">
            <summary>The Local Security Authority (LSA) database contains an internal inconsistency.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FULLSCREEN_MODE">
            <summary>The requested operation cannot be performed in fullscreen mode.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TOO_MANY_CONTEXT_IDS">
            <summary>During a logon attempt, the user's security context accumulated too many security IDs. This is a very unusual situation. Remove the user from some global or local groups to reduce the number of security ids to incorporate into the security context.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOGON_TYPE_NOT_GRANTED">
            <summary>A user has requested a type of logon (e.g., interactive or network) that has not been granted. An administrator has control over who may logon interactively and through the network.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NOT_REGISTRY_FILE">
            <summary>The system has attempted to load or restore a file into the registry, and the specified file is not in the format of a registry file.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NT_CROSS_ENCRYPTION_REQUIRED">
            <summary>An attempt was made to change a user password in the security account manager without providing the necessary Windows cross-encrypted password.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DOMAIN_CTRLR_CONFIG_ERROR">
            <summary>A Windows Server has an incorrect configuration.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FT_MISSING_MEMBER">
            <summary>An attempt was made to explicitly access the secondary copy of information via a device control to the Fault Tolerance driver and the secondary copy is not present in the system.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ILL_FORMED_SERVICE_ENTRY">
            <summary>A configuration registry node representing a driver service entry was ill-formed and did not contain required value entries.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ILLEGAL_CHARACTER">
            <summary>An illegal character was encountered. For a multi-byte character set this includes a lead byte without a succeeding trail byte. For the Unicode character set this includes the characters 0xFFFF and 0xFFFE.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_UNMAPPABLE_CHARACTER">
            <summary>No mapping for the Unicode character exists in the target multi-byte code page.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_UNDEFINED_CHARACTER">
            <summary>The Unicode character is not defined in the Unicode character set installed on the system.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FLOPPY_VOLUME">
            <summary>The paging file cannot be created on a floppy diskette.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FLOPPY_ID_MARK_NOT_FOUND">
            <summary>{Floppy Disk Error}
            While accessing a floppy disk, an ID address mark was not found.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FLOPPY_WRONG_CYLINDER">
            <summary>{Floppy Disk Error}
            While accessing a floppy disk, the track address from the sector ID field was found to be different than the track address maintained by the controller.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FLOPPY_UNKNOWN_ERROR">
            <summary>{Floppy Disk Error}
            The floppy disk controller reported an error that is not recognized by the floppy disk driver.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FLOPPY_BAD_REGISTERS">
            <summary>{Floppy Disk Error}
            While accessing a floppy-disk, the controller returned inconsistent results via its registers.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DISK_RECALIBRATE_FAILED">
            <summary>{Hard Disk Error}
            While accessing the hard disk, a recalibrate operation failed, even after retries.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DISK_OPERATION_FAILED">
            <summary>{Hard Disk Error}
            While accessing the hard disk, a disk operation failed even after retries.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DISK_RESET_FAILED">
            <summary>{Hard Disk Error}
            While accessing the hard disk, a disk controller reset was needed, but even that failed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SHARED_IRQ_BUSY">
            <summary>An attempt was made to open a device that was sharing an IRQ with other devices.
            At least one other device that uses that IRQ was already opened.
            Two concurrent opens of devices that share an IRQ and only work via interrupts is not supported for the particular bus type that the devices use.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FT_ORPHANING">
            <summary>{FT Orphaning}
            A disk that is part of a fault-tolerant volume can no longer be accessed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BIOS_FAILED_TO_CONNECT_INTERRUPT">
            <summary>The system bios failed to connect a system interrupt to the device or bus for which the device is connected.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PARTITION_FAILURE">
            <summary>Tape could not be partitioned.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_BLOCK_LENGTH">
            <summary>When accessing a new tape of a multivolume partition, the current blocksize is incorrect.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DEVICE_NOT_PARTITIONED">
            <summary>Tape partition information could not be found when loading a tape.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_UNABLE_TO_LOCK_MEDIA">
            <summary>Attempt to lock the eject media mechanism fails.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_UNABLE_TO_UNLOAD_MEDIA">
            <summary>Unload media fails.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_EOM_OVERFLOW">
            <summary>Physical end of tape was detected.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NO_MEDIA">
            <summary>{No Media}
            There is no media in the drive. Please insert media into drive %hs.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NO_SUCH_MEMBER">
            <summary>A member could not be added to or removed from the local group because the member does not exist.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_MEMBER">
            <summary>A new member could not be added to a local group because the member has the wrong account type.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_KEY_DELETED">
            <summary>Illegal operation attempted on a registry key which has been marked for deletion.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NO_LOG_SPACE">
            <summary>System could not allocate required space in a registry log.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TOO_MANY_SIDS">
            <summary>Too many Sids have been specified.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LM_CROSS_ENCRYPTION_REQUIRED">
            <summary>An attempt was made to change a user password in the security account manager without providing the necessary LM cross-encrypted password.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_KEY_HAS_CHILDREN">
            <summary>An attempt was made to create a symbolic link in a registry key that already has subkeys or values.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CHILD_MUST_BE_VOLATILE">
            <summary>An attempt was made to create a Stable subkey under a Volatile parent key.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DEVICE_CONFIGURATION_ERROR">
            <summary>The I/O device is configured incorrectly or the configuration parameters to the driver are incorrect.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DRIVER_INTERNAL_ERROR">
            <summary>An error was detected between two drivers or within an I/O driver.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_DEVICE_STATE">
            <summary>The device is not in a valid state to perform this request.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_IO_DEVICE_ERROR">
            <summary>The I/O device reported an I/O error.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DEVICE_PROTOCOL_ERROR">
            <summary>A protocol error was detected between the driver and the device.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BACKUP_CONTROLLER">
            <summary>This operation is only allowed for the Primary Domain Controller of the domain.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_FILE_FULL">
            <summary>Log file space is insufficient to support this operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TOO_LATE">
            <summary>A write operation was attempted to a volume after it was dismounted.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NO_TRUST_LSA_SECRET">
            <summary>The workstation does not have a trust secret for the primary domain in the local LSA database.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NO_TRUST_SAM_ACCOUNT">
            <summary>The SAM database on the Windows Server does not have a computer account for this workstation trust relationship.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TRUSTED_DOMAIN_FAILURE">
            <summary>The logon request failed because the trust relationship between the primary domain and the trusted domain failed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TRUSTED_RELATIONSHIP_FAILURE">
            <summary>The logon request failed because the trust relationship between this workstation and the primary domain failed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_EVENTLOG_FILE_CORRUPT">
            <summary>The Eventlog log file is corrupt.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_EVENTLOG_CANT_START">
            <summary>No Eventlog log file could be opened. The Eventlog service did not start.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TRUST_FAILURE">
            <summary>The network logon failed. This may be because the validation authority can't be reached.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_MUTANT_LIMIT_EXCEEDED">
            <summary>An attempt was made to acquire a mutant such that its maximum count would have been exceeded.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NETLOGON_NOT_STARTED">
            <summary>An attempt was made to logon, but the netlogon service was not started.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ACCOUNT_EXPIRED">
            <summary>The user's account has expired.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_POSSIBLE_DEADLOCK">
            <summary>{EXCEPTION}
            Possible deadlock condition.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NETWORK_CREDENTIAL_CONFLICT">
            <summary>Multiple connections to a server or shared resource by the same user, using more than one user name, are not allowed. Disconnect all previous connections to the server or shared resource and try again.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_REMOTE_SESSION_LIMIT">
            <summary>An attempt was made to establish a session to a network server, but there are already too many sessions established to that server.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_EVENTLOG_FILE_CHANGED">
            <summary>The log file has changed between reads.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT">
            <summary>The account used is an Interdomain Trust account. Use your global user account or local user account to access this server.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NOLOGON_WORKSTATION_TRUST_ACCOUNT">
            <summary>The account used is a Computer Account. Use your global user account or local user account to access this server.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NOLOGON_SERVER_TRUST_ACCOUNT">
            <summary>The account used is an Server Trust account. Use your global user account or local user account to access this server.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DOMAIN_TRUST_INCONSISTENT">
            <summary>The name or SID of the domain specified is inconsistent with the trust information for that domain.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FS_DRIVER_REQUIRED">
            <summary>A volume has been accessed for which a file system driver is required that has not yet been loaded.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_IMAGE_ALREADY_LOADED_AS_DLL">
            <summary>Indicates that the specified image is already loaded as a DLL.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INCOMPATIBLE_WITH_GLOBAL_SHORT_NAME_REGISTRY_SETTING">
            <summary>Short name settings may not be changed on this volume due to the global registry setting.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SHORT_NAMES_NOT_ENABLED_ON_VOLUME">
            <summary>Short names are not enabled on this volume.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SECURITY_STREAM_IS_INCONSISTENT">
            <summary>The security stream for the given volume is in an inconsistent state.
            Please run CHKDSK on the volume.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_LOCK_RANGE">
            <summary>A requested file lock operation cannot be processed due to an invalid byte range.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_ACE_CONDITION">
            <summary>{Invalid ACE Condition}
            The specified access control entry (ACE) contains an invalid condition.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_IMAGE_SUBSYSTEM_NOT_PRESENT">
            <summary>The subsystem needed to support the image type is not present.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NOTIFICATION_GUID_ALREADY_DEFINED">
            <summary>{Invalid ACE Condition}
            The specified file already has a notification GUID associated with it.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_EXCEPTION_HANDLER">
            <summary>An invalid exception handler routine has been detected.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DUPLICATE_PRIVILEGES">
            <summary>Duplicate privileges were specified for the token.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NOT_ALLOWED_ON_SYSTEM_FILE">
            <summary>Requested action not allowed on a file system internal file.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_REPAIR_NEEDED">
            <summary>A portion of the file system requires repair.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_QUOTA_NOT_ENABLED">
            <summary>Quota support is not enabled on the system.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NO_APPLICATION_PACKAGE">
            <summary>The operation failed because the application is not part of an application package.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FILE_METADATA_OPTIMIZATION_IN_PROGRESS">
            <summary>File metadata optimization is already in progress.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NOT_SAME_OBJECT">
            <summary>The objects are not identical.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FATAL_MEMORY_EXHAUSTION">
            <summary>The process has terminated because it could not allocate additional memory.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ERROR_PROCESS_NOT_IN_JOB">
            <summary>The process is not part of a job.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CPU_SET_INVALID">
            <summary>The specified CPU Set IDs are invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NETWORK_OPEN_RESTRICTION">
            <summary> Available range of NTSTATUS codes
            A remote open failed because the network open restrictions were not satisfied.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NO_USER_SESSION_KEY">
            <summary>There is no user session key for the specified logon session.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_USER_SESSION_DELETED">
            <summary>The remote user session has been deleted.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_RESOURCE_LANG_NOT_FOUND">
            <summary>Indicates the specified resource language ID cannot be found in the
            image file.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INSUFF_SERVER_RESOURCES">
            <summary>Insufficient server resources exist to complete the request.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_BUFFER_SIZE">
            <summary>The size of the buffer is invalid for the specified operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_ADDRESS_COMPONENT">
            <summary>The transport rejected the network address specified as invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_ADDRESS_WILDCARD">
            <summary>The transport rejected the network address specified due to an invalid use of a wildcard.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TOO_MANY_ADDRESSES">
            <summary>The transport address could not be opened because all the available addresses are in use.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ADDRESS_ALREADY_EXISTS">
            <summary>The transport address could not be opened because it already exists.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ADDRESS_CLOSED">
            <summary>The transport address is now closed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CONNECTION_DISCONNECTED">
            <summary>The transport connection is now disconnected.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CONNECTION_RESET">
            <summary>The transport connection has been reset.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TOO_MANY_NODES">
            <summary>The transport cannot dynamically acquire any more nodes.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TRANSACTION_ABORTED">
            <summary>The transport aborted a pending transaction.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TRANSACTION_TIMED_OUT">
            <summary>The transport timed out a request waiting for a response.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TRANSACTION_NO_RELEASE">
            <summary>The transport did not receive a release for a pending response.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TRANSACTION_NO_MATCH">
            <summary>The transport did not find a transaction matching the specific token.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TRANSACTION_RESPONDED">
            <summary>The transport had previously responded to a transaction request.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TRANSACTION_INVALID_ID">
            <summary>The transport does not recognized the transaction request identifier specified.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TRANSACTION_INVALID_TYPE">
            <summary>The transport does not recognize the transaction request type specified.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NOT_SERVER_SESSION">
            <summary>The transport can only process the specified request on the server side of a session.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NOT_CLIENT_SESSION">
            <summary>The transport can only process the specified request on the client side of a session.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CANNOT_LOAD_REGISTRY_FILE">
            <summary>{Registry File Failure}
            The registry cannot load the hive (file):
            %hs
            or its log or alternate.
            It is corrupt, absent, or not writable.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DEBUG_ATTACH_FAILED">
            <summary>{Unexpected Failure in DebugActiveProcess}
            An unexpected failure occurred while processing a DebugActiveProcess API request. You may choose OK to terminate the process, or Cancel to ignore the error.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SYSTEM_PROCESS_TERMINATED">
            <summary>{Fatal System Error}
            The %hs system process terminated unexpectedly with a status of 0x%08x (0x%08x 0x%08x).
            The system has been shut down.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DATA_NOT_ACCEPTED">
            <summary>{Data Not Accepted}
            The TDI client could not handle the data received during an indication.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NO_BROWSER_SERVERS_FOUND">
            <summary>{Unable to Retrieve Browser Server List}
            The list of servers for this workgroup is not currently available.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VDM_HARD_ERROR">
            <summary>NTVDM encountered a hard error.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DRIVER_CANCEL_TIMEOUT">
            <summary>{Cancel Timeout}
            The driver %hs failed to complete a cancelled I/O request in the allotted time.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_REPLY_MESSAGE_MISMATCH">
            <summary>{Reply Message Mismatch}
            An attempt was made to reply to an LPC message, but the thread specified by the client ID in the message was not waiting on that message.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_MAPPED_ALIGNMENT">
            <summary>{Mapped View Alignment Incorrect}
            An attempt was made to map a view of a file, but either the specified base address or the offset into the file were not aligned on the proper allocation granularity.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_IMAGE_CHECKSUM_MISMATCH">
            <summary>{Bad Image Checksum}
            The image %hs is possibly corrupt. The header checksum does not match the computed checksum.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOST_WRITEBEHIND_DATA">
            <summary>{Delayed Write Failed}
            Windows was unable to save all the data for the file %hs. The data has been lost. This error may be caused by a failure of your computer hardware or network connection. Please try to save this file elsewhere.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLIENT_SERVER_PARAMETERS_INVALID">
            <summary>The parameter(s) passed to the server in the client/server shared memory window were invalid. Too much data may have been put in the shared memory window.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PASSWORD_MUST_CHANGE">
            <summary>The user's password must be changed before signing in.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NOT_FOUND">
            <summary>The object was not found.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NOT_TINY_STREAM">
            <summary>The stream is not a tiny stream.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_RECOVERY_FAILURE">
            <summary>A transaction recover failed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_STACK_OVERFLOW_READ">
            <summary>The request must be handled by the stack overflow code.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FAIL_CHECK">
            <summary>A consistency check failed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DUPLICATE_OBJECTID">
            <summary>The attempt to insert the ID in the index failed because the ID is already in the index.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_OBJECTID_EXISTS">
            <summary>The attempt to set the object's ID failed because the object already has an ID.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CONVERT_TO_LARGE">
            <summary>Internal OFS status codes indicating how an allocation operation is handled. Either it is retried after the containing onode is moved or the extent stream is converted to a large stream.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_RETRY">
            <summary>The request needs to be retried.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FOUND_OUT_OF_SCOPE">
            <summary>The attempt to find the object found an object matching by ID on the volume but it is out of the scope of the handle used for the operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ALLOCATE_BUCKET">
            <summary>The bucket array must be grown. Retry transaction after doing so.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PROPSET_NOT_FOUND">
            <summary>The property set specified does not exist on the object.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_MARSHALL_OVERFLOW">
            <summary>The user/kernel marshalling buffer has overflowed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_VARIANT">
            <summary>The supplied variant structure contains invalid data.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DOMAIN_CONTROLLER_NOT_FOUND">
            <summary>Could not find a domain controller for this domain.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ACCOUNT_LOCKED_OUT">
            <summary>The user account has been automatically locked because too many invalid logon attempts or password change attempts have been requested.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HANDLE_NOT_CLOSABLE">
            <summary>NtClose was called on a handle that was protected from close via NtSetInformationObject.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CONNECTION_REFUSED">
            <summary>The transport connection attempt was refused by the remote system.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRACEFUL_DISCONNECT">
            <summary>The transport connection was gracefully closed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ADDRESS_ALREADY_ASSOCIATED">
            <summary>The transport endpoint already has an address associated with it.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ADDRESS_NOT_ASSOCIATED">
            <summary>An address has not yet been associated with the transport endpoint.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CONNECTION_INVALID">
            <summary>An operation was attempted on a nonexistent transport connection.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CONNECTION_ACTIVE">
            <summary>An invalid operation was attempted on an active transport connection.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NETWORK_UNREACHABLE">
            <summary>The remote network is not reachable by the transport.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HOST_UNREACHABLE">
            <summary>The remote system is not reachable by the transport.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PROTOCOL_UNREACHABLE">
            <summary>The remote system does not support the transport protocol.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PORT_UNREACHABLE">
            <summary>No service is operating at the destination port of the transport on the remote system.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_REQUEST_ABORTED">
            <summary>The request was aborted.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CONNECTION_ABORTED">
            <summary>The transport connection was aborted by the local system.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BAD_COMPRESSION_BUFFER">
            <summary>The specified buffer contains ill-formed data.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_USER_MAPPED_FILE">
            <summary>The requested operation cannot be performed on a file with a user mapped section open.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_AUDIT_FAILED">
            <summary>{Audit Failed}
            An attempt to generate a security audit failed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TIMER_RESOLUTION_NOT_SET">
            <summary>The timer resolution was not previously set by the current process.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CONNECTION_COUNT_LIMIT">
            <summary>A connection to the server could not be made because the limit on the number of concurrent connections for this account has been reached.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOGIN_TIME_RESTRICTION">
            <summary>Attempting to login during an unauthorized time of day for this account.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOGIN_WKSTA_RESTRICTION">
            <summary>The account is not authorized to login from this station.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_IMAGE_MP_UP_MISMATCH">
            <summary>{UP/MP Image Mismatch}
            The image %hs has been modified for use on a uniprocessor system, but you are running it on a multiprocessor machine.
            Please reinstall the image file.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INSUFFICIENT_LOGON_INFO">
            <summary>There is insufficient account information to log you on.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BAD_DLL_ENTRYPOINT">
            <summary>{Invalid DLL Entrypoint}
            The dynamic link library %hs is not written correctly. The stack pointer has been left in an inconsistent state. The entrypoint should be declared as WINAPI or STDCALL. Select YES to fail the DLL load. Select NO to continue execution. Selecting NO may cause the application to operate incorrectly.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BAD_SERVICE_ENTRYPOINT">
            <summary>{Invalid Service Callback Entrypoint}
            The %hs service is not written correctly. The stack pointer has been left in an inconsistent state. The callback entrypoint should be declared as WINAPI or STDCALL. Selecting OK will cause the service to continue operation. However, the service process may operate incorrectly.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LPC_REPLY_LOST">
            <summary>The server received the messages but did not send a reply.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_IP_ADDRESS_CONFLICT1">
            <summary>There is an IP address conflict with another system on the network</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_IP_ADDRESS_CONFLICT2">
            <summary>There is an IP address conflict with another system on the network</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_REGISTRY_QUOTA_LIMIT">
            <summary>{Low On Registry Space}
            The system has reached the maximum size allowed for the system part of the registry. Additional storage requests will be ignored.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PATH_NOT_COVERED">
            <summary>The contacted server does not support the indicated part of the DFS namespace.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NO_CALLBACK_ACTIVE">
            <summary>A callback return system service cannot be executed when no callback is active.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LICENSE_QUOTA_EXCEEDED">
            <summary>The service being accessed is licensed for a particular number of connections. No more connections can be made to the service at this time because there are already as many connections as the service can accept.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PWD_TOO_SHORT">
            <summary>The password provided is too short to meet the policy of your user account. Please choose a longer password.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PWD_TOO_RECENT">
            <summary>The policy of your user account does not allow you to change passwords too frequently. This is done to prevent users from changing back to a familiar, but potentially discovered, password. If you feel your password has been compromised then please contact your administrator immediately to have a new one assigned.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PWD_HISTORY_CONFLICT">
            <summary>You have attempted to change your password to one that you have used in the past. The policy of your user account does not allow this. Please select a password that you have not previously used.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PLUGPLAY_NO_DEVICE">
            <summary>You have attempted to load a legacy device driver while its device instance had been disabled.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_UNSUPPORTED_COMPRESSION">
            <summary>The specified compression format is unsupported.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_HW_PROFILE">
            <summary>The specified hardware profile configuration is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_PLUGPLAY_DEVICE_PATH">
            <summary>The specified Plug and Play registry device path is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DRIVER_ORDINAL_NOT_FOUND">
            <summary>{Driver Entry Point Not Found}
            The %hs device driver could not locate the ordinal %ld in driver %hs.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DRIVER_ENTRYPOINT_NOT_FOUND">
            <summary>{Driver Entry Point Not Found}
            The %hs device driver could not locate the entry point %hs in driver %hs.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_RESOURCE_NOT_OWNED">
            <summary>{Application Error}
            The application attempted to release a resource it did not own. Click OK to terminate the application.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TOO_MANY_LINKS">
            <summary>An attempt was made to create more links on a file than the file system supports.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_QUOTA_LIST_INCONSISTENT">
            <summary>The specified quota list is internally inconsistent with its descriptor.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FILE_IS_OFFLINE">
            <summary>The specified file has been relocated to offline storage.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_EVALUATION_EXPIRATION">
            <summary>{Windows Evaluation Notification}
            The evaluation period for this installation of Windows has expired. This system will shutdown in 1 hour. To restore access to this installation of Windows, please upgrade this installation using a licensed distribution of this product.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ILLEGAL_DLL_RELOCATION">
            <summary>{Illegal System DLL Relocation}
            The system DLL %hs was relocated in memory. The application will not run properly. The relocation occurred because the DLL %hs occupied an address range reserved for Windows system DLLs. The vendor supplying the DLL should be contacted for a new DLL.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LICENSE_VIOLATION">
            <summary>{License Violation}
            The system has detected tampering with your registered product type. This is a violation of your software license. Tampering with product type is not permitted.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DLL_INIT_FAILED_LOGOFF">
            <summary>{DLL Initialization Failed}
            The application failed to initialize because the window station is shutting down.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DRIVER_UNABLE_TO_LOAD">
            <summary>{Unable to Load Device Driver}
            %hs device driver could not be loaded.
            Error Status was 0x%x</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DFS_UNAVAILABLE">
            <summary>DFS is unavailable on the contacted server.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLUME_DISMOUNTED">
            <summary>An operation was attempted to a volume after it was dismounted.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_WX86_INTERNAL_ERROR">
            <summary>An internal error occurred in the Win32 x86 emulation subsystem.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_WX86_FLOAT_STACK_CHECK">
            <summary>Win32 x86 emulation subsystem Floating-point stack check.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VALIDATE_CONTINUE">
            <summary>The validation process needs to continue on to the next step.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NO_MATCH">
            <summary>There was no match for the specified key in the index.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NO_MORE_MATCHES">
            <summary>There are no more matches for the current index enumeration.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NOT_A_REPARSE_POINT">
            <summary>The file or directory is not a reparse point.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_IO_REPARSE_TAG_INVALID">
            <summary>The Windows I/O reparse tag passed for the reparse point is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_IO_REPARSE_TAG_MISMATCH">
            <summary>The Windows I/O reparse tag does not match the one present in the reparse point.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_IO_REPARSE_DATA_INVALID">
            <summary>The user data passed for the reparse point is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_IO_REPARSE_TAG_NOT_HANDLED">
            <summary>The layered file system driver for this IO tag did not handle it when needed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PWD_TOO_LONG">
            <summary>The password provided is too long to meet the policy of your user account. Please choose a shorter password.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_STOWED_EXCEPTION">
            <summary>An application-internal exception has occurred.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CONTEXT_STOWED_EXCEPTION">
            <summary>An application-internal exception has occurred.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_REPARSE_POINT_NOT_RESOLVED">
            <summary>The symbolic link could not be resolved even though the initial file name is valid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DIRECTORY_IS_A_REPARSE_POINT">
            <summary>The directory is a reparse point.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_RANGE_LIST_CONFLICT">
            <summary>The range could not be added to the range list because of a conflict.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SOURCE_ELEMENT_EMPTY">
            <summary>The specified medium changer source element contains no media.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DESTINATION_ELEMENT_FULL">
            <summary>The specified medium changer destination element already contains media.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ILLEGAL_ELEMENT_ADDRESS">
            <summary>The specified medium changer element does not exist.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_MAGAZINE_NOT_PRESENT">
            <summary>The specified element is contained within a magazine that is no longer present.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_REINITIALIZATION_NEEDED">
            <summary>The device requires reinitialization due to hardware errors.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DEVICE_REQUIRES_CLEANING">
            <summary>The device has indicated that cleaning is necessary.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DEVICE_DOOR_OPEN">
            <summary>The device has indicated that its door is open. Further operations require it closed and secured.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ENCRYPTION_FAILED">
            <summary>The file encryption attempt failed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DECRYPTION_FAILED">
            <summary>The file decryption attempt failed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_RANGE_NOT_FOUND">
            <summary>The specified range could not be found in the range list.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NO_RECOVERY_POLICY">
            <summary>There is no encryption recovery policy configured for this system.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NO_EFS">
            <summary>The required encryption driver is not loaded for this system.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_WRONG_EFS">
            <summary>The file was encrypted with a different encryption driver than is currently loaded.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NO_USER_KEYS">
            <summary>There are no EFS keys defined for the user.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FILE_NOT_ENCRYPTED">
            <summary>The specified file is not encrypted.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NOT_EXPORT_FORMAT">
            <summary>The specified file is not in the defined EFS export format.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FILE_ENCRYPTED">
            <summary>The specified file is encrypted and the user does not have the ability to decrypt it.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_WAKE_SYSTEM">
            <summary>The system has awoken</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_WMI_GUID_NOT_FOUND">
            <summary>The guid passed was not recognized as valid by a WMI data provider.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_WMI_INSTANCE_NOT_FOUND">
            <summary>The instance name passed was not recognized as valid by a WMI data provider.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_WMI_ITEMID_NOT_FOUND">
            <summary>The data item id passed was not recognized as valid by a WMI data provider.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_WMI_TRY_AGAIN">
            <summary>The WMI request could not be completed and should be retried.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SHARED_POLICY">
            <summary>The policy object is shared and can only be modified at the root</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_POLICY_OBJECT_NOT_FOUND">
            <summary>The policy object does not exist when it should</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_POLICY_ONLY_IN_DS">
            <summary>The requested policy information only lives in the Ds</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLUME_NOT_UPGRADED">
            <summary>The volume must be upgraded to enable this feature</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_REMOTE_STORAGE_NOT_ACTIVE">
            <summary>The remote storage service is not operational at this time.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_REMOTE_STORAGE_MEDIA_ERROR">
            <summary>The remote storage service encountered a media error.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NO_TRACKING_SERVICE">
            <summary>The tracking (workstation) service is not running.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SERVER_SID_MISMATCH">
            <summary>The server process is running under a SID different than that required by client.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DS_NO_ATTRIBUTE_OR_VALUE">
            <summary>Directory Service specific Errors
            The specified directory service attribute or value does not exist.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DS_INVALID_ATTRIBUTE_SYNTAX">
            <summary>The attribute syntax specified to the directory service is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DS_ATTRIBUTE_TYPE_UNDEFINED">
            <summary>The attribute type specified to the directory service is not defined.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DS_ATTRIBUTE_OR_VALUE_EXISTS">
            <summary>The specified directory service attribute or value already exists.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DS_BUSY">
            <summary>The directory service is busy.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DS_UNAVAILABLE">
            <summary>The directory service is not available.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DS_NO_RIDS_ALLOCATED">
            <summary>The directory service was unable to allocate a relative identifier.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DS_NO_MORE_RIDS">
            <summary>The directory service has exhausted the pool of relative identifiers.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DS_INCORRECT_ROLE_OWNER">
            <summary>The requested operation could not be performed because the directory service is not the master for that type of operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DS_RIDMGR_INIT_ERROR">
            <summary>The directory service was unable to initialize the subsystem that allocates relative identifiers.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DS_OBJ_CLASS_VIOLATION">
            <summary>The requested operation did not satisfy one or more constraints associated with the class of the object.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DS_CANT_ON_NON_LEAF">
            <summary>The directory service can perform the requested operation only on a leaf object.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DS_CANT_ON_RDN">
            <summary>The directory service cannot perform the requested operation on the Relatively Defined Name (RDN) attribute of an object.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DS_CANT_MOD_OBJ_CLASS">
            <summary>The directory service detected an attempt to modify the object class of an object.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DS_CROSS_DOM_MOVE_FAILED">
            <summary>An error occurred while performing a cross domain move operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DS_GC_NOT_AVAILABLE">
            <summary>Unable to Contact the Global Catalog Server.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DIRECTORY_SERVICE_REQUIRED">
            <summary>The requested operation requires a directory service, and none was available.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_REPARSE_ATTRIBUTE_CONFLICT">
            <summary>The reparse attribute cannot be set as it is incompatible with an existing attribute.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CANT_ENABLE_DENY_ONLY">
            <summary>A group marked use for deny only cannot be enabled.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FLOAT_MULTIPLE_FAULTS">
            <summary>{EXCEPTION}
            Multiple floating point faults.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FLOAT_MULTIPLE_TRAPS">
            <summary>{EXCEPTION}
            Multiple floating point traps.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DEVICE_REMOVED">
            <summary>The device has been removed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_JOURNAL_DELETE_IN_PROGRESS">
            <summary>The volume change journal is being deleted.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_JOURNAL_NOT_ACTIVE">
            <summary>The volume change journal is not active.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NOINTERFACE">
            <summary>The requested interface is not supported.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DS_RIDMGR_DISABLED">
            <summary>The directory service detected the subsystem that allocates relative identifiers is disabled. This can occur as a protective mechanism when the system determines a significant portion of relative identifiers (RIDs) have been exhausted. Please see http://go.microsoft.com/fwlink/?LinkId=228610 for recommended diagnostic steps and the procedure to re-enable account creation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DS_ADMIN_LIMIT_EXCEEDED">
            <summary>A directory service resource limit has been exceeded.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DRIVER_FAILED_SLEEP">
            <summary>{System Standby Failed}
            The driver %hs does not support standby mode. Updating this driver may allow the system to go to standby mode.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_MUTUAL_AUTHENTICATION_FAILED">
            <summary>Mutual Authentication failed. The server's password is out of date at the domain controller.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CORRUPT_SYSTEM_FILE">
            <summary>The system file %1 has become corrupt and has been replaced.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DATATYPE_MISALIGNMENT_ERROR">
            <summary>{EXCEPTION}
            Alignment Error
            A datatype misalignment error was detected in a load or store instruction.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_WMI_READ_ONLY">
            <summary>The WMI data item or data block is read only.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_WMI_SET_FAILURE">
            <summary>The WMI data item or data block could not be changed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_COMMITMENT_MINIMUM">
            <summary>{Virtual Memory Minimum Too Low}
            Your system is low on virtual memory. Windows is increasing the size of your virtual memory paging file. During this process, memory requests for some applications may be denied. For more information, see Help.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_REG_NAT_CONSUMPTION">
            <summary>{EXCEPTION}
            Register NaT consumption faults.
            A NaT value is consumed on a non speculative instruction.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TRANSPORT_FULL">
            <summary>The medium changer's transport element contains media, which is causing the operation to fail.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DS_SAM_INIT_FAILURE">
            <summary>Security Accounts Manager initialization failed because of the following error:
            %hs
            Error Status: 0x%x.
            Please shutdown this system and reboot into Directory Services Restore Mode, check the event log for more detailed information.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ONLY_IF_CONNECTED">
            <summary>This operation is supported only when you are connected to the server.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DS_SENSITIVE_GROUP_VIOLATION">
            <summary>Only an administrator can modify the membership list of an administrative group.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PNP_RESTART_ENUMERATION">
            <summary>A device was removed so enumeration must be restarted.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_JOURNAL_ENTRY_DELETED">
            <summary>The journal entry has been deleted from the journal.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DS_CANT_MOD_PRIMARYGROUPID">
            <summary>Cannot change the primary group ID of a domain controller account.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SYSTEM_IMAGE_BAD_SIGNATURE">
            <summary>{Fatal System Error}
            The system image %s is not properly signed. The file has been replaced with the signed file. The system has been shut down.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PNP_REBOOT_REQUIRED">
            <summary>Device will not start without a reboot.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_POWER_STATE_INVALID">
            <summary>Current device power state cannot support this request.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DS_INVALID_GROUP_TYPE">
            <summary>The specified group type is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN">
            <summary>In mixed domain no nesting of global group if group is security enabled.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN">
            <summary>In mixed domain, cannot nest local groups with other local groups, if the group is security enabled.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER">
            <summary>A global group cannot have a local group as a member.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER">
            <summary>A global group cannot have a universal group as a member.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER">
            <summary>A universal group cannot have a local group as a member.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER">
            <summary>A global group cannot have a cross domain member.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER">
            <summary>A local group cannot have another cross domain local group as a member.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DS_HAVE_PRIMARY_MEMBERS">
            <summary>Cannot change to security disabled group because of having primary members in this group.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_WMI_NOT_SUPPORTED">
            <summary>The WMI operation is not supported by the data block or method.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INSUFFICIENT_POWER">
            <summary>There is not enough power to complete the requested operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SAM_NEED_BOOTKEY_PASSWORD">
            <summary>Security Account Manager needs to get the boot password.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SAM_NEED_BOOTKEY_FLOPPY">
            <summary>Security Account Manager needs to get the boot key from floppy disk.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DS_CANT_START">
            <summary>Directory Service cannot start.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DS_INIT_FAILURE">
            <summary>Directory Services could not start because of the following error:
            %hs
            Error Status: 0x%x.
            Please shutdown this system and reboot into Directory Services Restore Mode, check the event log for more detailed information.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SAM_INIT_FAILURE">
            <summary>Security Accounts Manager initialization failed because of the following error:
            %hs
            Error Status: 0x%x.
            Please click OK to shutdown this system and reboot into Safe Mode, check the event log for more detailed information.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DS_GC_REQUIRED">
            <summary>The requested operation can be performed only on a global catalog server.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DS_LOCAL_MEMBER_OF_LOCAL_ONLY">
            <summary>A local group can only be a member of other local groups in the same domain.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DS_NO_FPO_IN_UNIVERSAL_GROUPS">
            <summary>Foreign security principals cannot be members of universal groups.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED">
            <summary>Your computer could not be joined to the domain. You have exceeded the maximum number of computer accounts you are allowed to create in this domain. Contact your system administrator to have this limit reset or increased.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_MULTIPLE_FAULT_VIOLATION">
            <summary> STATUS_MULTIPLE_FAULT_VIOLATION</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CURRENT_DOMAIN_NOT_ALLOWED">
            <summary>This operation cannot be performed on the current domain.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CANNOT_MAKE">
            <summary>The directory or file cannot be created.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SYSTEM_SHUTDOWN">
            <summary>The system is in the process of shutting down.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DS_INIT_FAILURE_CONSOLE">
            <summary>Directory Services could not start because of the following error:
            %hs
            Error Status: 0x%x.
            Please click OK to shutdown the system. You can use the recovery console to diagnose the system further.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DS_SAM_INIT_FAILURE_CONSOLE">
            <summary>Security Accounts Manager initialization failed because of the following error:
            %hs
            Error Status: 0x%x.
            Please click OK to shutdown the system. You can use the recovery console to diagnose the system further.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_UNFINISHED_CONTEXT_DELETED">
            <summary>A security context was deleted before the context was completed. This is considered a logon failure.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NO_TGT_REPLY">
            <summary>The client is trying to negotiate a context and the server requires user-to-user but didn't send a TGT reply.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_OBJECTID_NOT_FOUND">
            <summary>An object ID was not found in the file.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NO_IP_ADDRESSES">
            <summary>Unable to accomplish the requested task because the local machine does not have any IP addresses.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_WRONG_CREDENTIAL_HANDLE">
            <summary>The supplied credential handle does not match the credential associated with the security context.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CRYPTO_SYSTEM_INVALID">
            <summary>The crypto system or checksum function is invalid because a required function is unavailable.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_MAX_REFERRALS_EXCEEDED">
            <summary>The number of maximum ticket referrals has been exceeded.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_MUST_BE_KDC">
            <summary>The local machine must be a Kerberos KDC (domain controller) and it is not.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_STRONG_CRYPTO_NOT_SUPPORTED">
            <summary>The other end of the security negotiation is requires strong crypto but it is not supported on the local machine.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TOO_MANY_PRINCIPALS">
            <summary>The KDC reply contained more than one principal name.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NO_PA_DATA">
            <summary>Expected to find PA data for a hint of what etype to use, but it was not found.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PKINIT_NAME_MISMATCH">
            <summary>The client certificate does not contain a valid UPN, or does not match the client name in the logon request. Please contact your administrator.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SMARTCARD_LOGON_REQUIRED">
            <summary>Smartcard logon is required and was not used.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_KDC_INVALID_REQUEST">
            <summary>An invalid request was sent to the KDC.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_KDC_UNABLE_TO_REFER">
            <summary>The KDC was unable to generate a referral for the service requested.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_KDC_UNKNOWN_ETYPE">
            <summary>The encryption type requested is not supported by the KDC.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SHUTDOWN_IN_PROGRESS">
            <summary>A system shutdown is in progress.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SERVER_SHUTDOWN_IN_PROGRESS">
            <summary>The server machine is shutting down.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NOT_SUPPORTED_ON_SBS">
            <summary>This operation is not supported on a computer running Windows Server 2003 for Small Business Server</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_WMI_GUID_DISCONNECTED">
            <summary>The WMI GUID is no longer available</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_WMI_ALREADY_DISABLED">
            <summary>Collection or events for the WMI GUID is already disabled.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_WMI_ALREADY_ENABLED">
            <summary>Collection or events for the WMI GUID is already enabled.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_MFT_TOO_FRAGMENTED">
            <summary>The Master File Table on the volume is too fragmented to complete this operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_COPY_PROTECTION_FAILURE">
            <summary>Copy protection failure.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CSS_AUTHENTICATION_FAILURE">
            <summary>Copy protection error - DVD CSS Authentication failed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CSS_KEY_NOT_PRESENT">
            <summary>Copy protection error - The given sector does not contain a valid key.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CSS_KEY_NOT_ESTABLISHED">
            <summary>Copy protection error - DVD session key not established.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CSS_SCRAMBLED_SECTOR">
            <summary>Copy protection error - The read failed because the sector is encrypted.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CSS_REGION_MISMATCH">
            <summary>Copy protection error - The given DVD's region does not correspond to the
            region setting of the drive.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CSS_RESETS_EXHAUSTED">
            <summary>Copy protection error - The drive's region setting may be permanent.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PASSWORD_CHANGE_REQUIRED">
            <summary>EAS policy requires that the user change their password before this operation can be performed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOST_MODE_LOGON_RESTRICTION">
            <summary>An administrator has restricted sign in. To sign in, make sure your device is connected to the Internet, and have your administrator sign in first.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PKINIT_FAILURE">
            <summary>The Kerberos protocol encountered an error while validating the KDC certificate during logon. There is more information in the system event log.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SMARTCARD_SUBSYSTEM_FAILURE">
            <summary>The Kerberos protocol encountered an error while attempting to utilize the smartcard subsystem.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NO_KERB_KEY">
            <summary>The target server does not have acceptable Kerberos credentials.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HOST_DOWN">
            <summary>The transport determined that the remote system is down.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_UNSUPPORTED_PREAUTH">
            <summary>An unsupported preauthentication mechanism was presented to the Kerberos package.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_EFS_ALG_BLOB_TOO_BIG">
            <summary>The encryption algorithm used on the source file needs a bigger key buffer than the one used on the destination file.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PORT_NOT_SET">
            <summary>An attempt to remove a process's DebugPort was made, but a port was not already associated with the process.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DEBUGGER_INACTIVE">
            <summary>Debugger Inactive: Windows may have been started without kernel debugging enabled.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DS_VERSION_CHECK_FAILURE">
            <summary>This version of Windows is not compatible with the behavior version of directory forest, domain or domain controller.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_AUDITING_DISABLED">
            <summary>The specified event is currently not being audited.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PRENT4_MACHINE_ACCOUNT">
            <summary>The machine account was created pre-NT4. The account needs to be recreated.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER">
            <summary>A account group cannot have a universal group as a member.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_IMAGE_WIN_32">
            <summary>The specified image file did not have the correct format, it appears to be a 32-bit Windows image.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_IMAGE_WIN_64">
            <summary>The specified image file did not have the correct format, it appears to be a 64-bit Windows image.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BAD_BINDINGS">
            <summary>Client's supplied SSPI channel bindings were incorrect.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NETWORK_SESSION_EXPIRED">
            <summary>The client's session has expired, so the client must reauthenticate to continue accessing the remote resources.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_APPHELP_BLOCK">
            <summary>AppHelp dialog canceled thus preventing the application from starting.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ALL_SIDS_FILTERED">
            <summary>The SID filtering operation removed all SIDs.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NOT_SAFE_MODE_DRIVER">
            <summary>The driver was not loaded because the system is booting into safe mode.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ACCESS_DISABLED_BY_POLICY_DEFAULT">
            <summary>Access to %1 has been restricted by your Administrator by the default software restriction policy level.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ACCESS_DISABLED_BY_POLICY_PATH">
            <summary>Access to %1 has been restricted by your Administrator by location with policy rule %2 placed on path %3</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ACCESS_DISABLED_BY_POLICY_PUBLISHER">
            <summary>Access to %1 has been restricted by your Administrator by software publisher policy.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ACCESS_DISABLED_BY_POLICY_OTHER">
            <summary>Access to %1 has been restricted by your Administrator by policy rule %2.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FAILED_DRIVER_ENTRY">
            <summary>The driver was not loaded because it failed its initialization call.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DEVICE_ENUMERATION_ERROR">
            <summary>The "%hs" encountered an error while applying power or reading the device configuration. This may be caused by a failure of your hardware or by a poor connection.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_MOUNT_POINT_NOT_RESOLVED">
            <summary>The create operation failed because the name contained at least one mount point which resolves to a volume to which the specified device object is not attached.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_DEVICE_OBJECT_PARAMETER">
            <summary>The device object parameter is either not a valid device object or is not attached to the volume specified by the file name.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_MCA_OCCURED">
            <summary>A Machine Check Error has occurred. Please check the system eventlog for additional information.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DRIVER_BLOCKED_CRITICAL">
            <summary>Driver %2 has been blocked from loading.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DRIVER_BLOCKED">
            <summary>Driver %2 has been blocked from loading.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DRIVER_DATABASE_ERROR">
            <summary>There was error [%2] processing the driver database.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SYSTEM_HIVE_TOO_LARGE">
            <summary>System hive size has exceeded its limit.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_IMPORT_OF_NON_DLL">
            <summary>A dynamic link library (DLL) referenced a module that was neither a DLL nor the process's executable image.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DS_SHUTTING_DOWN">
            <summary>The Directory Service is shutting down.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NO_SECRETS">
            <summary>The local account store does not contain secret material for the specified account.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ACCESS_DISABLED_NO_SAFER_UI_BY_POLICY">
            <summary>Access to %1 has been restricted by your Administrator by policy rule %2.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FAILED_STACK_SWITCH">
            <summary>The system was not able to allocate enough memory to perform a stack switch.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HEAP_CORRUPTION">
            <summary>A heap has been corrupted.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SMARTCARD_WRONG_PIN">
            <summary>An incorrect PIN was presented to the smart card</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SMARTCARD_CARD_BLOCKED">
            <summary>The smart card is blocked</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SMARTCARD_CARD_NOT_AUTHENTICATED">
            <summary>No PIN was presented to the smart card</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SMARTCARD_NO_CARD">
            <summary>No smart card available</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SMARTCARD_NO_KEY_CONTAINER">
            <summary>The requested key container does not exist on the smart card</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SMARTCARD_NO_CERTIFICATE">
            <summary>The requested certificate does not exist on the smart card</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SMARTCARD_NO_KEYSET">
            <summary>The requested keyset does not exist</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SMARTCARD_IO_ERROR">
            <summary>A communication error with the smart card has been detected.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DOWNGRADE_DETECTED">
            <summary>The system cannot contact a domain controller to service the authentication request. Please try again later.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SMARTCARD_CERT_REVOKED">
            <summary>The smartcard certificate used for authentication has been revoked. Please contact your system administrator. There may be additional information in the event log.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ISSUING_CA_UNTRUSTED">
            <summary>An untrusted certificate authority was detected while processing the certificate used for authentication.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_REVOCATION_OFFLINE_C">
            <summary>The revocation status of the certificate used for authentication could not be determined.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PKINIT_CLIENT_FAILURE">
            <summary>The client certificate used for authentication was not trusted.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SMARTCARD_CERT_EXPIRED">
            <summary>The smartcard certificate used for authentication has expired. Please
            contact your system administrator.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DRIVER_FAILED_PRIOR_UNLOAD">
            <summary>The driver could not be loaded because a previous version of the driver is still in memory.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SMARTCARD_SILENT_CONTEXT">
            <summary>The smartcard provider could not perform the action since the context was acquired as silent.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PER_USER_TRUST_QUOTA_EXCEEDED">
            <summary>The current user's delegated trust creation quota has been exceeded.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ALL_USER_TRUST_QUOTA_EXCEEDED">
            <summary>The total delegated trust creation quota has been exceeded.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_USER_DELETE_TRUST_QUOTA_EXCEEDED">
            <summary>The current user's delegated trust deletion quota has been exceeded.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DS_NAME_NOT_UNIQUE">
            <summary>The requested name already exists as a unique identifier.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DS_DUPLICATE_ID_FOUND">
            <summary>The requested object has a non-unique identifier and cannot be retrieved.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DS_GROUP_CONVERSION_ERROR">
            <summary>The group cannot be converted due to attribute restrictions on the requested group type.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLSNAP_PREPARE_HIBERNATE">
            <summary>{Volume Shadow Copy Service}
            Please wait while the Volume Shadow Copy Service prepares volume %hs for hibernation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_USER2USER_REQUIRED">
            <summary>Kerberos sub-protocol User2User is required.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_STACK_BUFFER_OVERRUN">
            <summary>The system detected an overrun of a stack-based buffer in this application. This overrun could potentially allow a malicious user to gain control of this application.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NO_S4U_PROT_SUPPORT">
            <summary>The Kerberos subsystem encountered an error. A service for user protocol request was made against a domain controller which does not support service for user.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CROSSREALM_DELEGATION_FAILURE">
            <summary>An attempt was made by this server to make a Kerberos constrained delegation request for a target outside of the server's realm. This is not supported, and indicates a misconfiguration on this server's allowed to delegate to list. Please contact your administrator.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_REVOCATION_OFFLINE_KDC">
            <summary>The revocation status of the domain controller certificate used for authentication could not be determined. There is additional information in the system event log.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ISSUING_CA_UNTRUSTED_KDC">
            <summary>An untrusted certificate authority was detected while processing the domain controller certificate used for authentication. There is additional information in the system event log. Please contact your system administrator.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_KDC_CERT_EXPIRED">
            <summary>The domain controller certificate used for logon has expired. There is additional information in the system event log.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_KDC_CERT_REVOKED">
            <summary>The domain controller certificate used for logon has been revoked. There is additional information in the system event log.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PARAMETER_QUOTA_EXCEEDED">
            <summary>Data present in one of the parameters is more than the function can operate on.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HIBERNATION_FAILURE">
            <summary>The system has failed to hibernate (The error code is %hs). Hibernation will be disabled until the system is restarted.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DELAY_LOAD_FAILED">
            <summary>An attempt to delay-load a .dll or get a function address in a delay-loaded .dll failed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_AUTHENTICATION_FIREWALL_FAILED">
            <summary>Logon Failure: The machine you are logging onto is protected by an authentication firewall. The specified account is not allowed to authenticate to the machine.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VDM_DISALLOWED">
            <summary>%hs is a 16-bit application. You do not have permissions to execute 16-bit applications. Check your permissions with your system administrator.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HUNG_DISPLAY_DRIVER_THREAD">
            <summary>{Display Driver Stopped Responding}
            The %hs display driver has stopped working normally. Save your work and reboot the system to restore full display functionality. The next time you reboot the machine a dialog will be displayed giving you a chance to report this failure to Microsoft.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INSUFFICIENT_RESOURCE_FOR_SPECIFIED_SHARED_SECTION_SIZE">
            <summary>The Desktop heap encountered an error while allocating session memory. There is more information in the system event log.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_CRUNTIME_PARAMETER">
            <summary>An invalid parameter was passed to a C runtime function.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NTLM_BLOCKED">
            <summary>The authentication failed since NTLM was blocked.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DS_SRC_SID_EXISTS_IN_FOREST">
            <summary>The source object's SID already exists in destination forest.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DS_DOMAIN_NAME_EXISTS_IN_FOREST">
            <summary>The domain name of the trusted domain already exists in the forest.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DS_FLAT_NAME_EXISTS_IN_FOREST">
            <summary>The flat name of the trusted domain already exists in the forest.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_USER_PRINCIPAL_NAME">
            <summary>The User Principal Name (UPN) is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FATAL_USER_CALLBACK_EXCEPTION">
            <summary>An unhandled exception was encountered during a user callback.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ASSERTION_FAILURE">
            <summary>An assertion failure has occurred.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VERIFIER_STOP">
            <summary>Application verifier has found an error in the current process.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CALLBACK_POP_STACK">
            <summary>An exception has occurred in a user mode callback and the kernel callback frame should be removed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INCOMPATIBLE_DRIVER_BLOCKED">
            <summary>%2 has been blocked from loading due to incompatibility with this system. Please contact your software vendor for a compatible version of the driver.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HIVE_UNLOADED">
            <summary>Illegal operation attempted on a registry key which has already been unloaded.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_COMPRESSION_DISABLED">
            <summary>Compression is disabled for this volume.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FILE_SYSTEM_LIMITATION">
            <summary>The requested operation could not be completed due to a file system limitation</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_IMAGE_HASH">
            <summary>Windows cannot verify the digital signature for this file. A recent hardware or software change might have installed a file that is signed incorrectly or damaged, or that might be malicious software from an unknown source.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NOT_CAPABLE">
            <summary>The implementation is not capable of performing the request.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_REQUEST_OUT_OF_SEQUENCE">
            <summary>The requested operation is out of order with respect to other operations.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_IMPLEMENTATION_LIMIT">
            <summary>An operation attempted to exceed an implementation-defined limit.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ELEVATION_REQUIRED">
            <summary>The requested operation requires elevation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NO_SECURITY_CONTEXT">
            <summary>The required security context does not exist.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PKU2U_CERT_FAILURE">
            <summary>MessageId 0x042E is reserved and used in isolation lib as
            MessageId=0x042E Facility=System Severity=ERROR SymbolicName=STATUS_VERSION_PARSE_ERROR
            Language=English
            A version number could not be parsed.
            .
            The PKU2U protocol encountered an error while attempting to utilize the associated certificates.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BEYOND_VDL">
            <summary>The operation was attempted beyond the valid data length of the file.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ENCOUNTERED_WRITE_IN_PROGRESS">
            <summary>The attempted write operation encountered a write already in progress for some portion of the range.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PTE_CHANGED">
            <summary>The page fault mappings changed in the middle of processing a fault so the operation must be retried.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PURGE_FAILED">
            <summary>The attempt to purge this file from memory failed to purge some or all the data from memory.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CRED_REQUIRES_CONFIRMATION">
            <summary>The requested credential requires confirmation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CS_ENCRYPTION_INVALID_SERVER_RESPONSE">
            <summary>The remote server sent an invalid response for a file being opened with Client Side Encryption.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CS_ENCRYPTION_UNSUPPORTED_SERVER">
            <summary>Client Side Encryption is not supported by the remote server even though it claims to support it.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CS_ENCRYPTION_EXISTING_ENCRYPTED_FILE">
            <summary>File is encrypted and should be opened in Client Side Encryption mode.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CS_ENCRYPTION_NEW_ENCRYPTED_FILE">
            <summary>A new encrypted file is being created and a $EFS needs to be provided.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CS_ENCRYPTION_FILE_NOT_CSE">
            <summary>The SMB client requested a CSE FSCTL on a non-CSE file.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_LABEL">
            <summary>Indicates a particular Security ID may not be assigned as the label of an object.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DRIVER_PROCESS_TERMINATED">
            <summary>The process hosting the driver for this device has terminated.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_AMBIGUOUS_SYSTEM_DEVICE">
            <summary>The requested system device cannot be identified due to multiple indistinguishable devices potentially matching the identification criteria.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SYSTEM_DEVICE_NOT_FOUND">
            <summary>The requested system device cannot be found.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_RESTART_BOOT_APPLICATION">
            <summary>This boot application must be restarted.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INSUFFICIENT_NVRAM_RESOURCES">
            <summary>Insufficient NVRAM resources exist to complete the API.  A reboot might be required.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_SESSION">
            <summary>The specified session is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_THREAD_ALREADY_IN_SESSION">
            <summary>The specified thread is already in a session.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_THREAD_NOT_IN_SESSION">
            <summary>The specified thread is not in a session.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_WEIGHT">
            <summary>The specified weight is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_REQUEST_PAUSED">
            <summary>The operation was paused.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NO_RANGES_PROCESSED">
            <summary>No ranges for the specified operation were able to be processed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DISK_RESOURCES_EXHAUSTED">
            <summary>The physical resources of this disk have been exhausted.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NEEDS_REMEDIATION">
            <summary>The application cannot be started. Try reinstalling the application to fix the problem.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DEVICE_FEATURE_NOT_SUPPORTED">
            <summary>{Device Feature Not Supported}
            The device does not support the command feature.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DEVICE_UNREACHABLE">
            <summary>{Source/Destination device unreachable}
            The device is unreachable.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_TOKEN">
            <summary>{Invalid Proxy Data Token}
            The token representing the data is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SERVER_UNAVAILABLE">
            <summary>The file server is temporarily unavailable.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FILE_NOT_AVAILABLE">
            <summary>The file is temporarily unavailable.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DEVICE_INSUFFICIENT_RESOURCES">
            <summary>{Device Insufficient Resources}
            The target device has insufficient resources to complete the operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PACKAGE_UPDATING">
            <summary>The application cannot be started because it is currently updating.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NOT_READ_FROM_COPY">
            <summary>The specified copy of the requested data could not be read.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FT_WRITE_FAILURE">
            <summary>The specified data could not be written to any of the copies.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FT_DI_SCAN_REQUIRED">
            <summary>One or more copies of data on this device may be out of sync. No writes may be performed until a data integrity scan is completed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_OBJECT_NOT_EXTERNALLY_BACKED">
            <summary>This object is not externally backed by any provider.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_EXTERNAL_BACKING_PROVIDER_UNKNOWN">
            <summary>The external backing provider is not recognized.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_COMPRESSION_NOT_BENEFICIAL">
            <summary>Compressing this object would not save space.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DATA_CHECKSUM_ERROR">
            <summary>A data integrity checksum error occurred. Data in the file stream is corrupt.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INTERMIXED_KERNEL_EA_OPERATION">
            <summary>An attempt was made to modify both a KERNEL and normal Extended Attribute (EA) in the same operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TRIM_READ_ZERO_NOT_SUPPORTED">
            <summary>{LogicalBlockProvisioningReadZero Not Supported}
            The target device does not support read returning zeros from trimmed/unmapped blocks.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TOO_MANY_SEGMENT_DESCRIPTORS">
            <summary>{Maximum Segment Descriptors Exceeded}
            The command specified a number of descriptors that exceeded the maximum supported by the device.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_OFFSET_ALIGNMENT">
            <summary>{Alignment Violation}
            The command specified a data offset that does not align to the device's granularity/alignment.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_FIELD_IN_PARAMETER_LIST">
            <summary>{Invalid Field In Parameter List}
            The command specified an invalid field in its parameter list.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_OPERATION_IN_PROGRESS">
            <summary>{Operation In Progress}
            An operation is currently in progress with the device.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_INITIATOR_TARGET_PATH">
            <summary>{Invalid I_T Nexus}
            An attempt was made to send down the command via an invalid path to the target device.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SCRUB_DATA_DISABLED">
            <summary>Scrub is disabled on the specified file.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NOT_REDUNDANT_STORAGE">
            <summary>The storage device does not provide redundancy.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_RESIDENT_FILE_NOT_SUPPORTED">
            <summary>An operation is not supported on a resident file.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_COMPRESSED_FILE_NOT_SUPPORTED">
            <summary>An operation is not supported on a compressed file.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DIRECTORY_NOT_SUPPORTED">
            <summary>An operation is not supported on a directory.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_IO_OPERATION_TIMEOUT">
            <summary>{IO Operation Timeout}
            The specified I/O operation failed to complete within the expected time period.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SYSTEM_NEEDS_REMEDIATION">
            <summary>An error in a system binary was detected. Try refreshing the PC to fix the problem.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_APPX_INTEGRITY_FAILURE_CLR_NGEN">
            <summary>A corrupted CLR NGEN binary was detected on the system.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SHARE_UNAVAILABLE">
            <summary>The share is temporarily unavailable.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_APISET_NOT_HOSTED">
            <summary>The target dll was not found because the apiset %hs is not hosted.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_APISET_NOT_PRESENT">
            <summary>The API set extension contains a host for a non-existent API set.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DEVICE_HARDWARE_ERROR">
            <summary>The request failed due to a fatal device hardware error.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FIRMWARE_SLOT_INVALID">
            <summary>The specified firmware slot is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FIRMWARE_IMAGE_INVALID">
            <summary>The specified firmware image is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_STORAGE_TOPOLOGY_ID_MISMATCH">
            <summary>The request failed due to a storage topology ID mismatch.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_WIM_NOT_BOOTABLE">
            <summary>The specified Windows Image (WIM) is not marked as bootable.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BLOCKED_BY_PARENTAL_CONTROLS">
            <summary>The operation was blocked by parental controls.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NEEDS_REGISTRATION">
            <summary>The deployment operation failed because the specified application needs to be registered first.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_QUOTA_ACTIVITY">
            <summary>The requested operation failed due to quota operation is still in progress.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CALLBACK_INVOKE_INLINE">
            <summary>The callback function must be invoked inline.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BLOCK_TOO_MANY_REFERENCES">
            <summary>A file system block being referenced has already reached the maximum reference count and can't be referenced any further.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_MARKED_TO_DISALLOW_WRITES">
            <summary>The requested operation failed because the file stream is marked to disallow writes.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NETWORK_ACCESS_DENIED_EDP">
            <summary>Windows Information Protection policy does not allow access to this network resource.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ENCLAVE_FAILURE">
            <summary>The requested operation failed with an architecture-specific failure code.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PNP_NO_COMPAT_DRIVERS">
            <summary>There are no compatible drivers available for this device.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PNP_DRIVER_PACKAGE_NOT_FOUND">
            <summary>The specified driver package cannot be found on the system.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PNP_DRIVER_CONFIGURATION_NOT_FOUND">
            <summary>The driver package cannot find a required driver configuration.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PNP_DRIVER_CONFIGURATION_INCOMPLETE">
            <summary>The driver configuration is incomplete for use with this device.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PNP_FUNCTION_DRIVER_REQUIRED">
            <summary>The device requires a driver configuration with a function driver.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PNP_DEVICE_CONFIGURATION_PENDING">
            <summary>The device is pending further configuration.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DEVICE_HINT_NAME_BUFFER_TOO_SMALL">
            <summary>The device hint name buffer is too small to receive the remaining name.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PACKAGE_NOT_AVAILABLE">
            <summary>The package is currently not available.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DEVICE_IN_MAINTENANCE">
            <summary>The device is in maintenance mode.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NOT_SUPPORTED_ON_DAX">
            <summary>This operation is not supported on a DAX volume.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FREE_SPACE_TOO_FRAGMENTED">
            <summary>The free space on the volume is too fragmented to complete this operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DAX_MAPPING_EXISTS">
            <summary>The volume has active DAX mappings.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CHILD_PROCESS_BLOCKED">
            <summary>The process creation has been blocked.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_STORAGE_LOST_DATA_PERSISTENCE">
            <summary>The storage device has lost data or persistence.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VRF_CFG_ENABLED">
            <summary>Driver Verifier Volatile settings cannot be set when CFG is enabled.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PARTITION_TERMINATING">
            <summary>An attempt was made to access a partition that has begun termination.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_EXTERNAL_SYSKEY_NOT_SUPPORTED">
            <summary>An externally encrypted syskey has been configured, but the system no longer supports this feature.  Please see https://go.microsoft.com/fwlink/?linkid=851152 for more information.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ENCLAVE_VIOLATION">
            <summary>An attempt was made to access protected memory in violation of its secure access policy.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FILE_PROTECTED_UNDER_DPL">
            <summary>File is not accessible because it's currently protected under DPL.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLUME_NOT_CLUSTER_ALIGNED">
            <summary>The volume is not cluster aligned on the disk.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NO_PHYSICALLY_ALIGNED_FREE_SPACE_FOUND">
            <summary>No physically aligned free space was found on the volume.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_APPX_FILE_NOT_ENCRYPTED">
            <summary>The APPX file can not be accessed because it is not encrypted as expected.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_RWRAW_ENCRYPTED_FILE_NOT_ENCRYPTED">
            <summary>A read or write of raw encrypted data cannot be performed because the file is not encrypted.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_RWRAW_ENCRYPTED_INVALID_EDATAINFO_FILEOFFSET">
            <summary>An invalid file offset in the encrypted data info block was passed for read or write operation of file's raw encrypted data.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_RWRAW_ENCRYPTED_INVALID_EDATAINFO_FILERANGE">
            <summary>An invalid offset and length combination in the encrypted data info was passed for read or write operation of file's raw encrypted data.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_RWRAW_ENCRYPTED_INVALID_EDATAINFO_PARAMETER">
            <summary>An invalid parameter in the encrypted data info was passed for read or write operation of file's raw encrypted data.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_TASK_NAME">
            <summary>    **** New SYSTEM error codes can be inserted here ****
            The specified task name is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_TASK_INDEX">
            <summary>The specified task index is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_THREAD_ALREADY_IN_TASK">
            <summary>The specified thread is already joining a task.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CALLBACK_BYPASS">
            <summary>A callback has requested to bypass native code.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_UNDEFINED_SCOPE">
            <summary>The Central Access Policy specified is not defined on the target machine.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_CAP">
            <summary>The Central Access Policy obtained from Active Directory is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NOT_GUI_PROCESS">
            <summary>Unable to finish the requested operation because the specified process is not a GUI process.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DEVICE_HUNG">
            <summary>The device is not responding and cannot be safely removed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CONTAINER_ASSIGNED">
            <summary>The specified Job already has a container assigned to it.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_JOB_NO_CONTAINER">
            <summary>The specified Job does not have a container assigned to it.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DEVICE_UNRESPONSIVE">
            <summary>The device is unresponsive.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_REPARSE_POINT_ENCOUNTERED">
            <summary>The object manager encountered a reparse point while retrieving an object.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ATTRIBUTE_NOT_PRESENT">
            <summary>The requested attribute is not present on the specified file or directory.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NOT_A_TIERED_VOLUME">
            <summary>This volume is not a tiered volume.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ALREADY_HAS_STREAM_ID">
            <summary>This file is currently associated with a different stream id.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_JOB_NOT_EMPTY">
            <summary>The requested operation could not be completed because the specified job has children.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ALREADY_INITIALIZED">
            <summary>The specified object has already been initialized.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ENCLAVE_NOT_TERMINATED">
            <summary>The specified enclave has not yet been terminated.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ENCLAVE_IS_TERMINATING">
            <summary>An attempt was made to access an enclave that has begun termination.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SMB1_NOT_AVAILABLE">
            <summary>You can't connect to the file share because it's not secure. This share requires the obsolete SMB1 protocol, which is unsafe and could expose your system to attack.
            Your system requires SMB2 or higher. For more info on resolving this issue, see: https://go.microsoft.com/fwlink/?linkid=852747</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SMR_GARBAGE_COLLECTION_REQUIRED">
            <summary>The volume must undergo garbage collection.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FAIL_FAST_EXCEPTION">
            <summary>    **** New SYSTEM error codes can be inserted here ****
            {Fail Fast Exception}
            A fail fast exception occurred. Exception handlers will not be invoked and the process will be terminated immediately.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_IMAGE_CERT_REVOKED">
            <summary>Windows cannot verify the digital signature for this file. The signing certificate for this file has been revoked.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DYNAMIC_CODE_BLOCKED">
            <summary>The operation was blocked as the process prohibits dynamic code generation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_IMAGE_CERT_EXPIRED">
            <summary>Windows cannot verify the digital signature for this file. The signing certificate for this file has expired.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_STRICT_CFG_VIOLATION">
            <summary>The specified image file was blocked from loading because it does not enable a feature required by the process: Control Flow Guard.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SET_CONTEXT_DENIED">
            <summary>The thread context could not be updated because this has been restricted for the process.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CROSS_PARTITION_VIOLATION">
            <summary>An attempt to access another partition's private file/section was rejected.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PORT_CLOSED">
            <summary>The ALPC port is closed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_MESSAGE_LOST">
            <summary>The ALPC message requested is no longer available.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_MESSAGE">
            <summary>The ALPC message supplied is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_REQUEST_CANCELED">
            <summary>The ALPC message has been canceled.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_RECURSIVE_DISPATCH">
            <summary>Invalid recursive dispatch attempt.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LPC_RECEIVE_BUFFER_EXPECTED">
            <summary>No receive buffer has been supplied in a synchrounus request.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LPC_INVALID_CONNECTION_USAGE">
            <summary>The connection port is used in an invalid context.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LPC_REQUESTS_NOT_ALLOWED">
            <summary>The ALPC port does not accept new request messages.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_RESOURCE_IN_USE">
            <summary>The resource requested is already in use.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HARDWARE_MEMORY_ERROR">
            <summary>The hardware has reported an uncorrectable memory error.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_THREADPOOL_HANDLE_EXCEPTION">
            <summary>Status 0x%08x was returned, waiting on handle 0x%x for wait 0x%p, in waiter 0x%p.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_THREADPOOL_SET_EVENT_ON_COMPLETION_FAILED">
            <summary>After a callback to 0x%p(0x%p), a completion call to SetEvent(0x%p) failed with status 0x%08x.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_THREADPOOL_RELEASE_SEMAPHORE_ON_COMPLETION_FAILED">
            <summary>After a callback to 0x%p(0x%p), a completion call to ReleaseSemaphore(0x%p, %d) failed with status 0x%08x.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_THREADPOOL_RELEASE_MUTEX_ON_COMPLETION_FAILED">
            <summary>After a callback to 0x%p(0x%p), a completion call to ReleaseMutex(%p) failed with status 0x%08x.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_THREADPOOL_FREE_LIBRARY_ON_COMPLETION_FAILED">
            <summary>After a callback to 0x%p(0x%p), an completion call to FreeLibrary(%p) failed with status 0x%08x.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_THREADPOOL_RELEASED_DURING_OPERATION">
            <summary>The threadpool 0x%p was released while a thread was posting a callback to 0x%p(0x%p) to it.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CALLBACK_RETURNED_WHILE_IMPERSONATING">
            <summary>A threadpool worker thread is impersonating a client, after a callback to 0x%p(0x%p).
            This is unexpected, indicating that the callback is missing a call to revert the impersonation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_APC_RETURNED_WHILE_IMPERSONATING">
            <summary>A threadpool worker thread is impersonating a client, after executing an APC.
            This is unexpected, indicating that the APC is missing a call to revert the impersonation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PROCESS_IS_PROTECTED">
            <summary>Either the target process, or the target thread's containing process, is a protected process.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_MCA_EXCEPTION">
            <summary>A Thread is getting dispatched with MCA EXCEPTION because of MCA.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CERTIFICATE_MAPPING_NOT_UNIQUE">
            <summary>The client certificate account mapping is not unique.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SYMLINK_CLASS_DISABLED">
            <summary>The symbolic link cannot be followed because its type is disabled.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_IDN_NORMALIZATION">
            <summary>Indicates that the specified string is not valid for IDN normalization.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NO_UNICODE_TRANSLATION">
            <summary>No mapping for the Unicode character exists in the target multi-byte code page.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ALREADY_REGISTERED">
            <summary>The provided callback is already registered.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CONTEXT_MISMATCH">
            <summary>The provided context did not match the target.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PORT_ALREADY_HAS_COMPLETION_LIST">
            <summary>The specified port already has a completion list.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CALLBACK_RETURNED_THREAD_PRIORITY">
            <summary>A threadpool worker thread enter a callback at thread base priority 0x%x and exited at priority 0x%x.
            This is unexpected, indicating that the callback missed restoring the priority.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_THREAD">
            <summary>An invalid thread, handle %p, is specified for this operation. Possibly, a threadpool worker thread was specified.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CALLBACK_RETURNED_TRANSACTION">
            <summary>A threadpool worker thread enter a callback, which left transaction state.
            This is unexpected, indicating that the callback missed clearing the transaction.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CALLBACK_RETURNED_LDR_LOCK">
            <summary>A threadpool worker thread enter a callback, which left the loader lock held.
            This is unexpected, indicating that the callback missed releasing the lock.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CALLBACK_RETURNED_LANG">
            <summary>A threadpool worker thread enter a callback, which left with preferred languages set.
            This is unexpected, indicating that the callback missed clearing them.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CALLBACK_RETURNED_PRI_BACK">
            <summary>A threadpool worker thread enter a callback, which left with background priorities set.
            This is unexpected, indicating that the callback missed restoring the original priorities.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CALLBACK_RETURNED_THREAD_AFFINITY">
            <summary>A threadpool worker thread enter a callback at thread affinity %p and exited at affinity %p.
            This is unexpected, indicating that the callback missed restoring the priority.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LPC_HANDLE_COUNT_EXCEEDED">
            <summary>The caller has exceeded the maximum number of handles that may be transmitted in
            a single local procedure call.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_EXECUTABLE_MEMORY_WRITE">
            <summary>A write to executable memory occurred for a process that is managing such operations.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_KERNEL_EXECUTABLE_MEMORY_WRITE">
            <summary>A write to executable memory occurred from kernel mode for a process that is managing such operations.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ATTACHED_EXECUTABLE_MEMORY_WRITE">
            <summary>A write to executable memory occurred from kernel mode while attached to a process that is managing such operations.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TRIGGERED_EXECUTABLE_MEMORY_WRITE">
            <summary>A write to executable memory was triggered cross-process to a process that is managing such operations.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DISK_REPAIR_DISABLED">
            <summary>The attempted operation required self healing to be enabled.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DS_DOMAIN_RENAME_IN_PROGRESS">
            <summary>The Directory Service cannot perform the requested operation because a domain rename operation is in progress.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DISK_QUOTA_EXCEEDED">
            <summary>The requested file operation failed because the storage quota was exceeded.
            To free up disk space, move files to a different location or delete unnecessary files. For more information, contact your system administrator.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DATA_LOST_REPAIR">
            <summary>Windows discovered a corruption in the file "%hs".
            This file has now been repaired.
            Please check if any data in the file was lost because of the corruption.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CONTENT_BLOCKED">
            <summary>The requested file operation failed because the storage policy blocks that type of file. For more information, contact your system administrator.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BAD_CLUSTERS">
            <summary>The operation could not be completed due to bad clusters on disk.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLUME_DIRTY">
            <summary>The operation could not be completed because the volume is dirty. Please run chkdsk and try again.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DISK_REPAIR_REDIRECTED">
            <summary>The volume repair could not be performed while it is online.
            Please schedule to take the volume offline so that it can be repaired.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DISK_REPAIR_UNSUCCESSFUL">
            <summary>The volume repair was not successful.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CORRUPT_LOG_OVERFULL">
            <summary>One of the volume corruption logs is full. Further corruptions that may be detected won't be logged.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CORRUPT_LOG_CORRUPTED">
            <summary>One of the volume corruption logs is internally corrupted and needs to be recreated. The volume may contain undetected corruptions and must be scanned.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CORRUPT_LOG_UNAVAILABLE">
            <summary>One of the volume corruption logs is unavailable for being operated on.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CORRUPT_LOG_DELETED_FULL">
            <summary>One of the volume corruption logs was deleted while still having corruption records in them. The volume contains detected corruptions and must be scanned.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CORRUPT_LOG_CLEARED">
            <summary>One of the volume corruption logs was cleared by chkdsk and no longer contains real corruptions.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ORPHAN_NAME_EXHAUSTED">
            <summary>Orphaned files exist on the volume but could not be recovered because no more new names could be created in the recovery directory. Files must be moved from the recovery directory.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PROACTIVE_SCAN_IN_PROGRESS">
            <summary>The operation could not be completed because an instance of Proactive Scanner is currently running.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ENCRYPTED_IO_NOT_POSSIBLE">
            <summary>The read or write operation to an encrypted file could not be completed because the file has not been opened for data access.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CORRUPT_LOG_UPLEVEL_RECORDS">
            <summary>One of the volume corruption logs comes from a newer version of Windows and contains corruption records. The log will be emptied and reset to the current version, and the volume health state will be updated accordingly.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FILE_CHECKED_OUT">
            <summary>This file is checked out or locked for editing by another user.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CHECKOUT_REQUIRED">
            <summary>The file must be checked out before saving changes.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BAD_FILE_TYPE">
            <summary>The file type being saved or retrieved has been blocked.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FILE_TOO_LARGE">
            <summary>The file size exceeds the limit allowed and cannot be saved.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FORMS_AUTH_REQUIRED">
            <summary>Access Denied. Before opening files in this location, you must first browse to the web site and select the option to login automatically.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VIRUS_INFECTED">
            <summary>Operation did not complete successfully because the file contains a virus or potentially unwanted software.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VIRUS_DELETED">
            <summary>This file contains a virus or potentially unwanted software and cannot be opened. Due to the nature of this virus or potentially unwanted software, the file has been removed from this location.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BAD_MCFG_TABLE">
            <summary>The resources required for this device conflict with the MCFG table.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CANNOT_BREAK_OPLOCK">
            <summary>The operation did not complete successfully because it would cause an oplock to be broken. The caller has requested that existing oplocks not be broken.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BAD_KEY">
            <summary>Bad key.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BAD_DATA">
            <summary>Bad data.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NO_KEY">
            <summary>Key does not exist.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FILE_HANDLE_REVOKED">
            <summary>Access to the specified file handle has been revoked.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_WOW_ASSERTION">
            <summary>WOW Assertion Error.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_SIGNATURE">
            <summary>The cryptographic signature is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HMAC_NOT_SUPPORTED">
            <summary>The cryptographic provider does not support HMAC.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_AUTH_TAG_MISMATCH">
            <summary>The computed authentication tag did not match the input authentication tag.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_STATE_TRANSITION">
            <summary>The requested state transition is invalid and cannot be performed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_KERNEL_INFO_VERSION">
            <summary>The supplied kernel information version is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_PEP_INFO_VERSION">
            <summary>The supplied PEP information version is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HANDLE_REVOKED">
            <summary>Access to the specified handle has been revoked.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_EOF_ON_GHOSTED_RANGE">
            <summary>The file operation will result in the end of file being on a ghosted range.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_IPSEC_QUEUE_OVERFLOW">
            <summary>The IPSEC queue overflowed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ND_QUEUE_OVERFLOW">
            <summary>The neighbor discovery queue overflowed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HOPLIMIT_EXCEEDED">
            <summary>An ICMP hop limit exceeded error was received.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PROTOCOL_NOT_SUPPORTED">
            <summary>The protocol is not installed on the local machine.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FASTPATH_REJECTED">
            <summary>An operation or data has been rejected while on the network fast path.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOST_WRITEBEHIND_DATA_NETWORK_DISCONNECTED">
            <summary>{Delayed Write Failed}
            Windows was unable to save all the data for the file %hs; the data has been lost.
            This error may be caused by network connectivity issues. Please try to save this file elsewhere.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOST_WRITEBEHIND_DATA_NETWORK_SERVER_ERROR">
            <summary>{Delayed Write Failed}
            Windows was unable to save all the data for the file %hs; the data has been lost.
            This error was returned by the server on which the file exists. Please try to save this file elsewhere.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOST_WRITEBEHIND_DATA_LOCAL_DISK_ERROR">
            <summary>{Delayed Write Failed}
            Windows was unable to save all the data for the file %hs; the data has been lost.
            This error may be caused if the device has been removed or the media is write-protected.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_XML_PARSE_ERROR">
            <summary>Windows was unable to parse the requested XML data.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_XMLDSIG_ERROR">
            <summary>An error was encountered while processing an XML digital signature.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_WRONG_COMPARTMENT">
            <summary>Indicates that the caller made the connection request in the wrong routing compartment.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_AUTHIP_FAILURE">
            <summary>Indicates that there was an AuthIP failure when attempting to connect to the remote host.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DS_OID_MAPPED_GROUP_CANT_HAVE_MEMBERS">
            <summary>OID mapped groups cannot have members.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DS_OID_NOT_FOUND">
            <summary>The specified OID cannot be found.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INCORRECT_ACCOUNT_TYPE">
            <summary>The system is not authoritative for the specified account and therefore cannot complete the operation. Please retry the operation using the provider associated with this account. If this is an online provider please use the provider's online site.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HASH_NOT_SUPPORTED">
            <summary>Hash generation for the specified version and hash type is not enabled on server.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HASH_NOT_PRESENT">
            <summary>The hash requests is not present or not up to date with the current file contents.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SECONDARY_IC_PROVIDER_NOT_REGISTERED">
            <summary>The secondary interrupt controller instance that manages the specified interrupt is not registered.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GPIO_CLIENT_INFORMATION_INVALID">
            <summary>The information supplied by the GPIO client driver is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GPIO_VERSION_NOT_SUPPORTED">
            <summary>The version specified by the GPIO client driver is not supported.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GPIO_INVALID_REGISTRATION_PACKET">
            <summary>The registration packet supplied by the GPIO client driver is not valid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GPIO_OPERATION_DENIED">
            <summary>The requested operation is not suppported for the specified handle.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GPIO_INCOMPATIBLE_CONNECT_MODE">
            <summary>The requested connect mode conflicts with an existing mode on one or more of the specified pins.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GPIO_INTERRUPT_ALREADY_UNMASKED">
            <summary>The interrupt requested to be unmasked is not masked.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CANNOT_SWITCH_RUNLEVEL">
            <summary>The requested run level switch cannot be completed successfully since
            one or more services refused to stop or restart.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_RUNLEVEL_SETTING">
            <summary>The service has an invalid run level setting. The run level for a service
            must not be higher than the run level of its dependent services.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_RUNLEVEL_SWITCH_TIMEOUT">
            <summary>The requested run level switch cannot be completed successfully since
            one or more services will not stop or restart within the specified timeout.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SERVICES_FAILED_AUTOSTART">
            <summary>One or more services failed to start during the service startup phase of a run level switch.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_RUNLEVEL_SWITCH_AGENT_TIMEOUT">
            <summary>A run level switch agent did not respond within the specified timeout.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_RUNLEVEL_SWITCH_IN_PROGRESS">
            <summary>A run level switch is currently in progress.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NOT_APPCONTAINER">
            <summary>This operation is only valid in the context of an app container.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NOT_SUPPORTED_IN_APPCONTAINER">
            <summary>This functionality is not supported in the context of an app container.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_PACKAGE_SID_LENGTH">
            <summary>The length of the SID supplied is not a valid length for app container SIDs.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LPAC_ACCESS_DENIED">
            <summary>Access to the specified resource has been denied for a less privileged app container.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ADMINLESS_ACCESS_DENIED">
            <summary>Access to the specified resource has been denied for an adminless system.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_APP_DATA_NOT_FOUND">
            <summary>Fast Cache data not found.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_APP_DATA_EXPIRED">
            <summary>Fast Cache data expired.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_APP_DATA_CORRUPT">
            <summary>Fast Cache data corrupt.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_APP_DATA_LIMIT_EXCEEDED">
            <summary>Fast Cache data has exceeded its max size and cannot be updated.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_APP_DATA_REBOOT_REQUIRED">
            <summary>Fast Cache has been ReArmed and requires a reboot until it can be updated.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_OFFLOAD_READ_FLT_NOT_SUPPORTED">
            <summary>The copy offload read operation is not supported by a filter.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_OFFLOAD_WRITE_FLT_NOT_SUPPORTED">
            <summary>The copy offload write operation is not supported by a filter.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_OFFLOAD_READ_FILE_NOT_SUPPORTED">
            <summary>The copy offload read operation is not supported for the file.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_OFFLOAD_WRITE_FILE_NOT_SUPPORTED">
            <summary>The copy offload write operation is not supported for the file.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_WOF_WIM_HEADER_CORRUPT">
            <summary>The WOF driver encountered a corruption in WIM image's Header.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_WOF_WIM_RESOURCE_TABLE_CORRUPT">
            <summary>The WOF driver encountered a corruption in WIM image's Resource Table.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_WOF_FILE_RESOURCE_TABLE_CORRUPT">
            <summary>The WOF driver encountered a corruption in the compressed file's Resource Table.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FILE_SYSTEM_VIRTUALIZATION_UNAVAILABLE">
            <summary>The provider that supports file system virtualization is temporarily unavailable.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FILE_SYSTEM_VIRTUALIZATION_METADATA_CORRUPT">
            <summary>The metadata for file system virtualization is corrupt and unreadable.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FILE_SYSTEM_VIRTUALIZATION_BUSY">
            <summary>The provider that supports file system virtualization is too busy to complete this operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FILE_SYSTEM_VIRTUALIZATION_PROVIDER_UNKNOWN">
            <summary>The provider that supports file system virtualization is unknown.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FILE_SYSTEM_VIRTUALIZATION_INVALID_OPERATION">
            <summary>The virtualization operation is not allowed on the file in its current state.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLOUD_FILE_SYNC_ROOT_METADATA_CORRUPT">
            <summary>The cloud sync root metadata is corrupted.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLOUD_FILE_PROVIDER_NOT_RUNNING">
            <summary>The cloud file provider is not running.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLOUD_FILE_METADATA_CORRUPT">
            <summary>The cloud file metadata is corrupt and unreadable.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLOUD_FILE_METADATA_TOO_LARGE">
            <summary>The cloud file metadata is too large.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLOUD_FILE_PROPERTY_BLOB_TOO_LARGE">
            <summary>The cloud file property is too large.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLOUD_FILE_TOO_MANY_PROPERTY_BLOBS">
            <summary>The maximum number of cloud file properties has been reached.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLOUD_FILE_PROPERTY_VERSION_NOT_SUPPORTED">
            <summary>The version of the cloud file property store is not supported.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NOT_A_CLOUD_FILE">
            <summary>The file is not a cloud file.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLOUD_FILE_NOT_IN_SYNC">
            <summary>The file is not in sync with the cloud.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLOUD_FILE_ALREADY_CONNECTED">
            <summary>The cloud sync root is already connected with another cloud sync provider.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLOUD_FILE_NOT_SUPPORTED">
            <summary>The operation is not supported by the cloud sync provider.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLOUD_FILE_INVALID_REQUEST">
            <summary>The cloud operation is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLOUD_FILE_READ_ONLY_VOLUME">
            <summary>The cloud operation is not supported on a read-only volume.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLOUD_FILE_CONNECTED_PROVIDER_ONLY">
            <summary>The operation is reserved for a connected cloud sync provider.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLOUD_FILE_VALIDATION_FAILED">
            <summary>The cloud sync provider failed to validate the downloaded data.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLOUD_FILE_AUTHENTICATION_FAILED">
            <summary>The cloud sync provider failed user authentication.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLOUD_FILE_INSUFFICIENT_RESOURCES">
            <summary>The cloud sync provider failed to perform the operation due to low system resources.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLOUD_FILE_NETWORK_UNAVAILABLE">
            <summary>The cloud sync provider failed to perform the operation due to network being unavailable.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLOUD_FILE_UNSUCCESSFUL">
            <summary>The cloud operation was unsuccessful.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLOUD_FILE_NOT_UNDER_SYNC_ROOT">
            <summary>The operation is only supported on files under a cloud sync root.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLOUD_FILE_IN_USE">
            <summary>The operation cannot be performed on cloud files in use.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLOUD_FILE_PINNED">
            <summary>The operation cannot be performed on pinned cloud files.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLOUD_FILE_REQUEST_ABORTED">
            <summary>The cloud operation was aborted.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLOUD_FILE_PROPERTY_CORRUPT">
            <summary>The cloud file's property store is corrupt.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLOUD_FILE_ACCESS_DENIED">
            <summary>Access to the cloud file is denied.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLOUD_FILE_INCOMPATIBLE_HARDLINKS">
            <summary>The cloud operation cannot be performed on a file with incompatible hardlinks.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLOUD_FILE_PROPERTY_LOCK_CONFLICT">
            <summary>The operation failed due to a conflicting cloud file property lock.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLOUD_FILE_REQUEST_CANCELED">
            <summary>The cloud operation was canceled by user.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLOUD_FILE_PROVIDER_TERMINATED">
            <summary>The cloud file provider exited unexpectedly.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NOT_A_CLOUD_SYNC_ROOT">
            <summary>The file is not a cloud sync root.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.DBG_NO_STATE_CHANGE">
            <summary>    **** New SYSTEM error codes can be inserted here ****
             Debugger error values
            Debugger did not perform a state change.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.DBG_APP_NOT_IDLE">
            <summary>Debugger has found the application is not idle.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_INVALID_STRING_BINDING">
            <summary> RPC error values
            The string binding is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_WRONG_KIND_OF_BINDING">
            <summary>The binding handle is not the correct type.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_INVALID_BINDING">
            <summary>The binding handle is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_PROTSEQ_NOT_SUPPORTED">
            <summary>The RPC protocol sequence is not supported.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_INVALID_RPC_PROTSEQ">
            <summary>The RPC protocol sequence is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_INVALID_STRING_UUID">
            <summary>The string UUID is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_INVALID_ENDPOINT_FORMAT">
            <summary>The endpoint format is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_INVALID_NET_ADDR">
            <summary>The network address is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_NO_ENDPOINT_FOUND">
            <summary>No endpoint was found.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_INVALID_TIMEOUT">
            <summary>The timeout value is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_OBJECT_NOT_FOUND">
            <summary>The object UUID was not found.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_ALREADY_REGISTERED">
            <summary>The object UUID has already been registered.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_TYPE_ALREADY_REGISTERED">
            <summary>The type UUID has already been registered.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_ALREADY_LISTENING">
            <summary>The RPC server is already listening.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_NO_PROTSEQS_REGISTERED">
            <summary>No protocol sequences have been registered.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_NOT_LISTENING">
            <summary>The RPC server is not listening.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_UNKNOWN_MGR_TYPE">
            <summary>The manager type is unknown.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_UNKNOWN_IF">
            <summary>The interface is unknown.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_NO_BINDINGS">
            <summary>There are no bindings.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_NO_PROTSEQS">
            <summary>There are no protocol sequences.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_CANT_CREATE_ENDPOINT">
            <summary>The endpoint cannot be created.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_OUT_OF_RESOURCES">
            <summary>Not enough resources are available to complete this operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_SERVER_UNAVAILABLE">
            <summary>The RPC server is unavailable.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_SERVER_TOO_BUSY">
            <summary>The RPC server is too busy to complete this operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_INVALID_NETWORK_OPTIONS">
            <summary>The network options are invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_NO_CALL_ACTIVE">
            <summary>There are no remote procedure calls active on this thread.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_CALL_FAILED">
            <summary>The remote procedure call failed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_CALL_FAILED_DNE">
            <summary>The remote procedure call failed and did not execute.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_PROTOCOL_ERROR">
            <summary>An RPC protocol error occurred.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_UNSUPPORTED_TRANS_SYN">
            <summary>The transfer syntax is not supported by the RPC server.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_UNSUPPORTED_TYPE">
            <summary>The type UUID is not supported.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_INVALID_TAG">
            <summary>The tag is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_INVALID_BOUND">
            <summary>The array bounds are invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_NO_ENTRY_NAME">
            <summary>The binding does not contain an entry name.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_INVALID_NAME_SYNTAX">
            <summary>The name syntax is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_UNSUPPORTED_NAME_SYNTAX">
            <summary>The name syntax is not supported.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_UUID_NO_ADDRESS">
            <summary>No network address is available to use to construct a UUID.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_DUPLICATE_ENDPOINT">
            <summary>The endpoint is a duplicate.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_UNKNOWN_AUTHN_TYPE">
            <summary>The authentication type is unknown.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_MAX_CALLS_TOO_SMALL">
            <summary>The maximum number of calls is too small.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_STRING_TOO_LONG">
            <summary>The string is too long.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_PROTSEQ_NOT_FOUND">
            <summary>The RPC protocol sequence was not found.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_PROCNUM_OUT_OF_RANGE">
            <summary>The procedure number is out of range.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_BINDING_HAS_NO_AUTH">
            <summary>The binding does not contain any authentication information.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_UNKNOWN_AUTHN_SERVICE">
            <summary>The authentication service is unknown.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_UNKNOWN_AUTHN_LEVEL">
            <summary>The authentication level is unknown.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_INVALID_AUTH_IDENTITY">
            <summary>The security context is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_UNKNOWN_AUTHZ_SERVICE">
            <summary>The authorization service is unknown.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.EPT_NT_INVALID_ENTRY">
            <summary>The entry is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.EPT_NT_CANT_PERFORM_OP">
            <summary>The operation cannot be performed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.EPT_NT_NOT_REGISTERED">
            <summary>There are no more endpoints available from the endpoint mapper.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_NOTHING_TO_EXPORT">
            <summary>No interfaces have been exported.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_INCOMPLETE_NAME">
            <summary>The entry name is incomplete.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_INVALID_VERS_OPTION">
            <summary>The version option is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_NO_MORE_MEMBERS">
            <summary>There are no more members.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_NOT_ALL_OBJS_UNEXPORTED">
            <summary>There is nothing to unexport.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_INTERFACE_NOT_FOUND">
            <summary>The interface was not found.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_ENTRY_ALREADY_EXISTS">
            <summary>The entry already exists.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_ENTRY_NOT_FOUND">
            <summary>The entry is not found.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_NAME_SERVICE_UNAVAILABLE">
            <summary>The name service is unavailable.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_INVALID_NAF_ID">
            <summary>The network address family is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_CANNOT_SUPPORT">
            <summary>The requested operation is not supported.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_NO_CONTEXT_AVAILABLE">
            <summary>No security context is available to allow impersonation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_INTERNAL_ERROR">
            <summary>An internal error occurred in RPC.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_ZERO_DIVIDE">
            <summary>The RPC server attempted an integer divide by zero.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_ADDRESS_ERROR">
            <summary>An addressing error occurred in the RPC server.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_FP_DIV_ZERO">
            <summary>A floating point operation at the RPC server caused a divide by zero.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_FP_UNDERFLOW">
            <summary>A floating point underflow occurred at the RPC server.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_FP_OVERFLOW">
            <summary>A floating point overflow occurred at the RPC server.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_NO_MORE_ENTRIES">
            <summary>The list of RPC servers available for auto-handle binding has been exhausted.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_SS_CHAR_TRANS_OPEN_FAIL">
            <summary>The file designated by DCERPCCHARTRANS cannot be opened.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_SS_CHAR_TRANS_SHORT_FILE">
            <summary>The file containing the character translation table has fewer than 512 bytes.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_SS_IN_NULL_CONTEXT">
            <summary>A null context handle is passed as an [in] parameter.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_SS_CONTEXT_MISMATCH">
            <summary>The context handle does not match any known context handles.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_SS_CONTEXT_DAMAGED">
            <summary>The context handle changed during a call.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_SS_HANDLES_MISMATCH">
            <summary>The binding handles passed to a remote procedure call do not match.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_SS_CANNOT_GET_CALL_HANDLE">
            <summary>The stub is unable to get the call handle.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_NULL_REF_POINTER">
            <summary>A null reference pointer was passed to the stub.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_ENUM_VALUE_OUT_OF_RANGE">
            <summary>The enumeration value is out of range.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_BYTE_COUNT_TOO_SMALL">
            <summary>The byte count is too small.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_BAD_STUB_DATA">
            <summary>The stub received bad data.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_CALL_IN_PROGRESS">
            <summary>A remote procedure call is already in progress for this thread.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_NO_MORE_BINDINGS">
            <summary>There are no more bindings.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_GROUP_MEMBER_NOT_FOUND">
            <summary>The group member was not found.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.EPT_NT_CANT_CREATE">
            <summary>The endpoint mapper database entry could not be created.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_INVALID_OBJECT">
            <summary>The object UUID is the nil UUID.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_NO_INTERFACES">
            <summary>No interfaces have been registered.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_CALL_CANCELLED">
            <summary>The remote procedure call was cancelled.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_BINDING_INCOMPLETE">
            <summary>The binding handle does not contain all required information.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_COMM_FAILURE">
            <summary>A communications failure occurred during a remote procedure call.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_UNSUPPORTED_AUTHN_LEVEL">
            <summary>The requested authentication level is not supported.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_NO_PRINC_NAME">
            <summary>No principal name registered.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_NOT_RPC_ERROR">
            <summary>The error specified is not a valid Windows RPC error code.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_UUID_LOCAL_ONLY">
            <summary>A UUID that is valid only on this computer has been allocated.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_SEC_PKG_ERROR">
            <summary>A security package specific error occurred.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_NOT_CANCELLED">
            <summary>Thread is not cancelled.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_INVALID_ES_ACTION">
            <summary>Invalid operation on the encoding/decoding handle.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_WRONG_ES_VERSION">
            <summary>Incompatible version of the serializing package.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_WRONG_STUB_VERSION">
            <summary>Incompatible version of the RPC stub.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_INVALID_PIPE_OBJECT">
            <summary>The RPC pipe object is invalid or corrupted.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_INVALID_PIPE_OPERATION">
            <summary>An invalid operation was attempted on an RPC pipe object.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_WRONG_PIPE_VERSION">
            <summary>Unsupported RPC pipe version.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_PIPE_CLOSED">
            <summary>The RPC pipe object has already been closed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_PIPE_DISCIPLINE_ERROR">
            <summary>The RPC call completed before all pipes were processed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_PIPE_EMPTY">
            <summary>No more data is available from the RPC pipe.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_INVALID_ASYNC_HANDLE">
            <summary>Invalid asynchronous remote procedure call handle.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_INVALID_ASYNC_CALL">
            <summary>Invalid asynchronous RPC call handle for this operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_PROXY_ACCESS_DENIED">
            <summary>Access to the HTTP proxy is denied.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_COOKIE_AUTH_FAILED">
            <summary>HTTP proxy server rejected the connection because the cookie authentication failed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.RPC_NT_SEND_INCOMPLETE">
            <summary>Some data remains to be sent in the request buffer.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ACPI_INVALID_OPCODE">
            <summary> ACPI error values
            An attempt was made to run an invalid AML opcode</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ACPI_STACK_OVERFLOW">
            <summary>The AML Interpreter Stack has overflowed</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ACPI_ASSERT_FAILED">
            <summary>An inconsistent state has occurred</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ACPI_INVALID_INDEX">
            <summary>An attempt was made to access an array outside of its bounds</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ACPI_INVALID_ARGUMENT">
            <summary>A required argument was not specified</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ACPI_FATAL">
            <summary>A fatal error has occurred</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ACPI_INVALID_SUPERNAME">
            <summary>An invalid SuperName was specified</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ACPI_INVALID_ARGTYPE">
            <summary>An argument with an incorrect type was specified</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ACPI_INVALID_OBJTYPE">
            <summary>An object with an incorrect type was specified</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ACPI_INVALID_TARGETTYPE">
            <summary>A target with an incorrect type was specified</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ACPI_INCORRECT_ARGUMENT_COUNT">
            <summary>An incorrect number of arguments were specified</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ACPI_ADDRESS_NOT_MAPPED">
            <summary>An address failed to translate</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ACPI_INVALID_EVENTTYPE">
            <summary>An incorrect event type was specified</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ACPI_HANDLER_COLLISION">
            <summary>A handler for the target already exists</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ACPI_INVALID_DATA">
            <summary>Invalid data for the target was specified</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ACPI_INVALID_REGION">
            <summary>An invalid region for the target was specified</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ACPI_INVALID_ACCESS_SIZE">
            <summary>An attempt was made to access a field outside of the defined range</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ACPI_ACQUIRE_GLOBAL_LOCK">
            <summary>The Global system lock could not be acquired</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ACPI_ALREADY_INITIALIZED">
            <summary>An attempt was made to reinitialize the ACPI subsystem</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ACPI_NOT_INITIALIZED">
            <summary>The ACPI subsystem has not been initialized</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ACPI_INVALID_MUTEX_LEVEL">
            <summary>An incorrect mutex was specified</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ACPI_MUTEX_NOT_OWNED">
            <summary>The mutex is not currently owned</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ACPI_MUTEX_NOT_OWNER">
            <summary>An attempt was made to access the mutex by a process that was not the owner</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ACPI_RS_ACCESS">
            <summary>An error occurred during an access to Region Space</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ACPI_INVALID_TABLE">
            <summary>An attempt was made to use an incorrect table</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ACPI_REG_HANDLER_FAILED">
            <summary>The registration of an ACPI event failed</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ACPI_POWER_REQUEST_FAILED">
            <summary>An ACPI Power Object failed to transition state</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CTX_WINSTATION_NAME_INVALID">
            <summary>Terminal Server specific Errors
            Session name %1 is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CTX_INVALID_PD">
            <summary>The protocol driver %1 is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CTX_PD_NOT_FOUND">
            <summary>The protocol driver %1 was not found in the system path.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CTX_CDM_CONNECT">
            <summary>The Client Drive Mapping Service Has Connected on Terminal Connection.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CTX_CDM_DISCONNECT">
            <summary>The Client Drive Mapping Service Has Disconnected on Terminal Connection.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CTX_CLOSE_PENDING">
            <summary>A close operation is pending on the Terminal Connection.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CTX_NO_OUTBUF">
            <summary>There are no free output buffers available.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CTX_MODEM_INF_NOT_FOUND">
            <summary>The MODEM.INF file was not found.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CTX_INVALID_MODEMNAME">
            <summary>The modem (%1) was not found in MODEM.INF.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CTX_RESPONSE_ERROR">
            <summary>The modem did not accept the command sent to it.
            Verify the configured modem name matches the attached modem.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CTX_MODEM_RESPONSE_TIMEOUT">
            <summary>The modem did not respond to the command sent to it.
            Verify the modem is properly cabled and powered on.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CTX_MODEM_RESPONSE_NO_CARRIER">
            <summary>Carrier detect has failed or carrier has been dropped due to disconnect.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CTX_MODEM_RESPONSE_NO_DIALTONE">
            <summary>Dial tone not detected within required time.
            Verify phone cable is properly attached and functional.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CTX_MODEM_RESPONSE_BUSY">
            <summary>Busy signal detected at remote site on callback.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CTX_MODEM_RESPONSE_VOICE">
            <summary>Voice detected at remote site on callback.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CTX_TD_ERROR">
            <summary>Transport driver error</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CTX_LICENSE_CLIENT_INVALID">
            <summary>The client you are using is not licensed to use this system. Your logon request is denied.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CTX_LICENSE_NOT_AVAILABLE">
            <summary>The system has reached its licensed logon limit.
            Please try again later.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CTX_LICENSE_EXPIRED">
            <summary>The system license has expired. Your logon request is denied.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CTX_WINSTATION_NOT_FOUND">
            <summary>The specified session cannot be found.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CTX_WINSTATION_NAME_COLLISION">
            <summary>The specified session name is already in use.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CTX_WINSTATION_BUSY">
            <summary>The task you are trying to do can't be completed because Remote Desktop Services is currently busy. Please try again in a few minutes. Other users should still be able to log on.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CTX_BAD_VIDEO_MODE">
            <summary>An attempt has been made to connect to a session whose video mode is not supported by the current client.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CTX_GRAPHICS_INVALID">
            <summary>The application attempted to enable DOS graphics mode.
            DOS graphics mode is not supported.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CTX_NOT_CONSOLE">
            <summary>The requested operation can be performed only on the system console.
            This is most often the result of a driver or system DLL requiring direct console access.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CTX_CLIENT_QUERY_TIMEOUT">
            <summary>The client failed to respond to the server connect message.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CTX_CONSOLE_DISCONNECT">
            <summary>Disconnecting the console session is not supported.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CTX_CONSOLE_CONNECT">
            <summary>Reconnecting a disconnected session to the console is not supported.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CTX_SHADOW_DENIED">
            <summary>The request to control another session remotely was denied.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CTX_WINSTATION_ACCESS_DENIED">
            <summary>A process has requested access to a session, but has not been granted those access rights.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CTX_INVALID_WD">
            <summary>The Terminal Connection driver %1 is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CTX_WD_NOT_FOUND">
            <summary>The Terminal Connection driver %1 was not found in the system path.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CTX_SHADOW_INVALID">
            <summary>The requested session cannot be controlled remotely.
            You cannot control your own session, a session that is trying to control your session,
            a session that has no user logged on, nor control other sessions from the console.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CTX_SHADOW_DISABLED">
            <summary>The requested session is not configured to allow remote control.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_RDP_PROTOCOL_ERROR">
            <summary>The RDP protocol component %2 detected an error in the protocol stream and has disconnected the client.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CTX_CLIENT_LICENSE_NOT_SET">
            <summary>Your request to connect to this Terminal server has been rejected.
            Your Terminal Server Client license number has not been entered for this copy of the Terminal Client.
            Please call your system administrator for help in entering a valid, unique license number for this Terminal Server Client.
            Click OK to continue.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CTX_CLIENT_LICENSE_IN_USE">
            <summary>Your request to connect to this Terminal server has been rejected.
            Your Terminal Server Client license number is currently being used by another user.
            Please call your system administrator to obtain a new copy of the Terminal Server Client with a valid, unique license number.
            Click OK to continue.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CTX_SHADOW_ENDED_BY_MODE_CHANGE">
            <summary>The remote control of the console was terminated because the display mode was changed. Changing the display mode in a remote control session is not supported.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CTX_SHADOW_NOT_RUNNING">
            <summary>Remote control could not be terminated because the specified session is not currently being remotely controlled.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CTX_LOGON_DISABLED">
            <summary>Your interactive logon privilege has been disabled.
            Please contact your system administrator.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CTX_SECURITY_LAYER_ERROR">
            <summary>The Terminal Server security layer detected an error in the protocol stream and has disconnected the client.
            Client IP: %2.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TS_INCOMPATIBLE_SESSIONS">
            <summary>The target session is incompatible with the current session.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TS_VIDEO_SUBSYSTEM_ERROR">
            <summary>Windows can't connect to your session because a problem occurred in the Windows video subsystem. Try connecting again later, or contact the server administrator for assistance.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PNP_BAD_MPS_TABLE">
            <summary> IO error values
            A device is missing in the system BIOS MPS table. This device will not be used.
            Please contact your system vendor for system BIOS update.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PNP_TRANSLATION_FAILED">
            <summary>A translator failed to translate resources.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PNP_IRQ_TRANSLATION_FAILED">
            <summary>A IRQ translator failed to translate resources.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PNP_INVALID_ID">
            <summary>Driver %2 returned invalid ID for a child device (%3).</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_IO_REISSUE_AS_CACHED">
            <summary>Reissue the given operation as a cached IO operation</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_MUI_FILE_NOT_FOUND">
            <summary> MUI error values
            The resource loader failed to find MUI file.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_MUI_INVALID_FILE">
            <summary>The resource loader failed to load MUI file because the file fail to pass validation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_MUI_INVALID_RC_CONFIG">
            <summary>The RC Manifest is corrupted with garbage data or unsupported version or missing required item.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_MUI_INVALID_LOCALE_NAME">
            <summary>The RC Manifest has invalid culture name.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_MUI_INVALID_ULTIMATEFALLBACK_NAME">
            <summary>The RC Manifest has invalid ultimatefallback name.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_MUI_FILE_NOT_LOADED">
            <summary>The resource loader cache doesn't have loaded MUI entry.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_RESOURCE_ENUM_USER_STOP">
            <summary>User stopped resource enumeration.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FLT_NO_HANDLER_DEFINED">
            <summary>A handler was not defined by the filter for this operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FLT_CONTEXT_ALREADY_DEFINED">
            <summary>A context is already defined for this object.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FLT_INVALID_ASYNCHRONOUS_REQUEST">
            <summary>Asynchronous requests are not valid for this operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FLT_DISALLOW_FAST_IO">
            <summary>Internal error code used by the filter manager to determine if a fastio operation should be forced down the IRP path. Mini-filters should never return this value.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FLT_DISALLOW_FSFILTER_IO">
            <summary> The same code used to disallow fast IO is also used to disallow the FS
             filter QueryOpen callback.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FLT_INVALID_NAME_REQUEST">
            <summary>An invalid name request was made. The name requested cannot be retrieved at this time.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FLT_NOT_SAFE_TO_POST_OPERATION">
            <summary>Posting this operation to a worker thread for further processing is not safe at this time because it could lead to a system deadlock.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FLT_NOT_INITIALIZED">
            <summary>The Filter Manager was not initialized when a filter tried to register. Make sure that the Filter Manager is getting loaded as a driver.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FLT_FILTER_NOT_READY">
            <summary>The filter is not ready for attachment to volumes because it has not finished initializing (FltStartFiltering has not been called).</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FLT_POST_OPERATION_CLEANUP">
            <summary>The filter must cleanup any operation specific context at this time because it is being removed from the system before the operation is completed by the lower drivers.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FLT_INTERNAL_ERROR">
            <summary>The Filter Manager had an internal error from which it cannot recover, therefore the operation has been failed. This is usually the result of a filter returning an invalid value from a pre-operation callback.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FLT_DELETING_OBJECT">
            <summary>The object specified for this action is in the process of being deleted, therefore the action requested cannot be completed at this time.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FLT_MUST_BE_NONPAGED_POOL">
            <summary>Non-paged pool must be used for this type of context.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FLT_DUPLICATE_ENTRY">
            <summary>A duplicate handler definition has been provided for an operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FLT_CBDQ_DISABLED">
            <summary>The callback data queue has been disabled.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FLT_DO_NOT_ATTACH">
            <summary>Do not attach the filter to the volume at this time.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FLT_DO_NOT_DETACH">
            <summary>Do not detach the filter from the volume at this time.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FLT_INSTANCE_ALTITUDE_COLLISION">
            <summary>An instance already exists at this altitude on the volume specified.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FLT_INSTANCE_NAME_COLLISION">
            <summary>An instance already exists with this name on the volume specified.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FLT_FILTER_NOT_FOUND">
            <summary>The system could not find the filter specified.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FLT_VOLUME_NOT_FOUND">
            <summary>The system could not find the volume specified.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FLT_INSTANCE_NOT_FOUND">
            <summary>The system could not find the instance specified.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FLT_CONTEXT_ALLOCATION_NOT_FOUND">
            <summary>No registered context allocation definition was found for the given request.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FLT_INVALID_CONTEXT_REGISTRATION">
            <summary>An invalid parameter was specified during context registration.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FLT_NAME_CACHE_MISS">
            <summary>The name requested was not found in Filter Manager's name cache and could not be retrieved from the file system.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FLT_NO_DEVICE_OBJECT">
            <summary>The requested device object does not exist for the given volume.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FLT_VOLUME_ALREADY_MOUNTED">
            <summary>The specified volume is already mounted.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FLT_ALREADY_ENLISTED">
            <summary>The specified Transaction Context is already enlisted in a transaction</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FLT_CONTEXT_ALREADY_LINKED">
            <summary>The specifiec context is already attached to another object</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FLT_NO_WAITER_FOR_REPLY">
            <summary>No waiter is present for the filter's reply to this message.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FLT_REGISTRATION_BUSY">
            <summary>The filesystem database resource is in use. Registration cannot complete at this time.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SXS_SECTION_NOT_FOUND">
            <summary> Side-by-side (SXS) error values
            The requested section is not present in the activation context.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SXS_CANT_GEN_ACTCTX">
            <summary>Windows was not able to process the application binding information.
            Please refer to your System Event Log for further information.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SXS_INVALID_ACTCTXDATA_FORMAT">
            <summary>The application binding data format is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SXS_ASSEMBLY_NOT_FOUND">
            <summary>The referenced assembly is not installed on your system.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SXS_MANIFEST_FORMAT_ERROR">
            <summary>The manifest file does not begin with the required tag and format information.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SXS_MANIFEST_PARSE_ERROR">
            <summary>The manifest file contains one or more syntax errors.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SXS_ACTIVATION_CONTEXT_DISABLED">
            <summary>The application attempted to activate a disabled activation context.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SXS_KEY_NOT_FOUND">
            <summary>The requested lookup key was not found in any active activation context.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SXS_VERSION_CONFLICT">
            <summary>A component version required by the application conflicts with another component version already active.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SXS_WRONG_SECTION_TYPE">
            <summary>The type requested activation context section does not match the query API used.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SXS_THREAD_QUERIES_DISABLED">
            <summary>Lack of system resources has required isolated activation to be disabled for the current thread of execution.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SXS_ASSEMBLY_MISSING">
            <summary>The referenced assembly could not be found.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SXS_RELEASE_ACTIVATION_CONTEXT">
            <summary>A kernel mode component is releasing a reference on an activation context.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SXS_PROCESS_DEFAULT_ALREADY_SET">
            <summary>An attempt to set the process default activation context failed because the process default activation context was already set.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SXS_EARLY_DEACTIVATION">
            <summary>The activation context being deactivated is not the most recently activated one.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SXS_INVALID_DEACTIVATION">
            <summary>The activation context being deactivated is not active for the current thread of execution.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SXS_MULTIPLE_DEACTIVATION">
            <summary>The activation context being deactivated has already been deactivated.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SXS_SYSTEM_DEFAULT_ACTIVATION_CONTEXT_EMPTY">
            <summary>The activation context of system default assembly could not be generated.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SXS_PROCESS_TERMINATION_REQUESTED">
            <summary>A component used by the isolation facility has requested to terminate the process.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SXS_CORRUPT_ACTIVATION_STACK">
            <summary>The activation context activation stack for the running thread of execution is corrupt.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SXS_CORRUPTION">
            <summary>The application isolation metadata for this process or thread has become corrupt.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SXS_INVALID_IDENTITY_ATTRIBUTE_VALUE">
            <summary>The value of an attribute in an identity is not within the legal range.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SXS_INVALID_IDENTITY_ATTRIBUTE_NAME">
            <summary>The name of an attribute in an identity is not within the legal range.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SXS_IDENTITY_DUPLICATE_ATTRIBUTE">
            <summary>An identity contains two definitions for the same attribute.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SXS_IDENTITY_PARSE_ERROR">
            <summary>The identity string is malformed. This may be due to a trailing comma, more than two unnamed attributes, missing attribute name or missing attribute value.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SXS_COMPONENT_STORE_CORRUPT">
            <summary>The component store has been corrupted.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SXS_FILE_HASH_MISMATCH">
            <summary>A component's file does not match the verification information present in the component manifest.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SXS_MANIFEST_IDENTITY_SAME_BUT_CONTENTS_DIFFERENT">
            <summary>The identities of the manifests are identical but their contents are different.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SXS_IDENTITIES_DIFFERENT">
            <summary>The component identities are different.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SXS_ASSEMBLY_IS_NOT_A_DEPLOYMENT">
            <summary>The assembly is not a deployment.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SXS_FILE_NOT_PART_OF_ASSEMBLY">
            <summary>The file is not a part of the assembly.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ADVANCED_INSTALLER_FAILED">
            <summary>An advanced installer failed during setup or servicing.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_XML_ENCODING_MISMATCH">
            <summary>The character encoding in the XML declaration did not match the encoding used in the document.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SXS_MANIFEST_TOO_BIG">
            <summary>The size of the manifest exceeds the maximum allowed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SXS_SETTING_NOT_REGISTERED">
            <summary>The setting is not registered.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SXS_TRANSACTION_CLOSURE_INCOMPLETE">
            <summary>One or more required members of the transaction are not present.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SMI_PRIMITIVE_INSTALLER_FAILED">
            <summary>The SMI primitive installer failed during setup or servicing.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GENERIC_COMMAND_FAILED">
            <summary>A generic command executable returned a result that indicates failure.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SXS_FILE_HASH_MISSING">
            <summary>A component is missing file verification information in its manifest.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLUSTER_INVALID_NODE">
            <summary> Cluster error values
            The cluster node is not valid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLUSTER_NODE_EXISTS">
            <summary>The cluster node already exists.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLUSTER_JOIN_IN_PROGRESS">
            <summary>A node is in the process of joining the cluster.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLUSTER_NODE_NOT_FOUND">
            <summary>The cluster node was not found.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLUSTER_LOCAL_NODE_NOT_FOUND">
            <summary>The cluster local node information was not found.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLUSTER_NETWORK_EXISTS">
            <summary>The cluster network already exists.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLUSTER_NETWORK_NOT_FOUND">
            <summary>The cluster network was not found.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLUSTER_NETINTERFACE_EXISTS">
            <summary>The cluster network interface already exists.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLUSTER_NETINTERFACE_NOT_FOUND">
            <summary>The cluster network interface was not found.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLUSTER_INVALID_REQUEST">
            <summary>The cluster request is not valid for this object.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLUSTER_INVALID_NETWORK_PROVIDER">
            <summary>The cluster network provider is not valid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLUSTER_NODE_DOWN">
            <summary>The cluster node is down.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLUSTER_NODE_UNREACHABLE">
            <summary>The cluster node is not reachable.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLUSTER_NODE_NOT_MEMBER">
            <summary>The cluster node is not a member of the cluster.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLUSTER_JOIN_NOT_IN_PROGRESS">
            <summary>A cluster join operation is not in progress.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLUSTER_INVALID_NETWORK">
            <summary>The cluster network is not valid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLUSTER_NO_NET_ADAPTERS">
            <summary>No network adapters are available.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLUSTER_NODE_UP">
            <summary>The cluster node is up.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLUSTER_NODE_PAUSED">
            <summary>The cluster node is paused.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLUSTER_NODE_NOT_PAUSED">
            <summary>The cluster node is not paused.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLUSTER_NO_SECURITY_CONTEXT">
            <summary>No cluster security context is available.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLUSTER_NETWORK_NOT_INTERNAL">
            <summary>The cluster network is not configured for internal cluster communication.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLUSTER_POISONED">
            <summary>The cluster node has been poisoned.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLUSTER_NON_CSV_PATH">
            <summary>The path does not belong to a cluster shared volume.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLUSTER_CSV_VOLUME_NOT_LOCAL">
            <summary>The cluster shared volume is not locally mounted.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLUSTER_CSV_READ_OPLOCK_BREAK_IN_PROGRESS">
            <summary>The operation has failed because read oplock break is in progress.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLUSTER_CSV_AUTO_PAUSE_ERROR">
            <summary>The operation has failed. CSVFS has to pause and refresh information.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLUSTER_CSV_REDIRECTED">
            <summary>The operation has failed. CSVFS does not allow block i/o in redirected mode.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLUSTER_CSV_NOT_REDIRECTED">
            <summary>The operation has failed. CSVFS is not in redirected mode.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLUSTER_CSV_VOLUME_DRAINING">
            <summary>CSVFS is failing operation because it is in draining state.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLUSTER_CSV_SNAPSHOT_CREATION_IN_PROGRESS">
            <summary>The operation has failed because snapshot creation is in progress.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLUSTER_CSV_VOLUME_DRAINING_SUCCEEDED_DOWNLEVEL">
            <summary>The operation has succeeded on the down level file system, but CSV is failing it because it is in draining state.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLUSTER_CSV_NO_SNAPSHOTS">
            <summary>Volsnap on the coordinating node returned an error indicating that there is no snapshots on this volume.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CSV_IO_PAUSE_TIMEOUT">
            <summary>The operation has failed because CSV volume was not able to recover in time specified on this file object.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLUSTER_CSV_INVALID_HANDLE">
            <summary>The operation has failed because CSV has invalidated this file object.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLUSTER_CSV_SUPPORTED_ONLY_ON_COORDINATOR">
            <summary>This operation is supported only on the CSV coordinator node.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLUSTER_CAM_TICKET_REPLAY_DETECTED">
            <summary>Cluster CAM has detected that somone is trying to reply ticket.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TRANSACTIONAL_CONFLICT">
            <summary> Transaction Manager error values
            The function attempted to use a name that is reserved for use by another transaction.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INVALID_TRANSACTION">
            <summary>The transaction handle associated with this operation is not valid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TRANSACTION_NOT_ACTIVE">
            <summary>The requested operation was made in the context of a transaction that is no longer active.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TM_INITIALIZATION_FAILED">
            <summary>The Transaction Manager was unable to be successfully initialized. Transacted operations are not supported.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_RM_NOT_ACTIVE">
            <summary>Transaction support within the specified resource manager is not started or was shut down due to an error.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_RM_METADATA_CORRUPT">
            <summary>The metadata of the RM has been corrupted. The RM will not function.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TRANSACTION_NOT_JOINED">
            <summary>The resource manager has attempted to prepare a transaction that it has not successfully joined.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_DIRECTORY_NOT_RM">
            <summary>The specified directory does not contain a file system resource manager.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_COULD_NOT_RESIZE_LOG">
            <summary>The log could not be set to the requested size.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TRANSACTIONS_UNSUPPORTED_REMOTE">
            <summary>The remote server or share does not support transacted file operations.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_RESIZE_INVALID_SIZE">
            <summary>The requested log size for the file system resource manager is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_REMOTE_FILE_VERSION_MISMATCH">
            <summary>The remote server sent mismatching version number or Fid for a file opened with transactions.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CRM_PROTOCOL_ALREADY_EXISTS">
            <summary>The RM tried to register a protocol that already exists.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TRANSACTION_PROPAGATION_FAILED">
            <summary>The attempt to propagate the Transaction failed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CRM_PROTOCOL_NOT_FOUND">
            <summary>The requested propagation protocol was not registered as a CRM.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TRANSACTION_SUPERIOR_EXISTS">
            <summary>The Transaction object already has a superior enlistment, and the caller attempted an operation that would have created a new superior. Only a single superior enlistment is allowed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TRANSACTION_REQUEST_NOT_VALID">
            <summary>The requested operation is not valid on the Transaction object in its current state.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TRANSACTION_NOT_REQUESTED">
            <summary>The caller has called a response API, but the response is not expected because the TM did not issue the corresponding request to the caller.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TRANSACTION_ALREADY_ABORTED">
            <summary>It is too late to perform the requested operation, since the Transaction has already been aborted.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TRANSACTION_ALREADY_COMMITTED">
            <summary>It is too late to perform the requested operation, since the Transaction has already been committed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TRANSACTION_INVALID_MARSHALL_BUFFER">
            <summary>The buffer passed in to NtPushTransaction or NtPullTransaction is not in a valid format.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CURRENT_TRANSACTION_NOT_VALID">
            <summary>The current transaction context associated with the thread is not a valid handle to a transaction object.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_GROWTH_FAILED">
            <summary>An attempt to create space in the transactional resource manager's log failed. The failure status has been recorded in the event log.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_OBJECT_NO_LONGER_EXISTS">
            <summary>The object (file, stream, link) corresponding to the handle has been deleted by a transaction savepoint rollback.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_STREAM_MINIVERSION_NOT_FOUND">
            <summary>The specified file miniversion was not found for this transacted file open.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_STREAM_MINIVERSION_NOT_VALID">
            <summary>The specified file miniversion was found but has been invalidated. Most likely cause is a transaction savepoint rollback.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_MINIVERSION_INACCESSIBLE_FROM_SPECIFIED_TRANSACTION">
            <summary>A miniversion may only be opened in the context of the transaction that created it.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CANT_OPEN_MINIVERSION_WITH_MODIFY_INTENT">
            <summary>It is not possible to open a miniversion with modify access.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CANT_CREATE_MORE_STREAM_MINIVERSIONS">
            <summary>It is not possible to create any more miniversions for this stream.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HANDLE_NO_LONGER_VALID">
            <summary>The handle has been invalidated by a transaction. The most likely cause is the presence of memory mapping on a file or an open handle when the transaction ended or rolled back to savepoint.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NO_TXF_METADATA">
            <summary>There is no transaction metadata on the file.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_CORRUPTION_DETECTED">
            <summary>The log data is corrupt.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CANT_RECOVER_WITH_HANDLE_OPEN">
            <summary>The file can't be recovered because there is a handle still open on it.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_RM_DISCONNECTED">
            <summary>The transaction outcome is unavailable because the resource manager responsible for it has disconnected.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ENLISTMENT_NOT_SUPERIOR">
            <summary>The request was rejected because the enlistment in question is not a superior enlistment.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_RECOVERY_NOT_NEEDED">
            <summary>The transactional resource manager is already consistent. Recovery is not needed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_RM_ALREADY_STARTED">
            <summary>The transactional resource manager has already been started.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FILE_IDENTITY_NOT_PERSISTENT">
            <summary>The file cannot be opened transactionally, because its identity depends on the outcome of an unresolved transaction.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CANT_BREAK_TRANSACTIONAL_DEPENDENCY">
            <summary>The operation cannot be performed because another transaction is depending on the fact that this property will not change.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CANT_CROSS_RM_BOUNDARY">
            <summary>The operation would involve a single file with two transactional resource managers and is therefore not allowed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TXF_DIR_NOT_EMPTY">
            <summary>The $Txf directory must be empty for this operation to succeed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_INDOUBT_TRANSACTIONS_EXIST">
            <summary>The operation would leave a transactional resource manager in an inconsistent state and is therefore not allowed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TM_VOLATILE">
            <summary>The operation could not be completed because the transaction manager does not have a log.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ROLLBACK_TIMER_EXPIRED">
            <summary>A rollback could not be scheduled because a previously scheduled rollback has already executed or been queued for execution.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TXF_ATTRIBUTE_CORRUPT">
            <summary>The transactional metadata attribute on the file or directory %hs is corrupt and unreadable.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_EFS_NOT_ALLOWED_IN_TRANSACTION">
            <summary>The encryption operation could not be completed because a transaction is active.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TRANSACTIONAL_OPEN_NOT_ALLOWED">
            <summary>This object is not allowed to be opened in a transaction.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TRANSACTED_MAPPING_UNSUPPORTED_REMOTE">
            <summary>Memory mapping (creating a mapped section) a remote file under a transaction is not supported.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TXF_METADATA_ALREADY_PRESENT">
            <summary>Transaction metadata is already present on this file and cannot be superseded.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TRANSACTION_SCOPE_CALLBACKS_NOT_SET">
            <summary>A transaction scope could not be entered because the scope handler has not been initialized.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TRANSACTION_REQUIRED_PROMOTION">
            <summary>Promotion was required in order to allow the resource manager to enlist, but the transaction was set to disallow it.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CANNOT_EXECUTE_FILE_IN_TRANSACTION">
            <summary>This file is open for modification in an unresolved transaction and may be opened for execute only by a transacted reader.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TRANSACTIONS_NOT_FROZEN">
            <summary>The request to thaw frozen transactions was ignored because transactions had not previously been frozen.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TRANSACTION_FREEZE_IN_PROGRESS">
            <summary>Transactions cannot be frozen because a freeze is already in progress.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NOT_SNAPSHOT_VOLUME">
            <summary>The target volume is not a snapshot volume. This operation is only valid on a volume mounted as a snapshot.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NO_SAVEPOINT_WITH_OPEN_FILES">
            <summary>The savepoint operation failed because files are open on the transaction. This is not permitted.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SPARSE_NOT_ALLOWED_IN_TRANSACTION">
            <summary>The sparse operation could not be completed because a transaction is active on the file.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TM_IDENTITY_MISMATCH">
            <summary>The call to create a TransactionManager object failed because the Tm Identity stored in the logfile does not match the Tm Identity that was passed in as an argument.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FLOATED_SECTION">
            <summary>I/O was attempted on a section object that has been floated as a result of a transaction ending. There is no valid data.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CANNOT_ACCEPT_TRANSACTED_WORK">
            <summary>The transactional resource manager cannot currently accept transacted work due to a transient condition such as low resources.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CANNOT_ABORT_TRANSACTIONS">
            <summary>The transactional resource manager had too many tranactions outstanding that could not be aborted. The transactional resource manger has been shut down.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TRANSACTION_NOT_FOUND">
            <summary>The specified Transaction was unable to be opened, because it was not found.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_RESOURCEMANAGER_NOT_FOUND">
            <summary>The specified ResourceManager was unable to be opened, because it was not found.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_ENLISTMENT_NOT_FOUND">
            <summary>The specified Enlistment was unable to be opened, because it was not found.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TRANSACTIONMANAGER_NOT_FOUND">
            <summary>The specified TransactionManager was unable to be opened, because it was not found.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TRANSACTIONMANAGER_NOT_ONLINE">
            <summary>The object specified could not be created or opened, because its associated TransactionManager is not online.  The TransactionManager must be brought fully Online by calling RecoverTransactionManager to recover to the end of its LogFile before objects in its Transaction or ResourceManager namespaces can be opened.  In addition, errors in writing records to its LogFile can cause a TransactionManager to go offline.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TRANSACTIONMANAGER_RECOVERY_NAME_COLLISION">
            <summary>The specified TransactionManager was unable to create the objects contained in its logfile in the Ob namespace. Therefore, the TransactionManager was unable to recover.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TRANSACTION_NOT_ROOT">
            <summary>The call to create a superior Enlistment on this Transaction object could not be completed, because the Transaction object specified for the enlistment is a subordinate branch of the Transaction. Only the root of the Transaction can be enlisted on as a superior.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TRANSACTION_OBJECT_EXPIRED">
            <summary>Because the associated transaction manager or resource manager has been closed, the handle is no longer valid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_COMPRESSION_NOT_ALLOWED_IN_TRANSACTION">
            <summary>The compression operation could not be completed because a transaction is active on the file.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TRANSACTION_RESPONSE_NOT_ENLISTED">
            <summary>The specified operation could not be performed on this Superior enlistment, because the enlistment was not created with the corresponding completion response in the NotificationMask.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TRANSACTION_RECORD_TOO_LONG">
            <summary>The specified operation could not be performed, because the record that would be logged was too long. This can occur because of two conditions:  either there are too many Enlistments on this Transaction, or the combined RecoveryInformation being logged on behalf of those Enlistments is too long.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NO_LINK_TRACKING_IN_TRANSACTION">
            <summary>The link tracking operation could not be completed because a transaction is active.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_OPERATION_NOT_SUPPORTED_IN_TRANSACTION">
            <summary>This operation cannot be performed in a transaction.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TRANSACTION_INTEGRITY_VIOLATED">
            <summary>The kernel transaction manager had to abort or forget the transaction because it blocked forward progress.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TRANSACTIONMANAGER_IDENTITY_MISMATCH">
            <summary>The TransactionManager identity that was supplied did not match the one recorded in the TransactionManager's log file.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_RM_CANNOT_BE_FROZEN_FOR_SNAPSHOT">
            <summary>This snapshot operation cannot continue because a transactional resource manager cannot be frozen in its current state.  Please try again.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TRANSACTION_MUST_WRITETHROUGH">
            <summary>The transaction cannot be enlisted on with the specified EnlistmentMask, because the transaction has already completed the PrePrepare phase.  In order to ensure correctness, the ResourceManager must switch to a write-through mode and cease caching data within this transaction.  Enlisting for only subsequent transaction phases may still succeed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TRANSACTION_NO_SUPERIOR">
            <summary>The transaction does not have a superior enlistment.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_EXPIRED_HANDLE">
            <summary>The handle is no longer properly associated with its transaction.  It may have been opened in a transactional resource manager that was subsequently forced to restart.  Please close the handle and open a new one.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TRANSACTION_NOT_ENLISTED">
            <summary>The specified operation could not be performed because the resource manager is not enlisted in the transaction.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_SECTOR_INVALID">
            <summary> CLFS (common log file system) error values
            Log service found an invalid log sector.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_SECTOR_PARITY_INVALID">
            <summary>Log service encountered a log sector with invalid block parity.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_SECTOR_REMAPPED">
            <summary>Log service encountered a remapped log sector.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_BLOCK_INCOMPLETE">
            <summary>Log service encountered a partial or incomplete log block.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_INVALID_RANGE">
            <summary>Log service encountered an attempt access data outside the active log range.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_BLOCKS_EXHAUSTED">
            <summary>Log service user log marshalling buffers are exhausted.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_READ_CONTEXT_INVALID">
            <summary>Log service encountered an attempt read from a marshalling area with an invalid read context.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_RESTART_INVALID">
            <summary>Log service encountered an invalid log restart area.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_BLOCK_VERSION">
            <summary>Log service encountered an invalid log block version.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_BLOCK_INVALID">
            <summary>Log service encountered an invalid log block.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_READ_MODE_INVALID">
            <summary>Log service encountered an attempt to read the log with an invalid read mode.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_NO_RESTART">
            <summary>Log service encountered a log stream with no restart area.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_METADATA_CORRUPT">
            <summary>Log service encountered a corrupted metadata file.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_METADATA_INVALID">
            <summary>Log service encountered a metadata file that could not be created by the log file system.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_METADATA_INCONSISTENT">
            <summary>Log service encountered a metadata file with inconsistent data.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_RESERVATION_INVALID">
            <summary>Log service encountered an attempt to erroneously allocate or dispose reservation space.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_CANT_DELETE">
            <summary>Log service cannot delete log file or file system container.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_CONTAINER_LIMIT_EXCEEDED">
            <summary>Log service has reached the maximum allowable containers allocated to a log file.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_START_OF_LOG">
            <summary>Log service has attempted to read or write backwards past the start of the log.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_POLICY_ALREADY_INSTALLED">
            <summary>Log policy could not be installed because a policy of the same type is already present.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_POLICY_NOT_INSTALLED">
            <summary>Log policy in question was not installed at the time of the request.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_POLICY_INVALID">
            <summary>The installed set of policies on the log is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_POLICY_CONFLICT">
            <summary>A policy on the log in question prevented the operation from completing.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_PINNED_ARCHIVE_TAIL">
            <summary>Log space cannot be reclaimed because the log is pinned by the archive tail.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_RECORD_NONEXISTENT">
            <summary>Log record is not a record in the log file.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_RECORDS_RESERVED_INVALID">
            <summary>Number of reserved log records or the adjustment of the number of reserved log records is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_SPACE_RESERVED_INVALID">
            <summary>Reserved log space or the adjustment of the log space is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_TAIL_INVALID">
            <summary>A new or existing archive tail or base of the active log is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_FULL">
            <summary>Log space is exhausted.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_MULTIPLEXED">
            <summary>Log is multiplexed, no direct writes to the physical log is allowed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_DEDICATED">
            <summary>The operation failed because the log is a dedicated log.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_ARCHIVE_NOT_IN_PROGRESS">
            <summary>The operation requires an archive context.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_ARCHIVE_IN_PROGRESS">
            <summary>Log archival is in progress.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_EPHEMERAL">
            <summary>The operation requires a non-ephemeral log, but the log is ephemeral.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_NOT_ENOUGH_CONTAINERS">
            <summary>The log must have at least two containers before it can be read from or written to.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_CLIENT_ALREADY_REGISTERED">
            <summary>A log client has already registered on the stream.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_CLIENT_NOT_REGISTERED">
            <summary>A log client has not been registered on the stream.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_FULL_HANDLER_IN_PROGRESS">
            <summary>A request has already been made to handle the log full condition.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_CONTAINER_READ_FAILED">
            <summary>Log service encountered an error when attempting to read from a log container.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_CONTAINER_WRITE_FAILED">
            <summary>Log service encountered an error when attempting to write to a log container.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_CONTAINER_OPEN_FAILED">
            <summary>Log service encountered an error when attempting open a log container.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_CONTAINER_STATE_INVALID">
            <summary>Log service encountered an invalid container state when attempting a requested action.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_STATE_INVALID">
            <summary>Log service is not in the correct state to perform a requested action.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_PINNED">
            <summary>Log space cannot be reclaimed because the log is pinned.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_METADATA_FLUSH_FAILED">
            <summary>Log metadata flush failed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_INCONSISTENT_SECURITY">
            <summary>Security on the log and its containers is inconsistent.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_APPENDED_FLUSH_FAILED">
            <summary>Records were appended to the log or reservation changes were made, but the log could not be flushed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_LOG_PINNED_RESERVATION">
            <summary>The log is pinned due to reservation consuming most of the log space. Free some reserved records to make space available.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VIDEO_HUNG_DISPLAY_DRIVER_THREAD">
            <summary>XDDM Video Facility Error codes (videoprt.sys)
            {Display Driver Stopped Responding}
            The %hs display driver has stopped working normally. Save your work and reboot the system to restore full display functionality. The next time you reboot the machine a dialog will be displayed giving you a chance to upload data about this failure to Microsoft.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VIDEO_HUNG_DISPLAY_DRIVER_THREAD_RECOVERED">
            <summary>{Display Driver Stopped Responding and recovered}
            The %hs display driver has stopped working normally. The recovery had been performed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VIDEO_DRIVER_DEBUG_REPORT_REQUEST">
            <summary>{Display Driver Recovered From Failure}
            The %hs display driver has detected and recovered from a failure. Some graphical operations may have failed. The next time you reboot the machine a dialog will be displayed giving you a chance to upload data about this failure to Microsoft.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_MONITOR_NO_DESCRIPTOR">
            <summary>Monitor Facility Error codes (monitor.sys)
            Monitor descriptor could not be obtained.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_MONITOR_UNKNOWN_DESCRIPTOR_FORMAT">
            <summary>Format of the obtained monitor descriptor is not supported by this release.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_MONITOR_INVALID_DESCRIPTOR_CHECKSUM">
            <summary>Checksum of the obtained monitor descriptor is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_MONITOR_INVALID_STANDARD_TIMING_BLOCK">
            <summary>Monitor descriptor contains an invalid standard timing block.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_MONITOR_WMI_DATABLOCK_REGISTRATION_FAILED">
            <summary>WMI data block registration failed for one of the MSMonitorClass WMI subclasses.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_MONITOR_INVALID_SERIAL_NUMBER_MONDSC_BLOCK">
            <summary>Provided monitor descriptor block is either corrupted or does not contain monitor's detailed serial number.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_MONITOR_INVALID_USER_FRIENDLY_MONDSC_BLOCK">
            <summary>Provided monitor descriptor block is either corrupted or does not contain monitor's user friendly name.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_MONITOR_NO_MORE_DESCRIPTOR_DATA">
            <summary>There is no monitor descriptor data at the specified (offset, size) region.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_MONITOR_INVALID_DETAILED_TIMING_BLOCK">
            <summary>Monitor descriptor contains an invalid detailed timing block.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_MONITOR_INVALID_MANUFACTURE_DATE">
            <summary>Monitor descriptor contains invalid manufacture date.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_NOT_EXCLUSIVE_MODE_OWNER">
            <summary>Graphics Facility Error codes (dxg.sys, dxgkrnl.sys)
              Common Windows Graphics Kernel Subsystem status codes {0x0000..0x00ff}
            Exclusive mode ownership is needed to create unmanaged primary allocation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_INSUFFICIENT_DMA_BUFFER">
            <summary>The driver needs more DMA buffer space in order to complete the requested operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_INVALID_DISPLAY_ADAPTER">
            <summary>Specified display adapter handle is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_ADAPTER_WAS_RESET">
            <summary>Specified display adapter and all of its state has been reset.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_INVALID_DRIVER_MODEL">
            <summary>The driver stack doesn't match the expected driver model.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_PRESENT_MODE_CHANGED">
            <summary>Present happened but ended up into the changed desktop mode</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_PRESENT_OCCLUDED">
            <summary>Nothing to present due to desktop occlusion</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_PRESENT_DENIED">
            <summary>Not able to present due to denial of desktop access</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_CANNOTCOLORCONVERT">
            <summary>Not able to present with color convertion</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_DRIVER_MISMATCH">
            <summary>The kernel driver detected a version mismatch between it and the user mode driver.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_PARTIAL_DATA_POPULATED">
            <summary>Specified buffer is not big enough to contain entire requested dataset. Partial data populated upto the size of the buffer. Caller needs to provide buffer of size as specified in the partially populated buffer's content (interface specific).</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_PRESENT_REDIRECTION_DISABLED">
            <summary>Present redirection is disabled (desktop windowing management subsystem is off).</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_PRESENT_UNOCCLUDED">
            <summary>Previous exclusive VidPn source owner has released its ownership</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_WINDOWDC_NOT_AVAILABLE">
            <summary>Window DC is not available for presentation</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_WINDOWLESS_PRESENT_DISABLED">
            <summary>Windowless present is disabled (desktop windowing management subsystem is off).</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_NO_VIDEO_MEMORY">
            <summary>  Video Memory Manager (VidMM) specific status codes {0x0100..0x01ff}
            Not enough video memory available to complete the operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_CANT_LOCK_MEMORY">
            <summary>Couldn't probe and lock the underlying memory of an allocation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_ALLOCATION_BUSY">
            <summary>The allocation is currently busy.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_TOO_MANY_REFERENCES">
            <summary>An object being referenced has already reached the maximum reference count and can't be referenced any further.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_TRY_AGAIN_LATER">
            <summary>A problem couldn't be solved due to some currently existing condition. The problem should be tried again later.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_TRY_AGAIN_NOW">
            <summary>A problem couldn't be solved due to some currently existing condition. The problem should be tried again immediately.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_ALLOCATION_INVALID">
            <summary>The allocation is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_UNSWIZZLING_APERTURE_UNAVAILABLE">
            <summary>No more unswizzling aperture are currently available.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_UNSWIZZLING_APERTURE_UNSUPPORTED">
            <summary>The current allocation can't be unswizzled by an aperture.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_CANT_EVICT_PINNED_ALLOCATION">
            <summary>The request failed because a pinned allocation can't be evicted.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_INVALID_ALLOCATION_USAGE">
            <summary>The allocation can't be used from its current segment location for the specified operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_CANT_RENDER_LOCKED_ALLOCATION">
            <summary>A locked allocation can't be used in the current command buffer.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_ALLOCATION_CLOSED">
            <summary>The allocation being referenced has been closed permanently.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_INVALID_ALLOCATION_INSTANCE">
            <summary>An invalid allocation instance is being referenced.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_INVALID_ALLOCATION_HANDLE">
            <summary>An invalid allocation handle is being referenced.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_WRONG_ALLOCATION_DEVICE">
            <summary>The allocation being referenced doesn't belong to the current device.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_ALLOCATION_CONTENT_LOST">
            <summary>The specified allocation lost its content.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_GPU_EXCEPTION_ON_DEVICE">
            <summary>  Video GPU Scheduler (VidSch) specific status codes {0x0200..0x02ff}
            GPU exception is detected on the given device. The device is not able to be scheduled.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_SKIP_ALLOCATION_PREPARATION">
            <summary>Skip preparation of allocations referenced by the DMA buffer.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_INVALID_VIDPN_TOPOLOGY">
            <summary>  Video Present Network Management (VidPNMgr) specific status codes {0x0300..0x03ff}
            Specified VidPN topology is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_VIDPN_TOPOLOGY_NOT_SUPPORTED">
            <summary>Specified VidPN topology is valid but is not supported by this model of the display adapter.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_VIDPN_TOPOLOGY_CURRENTLY_NOT_SUPPORTED">
            <summary>Specified VidPN topology is valid but is not supported by the display adapter at this time, due to current allocation of its resources.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_INVALID_VIDPN">
            <summary>Specified VidPN handle is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE">
            <summary>Specified video present source is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET">
            <summary>Specified video present target is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_VIDPN_MODALITY_NOT_SUPPORTED">
            <summary>Specified VidPN modality is not supported (e.g. at least two of the pinned modes are not cofunctional).</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_MODE_NOT_PINNED">
            <summary>No mode is pinned on the specified VidPN source/target.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_INVALID_VIDPN_SOURCEMODESET">
            <summary>Specified VidPN source mode set is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_INVALID_VIDPN_TARGETMODESET">
            <summary>Specified VidPN target mode set is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_INVALID_FREQUENCY">
            <summary>Specified video signal frequency is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_INVALID_ACTIVE_REGION">
            <summary>Specified video signal active region is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_INVALID_TOTAL_REGION">
            <summary>Specified video signal total region is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_INVALID_VIDEO_PRESENT_SOURCE_MODE">
            <summary>Specified video present source mode is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_INVALID_VIDEO_PRESENT_TARGET_MODE">
            <summary>Specified video present target mode is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_PINNED_MODE_MUST_REMAIN_IN_SET">
            <summary>Pinned mode must remain in the set on VidPN's cofunctional modality enumeration.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_PATH_ALREADY_IN_TOPOLOGY">
            <summary>Specified video present path is already in VidPN's topology.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_MODE_ALREADY_IN_MODESET">
            <summary>Specified mode is already in the mode set.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_INVALID_VIDEOPRESENTSOURCESET">
            <summary>Specified video present source set is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_INVALID_VIDEOPRESENTTARGETSET">
            <summary>Specified video present target set is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_SOURCE_ALREADY_IN_SET">
            <summary>Specified video present source is already in the video present source set.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_TARGET_ALREADY_IN_SET">
            <summary>Specified video present target is already in the video present target set.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_INVALID_VIDPN_PRESENT_PATH">
            <summary>Specified VidPN present path is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_NO_RECOMMENDED_VIDPN_TOPOLOGY">
            <summary>Miniport has no recommendation for augmentation of the specified VidPN's topology.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGESET">
            <summary>Specified monitor frequency range set is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE">
            <summary>Specified monitor frequency range is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_FREQUENCYRANGE_NOT_IN_SET">
            <summary>Specified frequency range is not in the specified monitor frequency range set.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_NO_PREFERRED_MODE">
            <summary>Specified mode set does not specify preference for one of its modes.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_FREQUENCYRANGE_ALREADY_IN_SET">
            <summary>Specified frequency range is already in the specified monitor frequency range set.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_STALE_MODESET">
            <summary>Specified mode set is stale. Please reacquire the new mode set.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_INVALID_MONITOR_SOURCEMODESET">
            <summary>Specified monitor source mode set is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_INVALID_MONITOR_SOURCE_MODE">
            <summary>Specified monitor source mode is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_NO_RECOMMENDED_FUNCTIONAL_VIDPN">
            <summary>Miniport does not have any recommendation regarding the request to provide a functional VidPN given the current display adapter configuration.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_MODE_ID_MUST_BE_UNIQUE">
            <summary>ID of the specified mode is already used by another mode in the set.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_EMPTY_ADAPTER_MONITOR_MODE_SUPPORT_INTERSECTION">
            <summary>System failed to determine a mode that is supported by both the display adapter and the monitor connected to it.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_VIDEO_PRESENT_TARGETS_LESS_THAN_SOURCES">
            <summary>Number of video present targets must be greater than or equal to the number of video present sources.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_PATH_NOT_IN_TOPOLOGY">
            <summary>Specified present path is not in VidPN's topology.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_SOURCE">
            <summary>Display adapter must have at least one video present source.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_ADAPTER_MUST_HAVE_AT_LEAST_ONE_TARGET">
            <summary>Display adapter must have at least one video present target.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_INVALID_MONITORDESCRIPTORSET">
            <summary>Specified monitor descriptor set is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_INVALID_MONITORDESCRIPTOR">
            <summary>Specified monitor descriptor is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_MONITORDESCRIPTOR_NOT_IN_SET">
            <summary>Specified descriptor is not in the specified monitor descriptor set.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_MONITORDESCRIPTOR_ALREADY_IN_SET">
            <summary>Specified descriptor is already in the specified monitor descriptor set.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_MONITORDESCRIPTOR_ID_MUST_BE_UNIQUE">
            <summary>ID of the specified monitor descriptor is already used by another descriptor in the set.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_INVALID_VIDPN_TARGET_SUBSET_TYPE">
            <summary>Specified video present target subset type is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_RESOURCES_NOT_RELATED">
            <summary>Two or more of the specified resources are not related to each other, as defined by the interface semantics.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_SOURCE_ID_MUST_BE_UNIQUE">
            <summary>ID of the specified video present source is already used by another source in the set.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_TARGET_ID_MUST_BE_UNIQUE">
            <summary>ID of the specified video present target is already used by another target in the set.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_NO_AVAILABLE_VIDPN_TARGET">
            <summary>Specified VidPN source cannot be used because there is no available VidPN target to connect it to.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_MONITOR_COULD_NOT_BE_ASSOCIATED_WITH_ADAPTER">
            <summary>Newly arrived monitor could not be associated with a display adapter.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_NO_VIDPNMGR">
            <summary>Display adapter in question does not have an associated VidPN manager.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_NO_ACTIVE_VIDPN">
            <summary>VidPN manager of the display adapter in question does not have an active VidPN.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_STALE_VIDPN_TOPOLOGY">
            <summary>Specified VidPN topology is stale. Please reacquire the new topology.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_MONITOR_NOT_CONNECTED">
            <summary>There is no monitor connected on the specified video present target.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_SOURCE_NOT_IN_TOPOLOGY">
            <summary>Specified source is not part of the specified VidPN's topology.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_INVALID_PRIMARYSURFACE_SIZE">
            <summary>Specified primary surface size is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_INVALID_VISIBLEREGION_SIZE">
            <summary>Specified visible region size is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_INVALID_STRIDE">
            <summary>Specified stride is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_INVALID_PIXELFORMAT">
            <summary>Specified pixel format is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_INVALID_COLORBASIS">
            <summary>Specified color basis is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_INVALID_PIXELVALUEACCESSMODE">
            <summary>Specified pixel value access mode is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_TARGET_NOT_IN_TOPOLOGY">
            <summary>Specified target is not part of the specified VidPN's topology.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_NO_DISPLAY_MODE_MANAGEMENT_SUPPORT">
            <summary>Failed to acquire display mode management interface.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_VIDPN_SOURCE_IN_USE">
            <summary>Specified VidPN source is already owned by a DMM client and cannot be used until that client releases it.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_CANT_ACCESS_ACTIVE_VIDPN">
            <summary>Specified VidPN is active and cannot be accessed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_INVALID_PATH_IMPORTANCE_ORDINAL">
            <summary>Specified VidPN present path importance ordinal is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_INVALID_PATH_CONTENT_GEOMETRY_TRANSFORMATION">
            <summary>Specified VidPN present path content geometry transformation is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_SUPPORTED">
            <summary>Specified content geometry transformation is not supported on the respective VidPN present path.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_INVALID_GAMMA_RAMP">
            <summary>Specified gamma ramp is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_GAMMA_RAMP_NOT_SUPPORTED">
            <summary>Specified gamma ramp is not supported on the respective VidPN present path.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_MULTISAMPLING_NOT_SUPPORTED">
            <summary>Multi-sampling is not supported on the respective VidPN present path.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_MODE_NOT_IN_MODESET">
            <summary>Specified mode is not in the specified mode set.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_DATASET_IS_EMPTY">
            <summary>Specified data set (e.g. mode set, frequency range set, descriptor set, topology, etc.) is empty.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_NO_MORE_ELEMENTS_IN_DATASET">
            <summary>Specified data set (e.g. mode set, frequency range set, descriptor set, topology, etc.) does not contain any more elements.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_INVALID_VIDPN_TOPOLOGY_RECOMMENDATION_REASON">
            <summary>Specified VidPN topology recommendation reason is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_INVALID_PATH_CONTENT_TYPE">
            <summary>Specified VidPN present path content type is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_INVALID_COPYPROTECTION_TYPE">
            <summary>Specified VidPN present path copy protection type is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_UNASSIGNED_MODESET_ALREADY_EXISTS">
            <summary>No more than one unassigned mode set can exist at any given time for a given VidPN source/target.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_PATH_CONTENT_GEOMETRY_TRANSFORMATION_NOT_PINNED">
            <summary>Specified content transformation is not pinned on the specified VidPN present path.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_INVALID_SCANLINE_ORDERING">
            <summary>Specified scanline ordering type is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_TOPOLOGY_CHANGES_NOT_ALLOWED">
            <summary>Topology changes are not allowed for the specified VidPN.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_NO_AVAILABLE_IMPORTANCE_ORDINALS">
            <summary>All available importance ordinals are already used in specified topology.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_INCOMPATIBLE_PRIVATE_FORMAT">
            <summary>Specified primary surface has a different private format attribute than the current primary surface</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_INVALID_MODE_PRUNING_ALGORITHM">
            <summary>Specified mode pruning algorithm is invalid</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_INVALID_MONITOR_CAPABILITY_ORIGIN">
            <summary>Specified monitor capability origin is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_INVALID_MONITOR_FREQUENCYRANGE_CONSTRAINT">
            <summary>Specified monitor frequency range constraint is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_MAX_NUM_PATHS_REACHED">
            <summary>Maximum supported number of present paths has been reached.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_CANCEL_VIDPN_TOPOLOGY_AUGMENTATION">
            <summary>Miniport requested that augmentation be cancelled for the specified source of the specified VidPN's topology.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_INVALID_CLIENT_TYPE">
            <summary>Specified client type was not recognized.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_CLIENTVIDPN_NOT_SET">
            <summary>Client VidPN is not set on this adapter (e.g. no user mode initiated mode changes took place on this adapter yet).</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_SPECIFIED_CHILD_ALREADY_CONNECTED">
            <summary>  Port specific status codes {0x0400..0x04ff}
            Specified display adapter child device already has an external device connected to it.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_CHILD_DESCRIPTOR_NOT_SUPPORTED">
            <summary>Specified display adapter child device does not support descriptor exposure.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_UNKNOWN_CHILD_STATUS">
            <summary>Child device presence was not reliably detected.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_NOT_A_LINKED_ADAPTER">
            <summary>The display adapter is not linked to any other adapters.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_LEADLINK_NOT_ENUMERATED">
            <summary>Lead adapter in a linked configuration was not enumerated yet.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_CHAINLINKS_NOT_ENUMERATED">
            <summary>Some chain adapters in a linked configuration were not enumerated yet.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_ADAPTER_CHAIN_NOT_READY">
            <summary>The chain of linked adapters is not ready to start because of an unknown failure.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_CHAINLINKS_NOT_STARTED">
            <summary>An attempt was made to start a lead link display adapter when the chain links were not started yet.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_CHAINLINKS_NOT_POWERED_ON">
            <summary>An attempt was made to power up a lead link display adapter when the chain links were powered down.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_INCONSISTENT_DEVICE_LINK_STATE">
            <summary>The adapter link was found to be in an inconsistent state. Not all adapters are in an expected PNP/Power state.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_LEADLINK_START_DEFERRED">
            <summary>Starting the leadlink adapter has been deferred temporarily.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_NOT_POST_DEVICE_DRIVER">
            <summary>The driver trying to start is not the same as the driver for the POSTed display adapter.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_POLLING_TOO_FREQUENTLY">
            <summary>The display adapter is being polled for children too frequently at the same polling level.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_START_DEFERRED">
            <summary>Starting the adapter has been deferred temporarily.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_ADAPTER_ACCESS_NOT_EXCLUDED">
            <summary>An operation is being attempted that requires the display adapter to be in a quiescent state.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_DEPENDABLE_CHILD_STATUS">
            <summary>We can depend on the child device presence returned by the driver.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_OPM_NOT_SUPPORTED">
            <summary>  OPM, PVP and UAB status codes {0x0500..0x057F}
            The driver does not support OPM.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_COPP_NOT_SUPPORTED">
            <summary>The driver does not support COPP.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_UAB_NOT_SUPPORTED">
            <summary>The driver does not support UAB.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_OPM_INVALID_ENCRYPTED_PARAMETERS">
            <summary>The specified encrypted parameters are invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_OPM_NO_PROTECTED_OUTPUTS_EXIST">
            <summary>The GDI display device passed to this function does not have any active protected outputs.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_OPM_INTERNAL_ERROR">
            <summary>An internal error caused an operation to fail.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_OPM_INVALID_HANDLE">
            <summary>The function failed because the caller passed in an invalid OPM user mode handle.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_PVP_INVALID_CERTIFICATE_LENGTH">
            <summary>A certificate could not be returned because the certificate buffer passed to the function was too small.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_OPM_SPANNING_MODE_ENABLED">
            <summary>The DxgkDdiOpmCreateProtectedOutput function could not create a protected output because the Video Present Target is in spanning mode.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_OPM_THEATER_MODE_ENABLED">
            <summary>The DxgkDdiOpmCreateProtectedOutput function could not create a protected output because the Video Present Target is in theater mode.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_PVP_HFS_FAILED">
            <summary>The function failed because the display adapter's Hardware Functionality Scan failed to validate the graphics hardware.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_OPM_INVALID_SRM">
            <summary>The HDCP System Renewability Message passed to this function did not comply with section 5 of the HDCP 1.1 specification.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_HDCP">
            <summary>The protected output cannot enable the High-bandwidth Digital Content Protection (HDCP) System because it does not support HDCP.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_ACP">
            <summary>The protected output cannot enable Analogue Copy Protection (ACP) because it does not support ACP.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_OPM_OUTPUT_DOES_NOT_SUPPORT_CGMSA">
            <summary>The protected output cannot enable the Content Generation Management System Analogue (CGMS-A) protection technology because it does not support CGMS-A.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_OPM_HDCP_SRM_NEVER_SET">
            <summary>The DxgkDdiOPMGetInformation function cannot return the version of the SRM being used because the application never successfully passed an SRM to the protected output.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_OPM_RESOLUTION_TOO_HIGH">
            <summary>The DxgkDdiOPMConfigureProtectedOutput function cannot enable the specified output protection technology because the output's screen resolution is too high.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_OPM_ALL_HDCP_HARDWARE_ALREADY_IN_USE">
            <summary>The DxgkDdiOPMConfigureProtectedOutput function cannot enable HDCP because the display adapter's HDCP hardware is already being used by other physical outputs.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_OPM_PROTECTED_OUTPUT_NO_LONGER_EXISTS">
            <summary>The operating system asynchronously destroyed this OPM protected output because the operating system's state changed. This error typically occurs because the monitor PDO associated with this protected output was removed, the monitor PDO associated with this protected output was stopped, or the protected output's session became a non-console session.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_OPM_PROTECTED_OUTPUT_DOES_NOT_HAVE_COPP_SEMANTICS">
            <summary>Either the DxgkDdiOPMGetCOPPCompatibleInformation, DxgkDdiOPMGetInformation, or DxgkDdiOPMConfigureProtectedOutput function failed. This error is returned when the caller tries to use a COPP specific command while the protected output has OPM semantics only.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_OPM_INVALID_INFORMATION_REQUEST">
            <summary>The DxgkDdiOPMGetInformation and DxgkDdiOPMGetCOPPCompatibleInformation functions return this error code if the passed in sequence number is not the expected sequence number or the passed in OMAC value is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_OPM_DRIVER_INTERNAL_ERROR">
            <summary>The function failed because an unexpected error occurred inside of a display driver.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_OPM_PROTECTED_OUTPUT_DOES_NOT_HAVE_OPM_SEMANTICS">
            <summary>Either the DxgkDdiOPMGetCOPPCompatibleInformation, DxgkDdiOPMGetInformation, or DxgkDdiOPMConfigureProtectedOutput function failed. This error is returned when the caller tries to use an OPM specific command while the protected output has COPP semantics only.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_OPM_SIGNALING_NOT_SUPPORTED">
            <summary>The DxgkDdiOPMGetCOPPCompatibleInformation and DxgkDdiOPMConfigureProtectedOutput functions return this error if the display driver does not support the DXGKMDT_OPM_GET_ACP_AND_CGMSA_SIGNALING and DXGKMDT_OPM_SET_ACP_AND_CGMSA_SIGNALING GUIDs.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_OPM_INVALID_CONFIGURATION_REQUEST">
            <summary>The DxgkDdiOPMConfigureProtectedOutput function returns this error code if the passed in sequence number is not the expected sequence number or the passed in OMAC value is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_I2C_NOT_SUPPORTED">
            <summary>  Monitor Configuration API status codes {0x0580..0x05DF}
            The monitor connected to the specified video output does not have an I2C bus.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_I2C_DEVICE_DOES_NOT_EXIST">
            <summary>No device on the I2C bus has the specified address.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_I2C_ERROR_TRANSMITTING_DATA">
            <summary>An error occurred while transmitting data to the device on the I2C bus.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_I2C_ERROR_RECEIVING_DATA">
            <summary>An error occurred while receiving data from the device on the I2C bus.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_DDCCI_VCP_NOT_SUPPORTED">
            <summary>The monitor does not support the specified VCP code.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_DDCCI_INVALID_DATA">
            <summary>The data received from the monitor is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_DDCCI_MONITOR_RETURNED_INVALID_TIMING_STATUS_BYTE">
            <summary>The function failed because a monitor returned an invalid Timing Status byte when the operating system used the DDC/CI Get Timing Report &amp; Timing Message command to get a timing report from a monitor.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_DDCCI_INVALID_CAPABILITIES_STRING">
            <summary>A monitor returned a DDC/CI capabilities string which did not comply with the ACCESS.bus 3.0, DDC/CI 1.1, or MCCS 2 Revision 1 specification.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_MCA_INTERNAL_ERROR">
            <summary>An internal error caused an operation to fail.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_DDCCI_INVALID_MESSAGE_COMMAND">
            <summary>An operation failed because a DDC/CI message had an invalid value in its command field.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_DDCCI_INVALID_MESSAGE_LENGTH">
            <summary>An error occurred because the field length of a DDC/CI message contained an invalid value.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_DDCCI_INVALID_MESSAGE_CHECKSUM">
            <summary>An error occurred because the checksum field in a DDC/CI message did not match the message's computed checksum value. This error implies that the data was corrupted while it was being transmitted from a monitor to a computer.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_INVALID_PHYSICAL_MONITOR_HANDLE">
            <summary>This function failed because an invalid monitor handle was passed to it.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_MONITOR_NO_LONGER_EXISTS">
            <summary>The operating system asynchronously destroyed the monitor which corresponds to this handle because the operating system's state changed. This error typically occurs because the monitor PDO associated with this handle was removed, the monitor PDO associated with this handle was stopped, or a display mode change occurred. A display mode change occurs when windows sends a WM_DISPLAYCHANGE windows message to applications.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_ONLY_CONSOLE_SESSION_SUPPORTED">
            <summary>  OPM, UAB, PVP and DDC/CI shared status codes {0x25E0..0x25FF}
            This function can only be used if a program is running in the local console session. It cannot be used if a program is running on a remote desktop session or on a terminal server session.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_NO_DISPLAY_DEVICE_CORRESPONDS_TO_NAME">
            <summary>This function cannot find an actual GDI display device which corresponds to the specified GDI display device name.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_DISPLAY_DEVICE_NOT_ATTACHED_TO_DESKTOP">
            <summary>The function failed because the specified GDI display device was not attached to the Windows desktop.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_MIRRORING_DEVICES_NOT_SUPPORTED">
            <summary>This function does not support GDI mirroring display devices because GDI mirroring display devices do not have any physical monitors associated with them.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_INVALID_POINTER">
            <summary>The function failed because an invalid pointer parameter was passed to it. A pointer parameter is invalid if it is NULL, it points to an invalid address, it points to a kernel mode address or it is not correctly aligned.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_NO_MONITORS_CORRESPOND_TO_DISPLAY_DEVICE">
            <summary>This function failed because the GDI device passed to it did not have any monitors associated with it.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_PARAMETER_ARRAY_TOO_SMALL">
            <summary>An array passed to the function cannot hold all of the data that the function must copy into the array.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_INTERNAL_ERROR">
            <summary>An internal error caused an operation to fail.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GRAPHICS_SESSION_TYPE_CHANGE_IN_PROGRESS">
            <summary>The function failed because the current session is changing its type. This function cannot be called when the current session is changing its type. There are currently three types of sessions: console, disconnected and remote.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_LOCKED_VOLUME">
            <summary>Full Volume Encryption Error codes (fvevol.sys)
            This volume is locked by BitLocker Drive Encryption.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_NOT_ENCRYPTED">
            <summary>The volume is not encrypted, no key is available.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_BAD_INFORMATION">
            <summary>The control block for the encrypted volume is not valid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_TOO_SMALL">
            <summary>The volume cannot be encrypted because it does not have enough free space.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_FAILED_WRONG_FS">
            <summary>The volume cannot be encrypted because the file system is not supported.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_BAD_PARTITION_SIZE">
            <summary>The file system size is larger than the partition size in the partition table.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_FS_NOT_EXTENDED">
            <summary>The file system does not extend to the end of the volume.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_FS_MOUNTED">
            <summary>This operation cannot be performed while a file system is mounted on the volume.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_NO_LICENSE">
            <summary>BitLocker Drive Encryption is not included with this version of Windows.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_ACTION_NOT_ALLOWED">
            <summary>Requested action not allowed in the current volume state.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_BAD_DATA">
            <summary>Data supplied is malformed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_VOLUME_NOT_BOUND">
            <summary>The volume is not bound to the system.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_NOT_DATA_VOLUME">
            <summary>That volume is not a data volume.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_CONV_READ_ERROR">
            <summary>A read operation failed while converting the volume.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_CONV_WRITE_ERROR">
            <summary>A write operation failed while converting the volume.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_OVERLAPPED_UPDATE">
            <summary>The control block for the encrypted volume was updated by another thread. Try again.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_FAILED_SECTOR_SIZE">
            <summary>The encryption algorithm does not support the sector size of that volume.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_FAILED_AUTHENTICATION">
            <summary>BitLocker recovery authentication failed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_NOT_OS_VOLUME">
            <summary>That volume is not the OS volume.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_KEYFILE_NOT_FOUND">
            <summary>The BitLocker startup key or recovery password could not be read from external media.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_KEYFILE_INVALID">
            <summary>The BitLocker startup key or recovery password file is corrupt or invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_KEYFILE_NO_VMK">
            <summary>The BitLocker encryption key could not be obtained from the startup key or recovery password.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_TPM_DISABLED">
            <summary>The Trusted Platform Module (TPM) is disabled.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_TPM_SRK_AUTH_NOT_ZERO">
            <summary>The authorization data for the Storage Root Key (SRK) of the Trusted Platform Module (TPM) is not zero.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_TPM_INVALID_PCR">
            <summary>The system boot information changed or the Trusted Platform Module (TPM) locked out access to BitLocker encryption keys until the computer is restarted.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_TPM_NO_VMK">
            <summary>The BitLocker encryption key could not be obtained from the Trusted Platform Module (TPM).</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_PIN_INVALID">
            <summary>The BitLocker encryption key could not be obtained from the Trusted Platform Module (TPM) and PIN.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_AUTH_INVALID_APPLICATION">
            <summary>A boot application hash does not match the hash computed when BitLocker was turned on.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_AUTH_INVALID_CONFIG">
            <summary>The Boot Configuration Data (BCD) settings are not supported or have changed since BitLocker was enabled.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_DEBUGGER_ENABLED">
            <summary>Boot debugging is enabled. Run bcdedit to turn it off.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_DRY_RUN_FAILED">
            <summary>The BitLocker encryption key could not be obtained.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_BAD_METADATA_POINTER">
            <summary>The metadata disk region pointer is incorrect.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_OLD_METADATA_COPY">
            <summary>The backup copy of the metadata is out of date.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_REBOOT_REQUIRED">
            <summary>No action was taken as a system reboot is required.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_RAW_ACCESS">
            <summary>No action was taken as BitLocker Drive Encryption is in RAW access mode.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_RAW_BLOCKED">
            <summary>BitLocker Drive Encryption cannot enter raw access mode for this volume.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_NO_AUTOUNLOCK_MASTER_KEY">
            <summary>The auto-unlock master key was not available from the operating system volume. Retry the operation using the BitLocker WMI interface.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_MOR_FAILED">
            <summary>The system firmware failed to enable clearing of system memory on reboot.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_NO_FEATURE_LICENSE">
            <summary>This feature of BitLocker Drive Encryption is not included with this version of Windows.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_POLICY_USER_DISABLE_RDV_NOT_ALLOWED">
            <summary>Group policy does not permit turning off BitLocker Drive Encryption on roaming data volumes.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_CONV_RECOVERY_FAILED">
            <summary>Bitlocker Drive Encryption failed to recover from aborted conversion. This could be due to either all conversion logs being corrupted or the media being write-protected.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_VIRTUALIZED_SPACE_TOO_BIG">
            <summary>The requested virtualization size is too big.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_INVALID_DATUM_TYPE">
            <summary>The management information stored on the drive contained an unknown type. If you are using an old version of Windows, try accessing the drive from the latest version.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_VOLUME_TOO_SMALL">
            <summary>The drive is too small to be protected using BitLocker Drive Encryption.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_ENH_PIN_INVALID">
            <summary>The BitLocker encryption key could not be obtained from the Trusted Platform Module (TPM) and enhanced PIN. Try using a PIN containing only numerals.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_FULL_ENCRYPTION_NOT_ALLOWED_ON_TP_STORAGE">
            <summary>BitLocker Drive Encryption only supports Used Space Only encryption on thin provisioned storage.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_WIPE_NOT_ALLOWED_ON_TP_STORAGE">
            <summary>BitLocker Drive Encryption does not support wiping free space on thin provisioned storage.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_NOT_ALLOWED_ON_CSV_STACK">
            <summary>This command can only be performed from the coordinator node for the specified CSV volume.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_NOT_ALLOWED_ON_CLUSTER">
            <summary>This command cannot be performed on a volume when it is part of a cluster.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_NOT_ALLOWED_TO_UPGRADE_WHILE_CONVERTING">
            <summary>BitLocker cannot be upgraded during disk encryption or decryption.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_WIPE_CANCEL_NOT_APPLICABLE">
            <summary>Wipe of free space is not currently taking place.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_EDRIVE_DRY_RUN_FAILED">
            <summary>Your computer doesn't support BitLocker hardware-based encryption. Check with your computer manufacturer for firmware updates.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_SECUREBOOT_DISABLED">
            <summary>Secure Boot has been disabled. Either Secure Boot must be re-enabled, or BitLocker must be suspended for Windows to start normally.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_SECUREBOOT_CONFIG_CHANGE">
            <summary>Secure Boot policy has unexpectedly changed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_DEVICE_LOCKEDOUT">
            <summary>Device Lock has been triggered due to too many incorrect password attempts.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_VOLUME_EXTEND_PREVENTS_EOW_DECRYPT">
            <summary>Device encryption removal is blocked due to volume being extended beyond its original size.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_NOT_DE_VOLUME">
            <summary>This action isn't supported because this drive isn't automatically managed with device encryption.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_PROTECTION_DISABLED">
            <summary>BitLocker Drive Encryption has been suspended on this drive. All BitLocker key protectors configured for this drive are effectively disabled, and the drive will be automatically unlocked using an unencrypted (clear) key.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_PROTECTION_CANNOT_BE_DISABLED">
            <summary>BitLocker can't be suspended on this drive until the next restart.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FVE_OSV_KSR_NOT_ALLOWED">
            <summary>BitLocker Drive Encryption policy does not allow KSR operation with protected OS volume.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_CALLOUT_NOT_FOUND">
            <summary>FWP error codes (fwpkclnt.sys)
            The callout does not exist.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_CONDITION_NOT_FOUND">
            <summary>The filter condition does not exist.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_FILTER_NOT_FOUND">
            <summary>The filter does not exist.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_LAYER_NOT_FOUND">
            <summary>The layer does not exist.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_PROVIDER_NOT_FOUND">
            <summary>The provider does not exist.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_PROVIDER_CONTEXT_NOT_FOUND">
            <summary>The provider context does not exist.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_SUBLAYER_NOT_FOUND">
            <summary>The sublayer does not exist.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_NOT_FOUND">
            <summary>The object does not exist.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_ALREADY_EXISTS">
            <summary>An object with that GUID or LUID already exists.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_IN_USE">
            <summary>The object is referenced by other objects so cannot be deleted.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_DYNAMIC_SESSION_IN_PROGRESS">
            <summary>The call is not allowed from within a dynamic session.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_WRONG_SESSION">
            <summary>The call was made from the wrong session so cannot be completed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_NO_TXN_IN_PROGRESS">
            <summary>The call must be made from within an explicit transaction.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_TXN_IN_PROGRESS">
            <summary>The call is not allowed from within an explicit transaction.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_TXN_ABORTED">
            <summary>The explicit transaction has been forcibly cancelled.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_SESSION_ABORTED">
            <summary>The session has been cancelled.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_INCOMPATIBLE_TXN">
            <summary>The call is not allowed from within a read-only transaction.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_TIMEOUT">
            <summary>The call timed out while waiting to acquire the transaction lock.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_NET_EVENTS_DISABLED">
            <summary>Collection of network diagnostic events is disabled.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_INCOMPATIBLE_LAYER">
            <summary>The operation is not supported by the specified layer.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_KM_CLIENTS_ONLY">
            <summary>The call is allowed for kernel-mode callers only.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_LIFETIME_MISMATCH">
            <summary>The call tried to associate two objects with incompatible lifetimes.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_BUILTIN_OBJECT">
            <summary>The object is built in so cannot be deleted.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_TOO_MANY_CALLOUTS">
            <summary>The maximum number of callouts has been reached.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_NOTIFICATION_DROPPED">
            <summary>A notification could not be delivered because a message queue is at its maximum capacity.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_TRAFFIC_MISMATCH">
            <summary>The traffic parameters do not match those for the security association context.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_INCOMPATIBLE_SA_STATE">
            <summary>The call is not allowed for the current security association state.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_NULL_POINTER">
            <summary>A required pointer is null.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_INVALID_ENUMERATOR">
            <summary>An enumerator is not valid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_INVALID_FLAGS">
            <summary>The flags field contains an invalid value.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_INVALID_NET_MASK">
            <summary>A network mask is not valid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_INVALID_RANGE">
            <summary>An FWP_RANGE is not valid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_INVALID_INTERVAL">
            <summary>The time interval is not valid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_ZERO_LENGTH_ARRAY">
            <summary>An array that must contain at least one element is zero length.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_NULL_DISPLAY_NAME">
            <summary>The displayData.name field cannot be null.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_INVALID_ACTION_TYPE">
            <summary>The action type is not one of the allowed action types for a filter.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_INVALID_WEIGHT">
            <summary>The filter weight is not valid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_MATCH_TYPE_MISMATCH">
            <summary>A filter condition contains a match type that is not compatible with the operands.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_TYPE_MISMATCH">
            <summary>An FWP_VALUE or FWPM_CONDITION_VALUE is of the wrong type.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_OUT_OF_BOUNDS">
            <summary>An integer value is outside the allowed range.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_RESERVED">
            <summary>A reserved field is non-zero.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_DUPLICATE_CONDITION">
            <summary>A filter cannot contain multiple conditions operating on a single field.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_DUPLICATE_KEYMOD">
            <summary>A policy cannot contain the same keying module more than once.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_ACTION_INCOMPATIBLE_WITH_LAYER">
            <summary>The action type is not compatible with the layer.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_ACTION_INCOMPATIBLE_WITH_SUBLAYER">
            <summary>The action type is not compatible with the sublayer.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_CONTEXT_INCOMPATIBLE_WITH_LAYER">
            <summary>The raw context or the provider context is not compatible with the layer.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_CONTEXT_INCOMPATIBLE_WITH_CALLOUT">
            <summary>The raw context or the provider context is not compatible with the callout.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_INCOMPATIBLE_AUTH_METHOD">
            <summary>The authentication method is not compatible with the policy type.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_INCOMPATIBLE_DH_GROUP">
            <summary>The Diffie-Hellman group is not compatible with the policy type.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_EM_NOT_SUPPORTED">
            <summary>An IKE policy cannot contain an Extended Mode policy.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_NEVER_MATCH">
            <summary>The enumeration template or subscription will never match any objects.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_PROVIDER_CONTEXT_MISMATCH">
            <summary>The provider context is of the wrong type.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_INVALID_PARAMETER">
            <summary>The parameter is incorrect.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_TOO_MANY_SUBLAYERS">
            <summary>The maximum number of sublayers has been reached.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_CALLOUT_NOTIFICATION_FAILED">
            <summary>The notification function for a callout returned an error.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_INVALID_AUTH_TRANSFORM">
            <summary>The IPsec authentication transform is not valid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_INVALID_CIPHER_TRANSFORM">
            <summary>The IPsec cipher transform is not valid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_INCOMPATIBLE_CIPHER_TRANSFORM">
            <summary>The IPsec cipher transform is not compatible with the policy.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_INVALID_TRANSFORM_COMBINATION">
            <summary>The combination of IPsec transform types is not valid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_DUPLICATE_AUTH_METHOD">
            <summary>A policy cannot contain the same auth method more than once.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_INVALID_TUNNEL_ENDPOINT">
            <summary>A tunnel endpoint configuration is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_L2_DRIVER_NOT_READY">
            <summary>The WFP MAC Layers are not ready.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_KEY_DICTATOR_ALREADY_REGISTERED">
            <summary>A key manager capable of key dictation is already registered</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_KEY_DICTATION_INVALID_KEYING_MATERIAL">
            <summary>A key manager dictated invalid keys</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_CONNECTIONS_DISABLED">
            <summary>The BFE IPsec Connection Tracking is disabled.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_INVALID_DNS_NAME">
            <summary>The DNS name is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_STILL_ON">
            <summary>The engine option is still enabled due to other configuration settings.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_IKEEXT_NOT_RUNNING">
            <summary>The IKEEXT service is not running.  This service only runs when there is IPsec policy applied to the machine.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_TCPIP_NOT_READY">
            <summary>The TCP/IP stack is not ready.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_INJECT_HANDLE_CLOSING">
            <summary>The injection handle is being closed by another thread.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_INJECT_HANDLE_STALE">
            <summary>The injection handle is stale.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_CANNOT_PEND">
            <summary>The classify cannot be pended.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_FWP_DROP_NOICMP">
            <summary>The packet should be dropped, no ICMP should be sent.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NDIS_CLOSING">
            <summary>NDIS error codes (ndis.sys)
            The binding to the network interface is being closed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NDIS_BAD_VERSION">
            <summary>An invalid version was specified.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NDIS_BAD_CHARACTERISTICS">
            <summary>An invalid characteristics table was used.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NDIS_ADAPTER_NOT_FOUND">
            <summary>Failed to find the network interface or network interface is not ready.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NDIS_OPEN_FAILED">
            <summary>Failed to open the network interface.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NDIS_DEVICE_FAILED">
            <summary>Network interface has encountered an internal unrecoverable failure.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NDIS_MULTICAST_FULL">
            <summary>The multicast list on the network interface is full.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NDIS_MULTICAST_EXISTS">
            <summary>An attempt was made to add a duplicate multicast address to the list.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NDIS_MULTICAST_NOT_FOUND">
            <summary>At attempt was made to remove a multicast address that was never added.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NDIS_REQUEST_ABORTED">
            <summary>Netowork interface aborted the request.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NDIS_RESET_IN_PROGRESS">
            <summary>Network interface can not process the request because it is being reset.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NDIS_NOT_SUPPORTED">
            <summary>Netword interface does not support this request.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NDIS_INVALID_PACKET">
            <summary>An attempt was made to send an invalid packet on a network interface.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NDIS_ADAPTER_NOT_READY">
            <summary>Network interface is not ready to complete this operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NDIS_INVALID_LENGTH">
            <summary>The length of the buffer submitted for this operation is not valid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NDIS_INVALID_DATA">
            <summary>The data used for this operation is not valid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NDIS_BUFFER_TOO_SHORT">
            <summary>The length of buffer submitted for this operation is too small.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NDIS_INVALID_OID">
            <summary>Network interface does not support this OID (Object Identifier)</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NDIS_ADAPTER_REMOVED">
            <summary>The network interface has been removed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NDIS_UNSUPPORTED_MEDIA">
            <summary>Network interface does not support this media type.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NDIS_GROUP_ADDRESS_IN_USE">
            <summary>An attempt was made to remove a token ring group address that is in use by other components.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NDIS_FILE_NOT_FOUND">
            <summary>An attempt was made to map a file that can not be found.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NDIS_ERROR_READING_FILE">
            <summary>An error occurred while NDIS tried to map the file.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NDIS_ALREADY_MAPPED">
            <summary>An attempt was made to map a file that is alreay mapped.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NDIS_RESOURCE_CONFLICT">
            <summary>An attempt to allocate a hardware resource failed because the resource is used by another component.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NDIS_MEDIA_DISCONNECTED">
            <summary>The I/O operation failed because network media is disconnected or wireless access point is out of range.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NDIS_INVALID_ADDRESS">
            <summary>The network address used in the request is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NDIS_INVALID_DEVICE_REQUEST">
            <summary>The specified request is not a valid operation for the target device.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NDIS_PAUSED">
            <summary>The offload operation on the network interface has been paused.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NDIS_INTERFACE_NOT_FOUND">
            <summary>Network interface was not found.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NDIS_UNSUPPORTED_REVISION">
            <summary>The revision number specified in the structure is not supported.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NDIS_INVALID_PORT">
            <summary>The specified port does not exist on this network interface.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NDIS_INVALID_PORT_STATE">
            <summary>The current state of the specified port on this network interface does not support the requested operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NDIS_LOW_POWER_STATE">
            <summary>The miniport adapter is in lower power state.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NDIS_REINIT_REQUIRED">
            <summary>This operation requires the miniport adapter to be reinitialized.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NDIS_DOT11_AUTO_CONFIG_ENABLED">
            <summary>NDIS error codes (802.11 wireless LAN)
            The wireless local area network interface is in auto configuration mode and doesn't support the requested parameter change operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NDIS_DOT11_MEDIA_IN_USE">
            <summary>The wireless local area network interface is busy and can not perform the requested operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NDIS_DOT11_POWER_STATE_INVALID">
            <summary>The wireless local area network interface is powered down and doesn't support the requested operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NDIS_PM_WOL_PATTERN_LIST_FULL">
            <summary>The list of wake on LAN patterns is full.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NDIS_PM_PROTOCOL_OFFLOAD_LIST_FULL">
            <summary>The list of low power protocol offloads is full.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NDIS_DOT11_AP_CHANNEL_CURRENTLY_NOT_AVAILABLE">
            <summary>The wireless local area network interface cannot start an AP on the specified channel right now.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NDIS_DOT11_AP_BAND_CURRENTLY_NOT_AVAILABLE">
            <summary>The wireless local area network interface cannot start an AP on the specified band right now.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NDIS_DOT11_AP_CHANNEL_NOT_ALLOWED">
            <summary>The wireless local area network interface cannot start an AP on this channel due to regulatory reasons.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NDIS_DOT11_AP_BAND_NOT_ALLOWED">
            <summary>The wireless local area network interface cannot start an AP on this band due to regulatory reasons.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NDIS_INDICATION_REQUIRED">
            <summary>NDIS informational codes(ndis.sys)
            The request will be completed later by NDIS status indication.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NDIS_OFFLOAD_POLICY">
            <summary>NDIS Chimney Offload codes (ndis.sys)
            The TCP connection is not offloadable because of a local policy setting.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NDIS_OFFLOAD_CONNECTION_REJECTED">
            <summary>The TCP connection is not offloadable by the Chimney offload target.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NDIS_OFFLOAD_PATH_REJECTED">
            <summary>The IP Path object is not in an offloadable state.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_ERROR_MASK">
            <summary>TPM hardware errors {0x0000..0x003ff}
            This is an error mask to convert TPM hardware errors to win errors.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_AUTHFAIL">
            <summary>Authentication failed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_BADINDEX">
            <summary>The index to a PCR, DIR or other register is incorrect.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_BAD_PARAMETER">
            <summary>One or more parameter is bad.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_AUDITFAILURE">
            <summary>An operation completed successfully but the auditing of that operation failed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_CLEAR_DISABLED">
            <summary>The clear disable flag is set and all clear operations now require physical access.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_DEACTIVATED">
            <summary>Activate the Trusted Platform Module (TPM).</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_DISABLED">
            <summary>Enable the Trusted Platform Module (TPM).</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_DISABLED_CMD">
            <summary>The target command has been disabled.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_FAIL">
            <summary>The operation failed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_BAD_ORDINAL">
            <summary>The ordinal was unknown or inconsistent.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_INSTALL_DISABLED">
            <summary>The ability to install an owner is disabled.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_INVALID_KEYHANDLE">
            <summary>The key handle cannot be interpreted.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_KEYNOTFOUND">
            <summary>The key handle points to an invalid key.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_INAPPROPRIATE_ENC">
            <summary>Unacceptable encryption scheme.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_MIGRATEFAIL">
            <summary>Migration authorization failed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_INVALID_PCR_INFO">
            <summary>PCR information could not be interpreted.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_NOSPACE">
            <summary>No room to load key.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_NOSRK">
            <summary>There is no Storage Root Key (SRK) set.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_NOTSEALED_BLOB">
            <summary>An encrypted blob is invalid or was not created by this TPM.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_OWNER_SET">
            <summary>The Trusted Platform Module (TPM) already has an owner.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_RESOURCES">
            <summary>The TPM has insufficient internal resources to perform the requested action.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_SHORTRANDOM">
            <summary>A random string was too short.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_SIZE">
            <summary>The TPM does not have the space to perform the operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_WRONGPCRVAL">
            <summary>The named PCR value does not match the current PCR value.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_BAD_PARAM_SIZE">
            <summary>The paramSize argument to the command has the incorrect value .</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_SHA_THREAD">
            <summary>There is no existing SHA-1 thread.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_SHA_ERROR">
            <summary>The calculation is unable to proceed because the existing SHA-1 thread has already encountered an error.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_FAILEDSELFTEST">
            <summary>The TPM hardware device reported a failure during its internal self test. Try restarting the computer to resolve the problem. If the problem continues, you might need to replace your TPM hardware or motherboard.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_AUTH2FAIL">
            <summary>The authorization for the second key in a 2 key function failed authorization.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_BADTAG">
            <summary>The tag value sent to for a command is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_IOERROR">
            <summary>An IO error occurred transmitting information to the TPM.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_ENCRYPT_ERROR">
            <summary>The encryption process had a problem.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_DECRYPT_ERROR">
            <summary>The decryption process did not complete.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_INVALID_AUTHHANDLE">
            <summary>An invalid handle was used.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_NO_ENDORSEMENT">
            <summary>The TPM does not have an Endorsement Key (EK) installed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_INVALID_KEYUSAGE">
            <summary>The usage of a key is not allowed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_WRONG_ENTITYTYPE">
            <summary>The submitted entity type is not allowed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_INVALID_POSTINIT">
            <summary>The command was received in the wrong sequence relative to TPM_Init and a subsequent TPM_Startup.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_INAPPROPRIATE_SIG">
            <summary>Signed data cannot include additional DER information.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_BAD_KEY_PROPERTY">
            <summary>The key properties in TPM_KEY_PARMs are not supported by this TPM.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_BAD_MIGRATION">
            <summary>The migration properties of this key are incorrect.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_BAD_SCHEME">
            <summary>The signature or encryption scheme for this key is incorrect or not permitted in this situation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_BAD_DATASIZE">
            <summary>The size of the data (or blob) parameter is bad or inconsistent with the referenced key.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_BAD_MODE">
            <summary>A mode parameter is bad, such as capArea or subCapArea for TPM_GetCapability, phsicalPresence parameter for TPM_PhysicalPresence, or migrationType for TPM_CreateMigrationBlob.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_BAD_PRESENCE">
            <summary>Either the physicalPresence or physicalPresenceLock bits have the wrong value.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_BAD_VERSION">
            <summary>The TPM cannot perform this version of the capability.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_NO_WRAP_TRANSPORT">
            <summary>The TPM does not allow for wrapped transport sessions.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_AUDITFAIL_UNSUCCESSFUL">
            <summary>TPM audit construction failed and the underlying command was returning a failure code also.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_AUDITFAIL_SUCCESSFUL">
            <summary>TPM audit construction failed and the underlying command was returning success.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_NOTRESETABLE">
            <summary>Attempt to reset a PCR register that does not have the resettable attribute.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_NOTLOCAL">
            <summary>Attempt to reset a PCR register that requires locality and locality modifier not part of command transport.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_BAD_TYPE">
            <summary>Make identity blob not properly typed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_INVALID_RESOURCE">
            <summary>When saving context identified resource type does not match actual resource.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_NOTFIPS">
            <summary>The TPM is attempting to execute a command only available when in FIPS mode.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_INVALID_FAMILY">
            <summary>The command is attempting to use an invalid family ID.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_NO_NV_PERMISSION">
            <summary>The permission to manipulate the NV storage is not available.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_REQUIRES_SIGN">
            <summary>The operation requires a signed command.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_KEY_NOTSUPPORTED">
            <summary>Wrong operation to load an NV key.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_AUTH_CONFLICT">
            <summary>NV_LoadKey blob requires both owner and blob authorization.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_AREA_LOCKED">
            <summary>The NV area is locked and not writtable.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_BAD_LOCALITY">
            <summary>The locality is incorrect for the attempted operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_READ_ONLY">
            <summary>The NV area is read only and can't be written to.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_PER_NOWRITE">
            <summary>There is no protection on the write to the NV area.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_FAMILYCOUNT">
            <summary>The family count value does not match.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_WRITE_LOCKED">
            <summary>The NV area has already been written to.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_BAD_ATTRIBUTES">
            <summary>The NV area attributes conflict.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_INVALID_STRUCTURE">
            <summary>The structure tag and version are invalid or inconsistent.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_KEY_OWNER_CONTROL">
            <summary>The key is under control of the TPM Owner and can only be evicted by the TPM Owner.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_BAD_COUNTER">
            <summary>The counter handle is incorrect.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_NOT_FULLWRITE">
            <summary>The write is not a complete write of the area.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_CONTEXT_GAP">
            <summary>The gap between saved context counts is too large.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_MAXNVWRITES">
            <summary>The maximum number of NV writes without an owner has been exceeded.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_NOOPERATOR">
            <summary>No operator AuthData value is set.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_RESOURCEMISSING">
            <summary>The resource pointed to by context is not loaded.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_DELEGATE_LOCK">
            <summary>The delegate administration is locked.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_DELEGATE_FAMILY">
            <summary>Attempt to manage a family other then the delegated family.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_DELEGATE_ADMIN">
            <summary>Delegation table management not enabled.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_TRANSPORT_NOTEXCLUSIVE">
            <summary>There was a command executed outside of an exclusive transport session.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_OWNER_CONTROL">
            <summary>Attempt to context save a owner evict controlled key.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_DAA_RESOURCES">
            <summary>The DAA command has no resources availble to execute the command.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_DAA_INPUT_DATA0">
            <summary>The consistency check on DAA parameter inputData0 has failed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_DAA_INPUT_DATA1">
            <summary>The consistency check on DAA parameter inputData1 has failed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_DAA_ISSUER_SETTINGS">
            <summary>The consistency check on DAA_issuerSettings has failed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_DAA_TPM_SETTINGS">
            <summary>The consistency check on DAA_tpmSpecific has failed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_DAA_STAGE">
            <summary>The atomic process indicated by the submitted DAA command is not the expected process.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_DAA_ISSUER_VALIDITY">
            <summary>The issuer's validity check has detected an inconsistency.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_DAA_WRONG_W">
            <summary>The consistency check on w has failed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_BAD_HANDLE">
            <summary>The handle is incorrect.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_BAD_DELEGATE">
            <summary>Delegation is not correct.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_BADCONTEXT">
            <summary>The context blob is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_TOOMANYCONTEXTS">
            <summary>Too many contexts held by the TPM.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_MA_TICKET_SIGNATURE">
            <summary>Migration authority signature validation failure.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_MA_DESTINATION">
            <summary>Migration destination not authenticated.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_MA_SOURCE">
            <summary>Migration source incorrect.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_MA_AUTHORITY">
            <summary>Incorrect migration authority.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_PERMANENTEK">
            <summary>Attempt to revoke the EK and the EK is not revocable.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_BAD_SIGNATURE">
            <summary>Bad signature of CMK ticket.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_NOCONTEXTSPACE">
            <summary>There is no room in the context list for additional contexts.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_COMMAND_BLOCKED">
            <summary>TPM vendor specific hardware errors {0x0400..0x04ff}
            The command was blocked.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_INVALID_HANDLE">
            <summary>The specified handle was not found.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_DUPLICATE_VHANDLE">
            <summary>The TPM returned a duplicate handle and the command needs to be resubmitted.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_EMBEDDED_COMMAND_BLOCKED">
            <summary>The command within the transport was blocked.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_EMBEDDED_COMMAND_UNSUPPORTED">
            <summary>The command within the transport is not supported.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_RETRY">
            <summary>TPM non-fatal hardware errors {0x0800..0x08ff}
            The TPM is too busy to respond to the command immediately, but the command could be resubmitted at a later time.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_NEEDS_SELFTEST">
            <summary>SelfTestFull has not been run.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_DOING_SELFTEST">
            <summary>The TPM is currently executing a full selftest.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_DEFEND_LOCK_RUNNING">
            <summary>The TPM is defending against dictionary attacks and is in a time-out period.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_COMMAND_CANCELED">
            <summary>TPM software Error codes (tpm.sys)
            The command was cancelled.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_TOO_MANY_CONTEXTS">
            <summary>A new TPM context could not be created because there are too many open contexts.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_NOT_FOUND">
            <summary>TPM driver is not compatible with the version of TPM found on the system.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_ACCESS_DENIED">
            <summary>The caller does not have the appropriate rights to perform the requested operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_INSUFFICIENT_BUFFER">
            <summary>The caller does not have the appropriate rights to perform the requested operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_PPI_FUNCTION_UNSUPPORTED">
            <summary>The Physical Presence Interface of this firmware does not support the requested method.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PCP_ERROR_MASK">
            <summary>Platform Crypto Provider Error Codes (PCPKSP.dll and future platform crypto providers)
            This is an error mask to convert Platform Crypto Provider errors to win errors.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PCP_DEVICE_NOT_READY">
            <summary>The Platform Crypto Device is currently not ready. It needs to be fully provisioned to be operational.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PCP_INVALID_HANDLE">
            <summary>The handle provided to the Platform Crypto Provider is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PCP_INVALID_PARAMETER">
            <summary>A parameter provided to the Platform Crypto Provider is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PCP_FLAG_NOT_SUPPORTED">
            <summary>A provided flag to the Platform Crypto Provider is not supported.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PCP_NOT_SUPPORTED">
            <summary>The requested operation is not supported by this Platform Crypto Provider.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PCP_BUFFER_TOO_SMALL">
            <summary>The buffer is too small to contain all data. No information has been written to the buffer.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PCP_INTERNAL_ERROR">
            <summary>An unexpected internal error has occurred in the Platform Crypto Provider.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PCP_AUTHENTICATION_FAILED">
            <summary>The authorization to use a provider object has failed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PCP_AUTHENTICATION_IGNORED">
            <summary>The Platform Crypto Device has ignored the authorization for the provider object, to mitigate against a dictionary attack.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PCP_POLICY_NOT_FOUND">
            <summary>The referenced policy was not found.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PCP_PROFILE_NOT_FOUND">
            <summary>The referenced profile was not found.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PCP_VALIDATION_FAILED">
            <summary>The validation was not succesful.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PCP_DEVICE_NOT_FOUND">
            <summary>A Platform Crypto Device was not found.  Operations that require a Platform Crypto Device will not be submitted.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PCP_WRONG_PARENT">
            <summary>An attempt was made to import or load a key under an incorrect storage parent.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PCP_KEY_NOT_LOADED">
            <summary>The TPM key is not loaded.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PCP_NO_KEY_CERTIFICATION">
            <summary>The TPM key certification has not been generated.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PCP_KEY_NOT_FINALIZED">
            <summary>The TPM key is not yet finalized.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PCP_ATTESTATION_CHALLENGE_NOT_SET">
            <summary>The TPM attestation challenge is not set.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PCP_NOT_PCR_BOUND">
            <summary>The TPM key is not bound to PCR info.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PCP_KEY_ALREADY_FINALIZED">
            <summary>The TPM key is already finalized.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PCP_KEY_USAGE_POLICY_NOT_SUPPORTED">
            <summary>The TPM key usage policy is not supported.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PCP_KEY_USAGE_POLICY_INVALID">
            <summary>The TPM key usage policy is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PCP_SOFT_KEY_ERROR">
            <summary>There was a problem with the software key being imported into the TPM.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PCP_KEY_NOT_AUTHENTICATED">
            <summary>The TPM key is not authenticated.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PCP_KEY_NOT_AIK">
            <summary>The TPM key is not an AIK.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PCP_KEY_NOT_SIGNING_KEY">
            <summary>The TPM key is not a signing key.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PCP_LOCKED_OUT">
            <summary>The TPM is locked out.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PCP_CLAIM_TYPE_NOT_SUPPORTED">
            <summary>The claim type requested is not supported.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PCP_TPM_VERSION_NOT_SUPPORTED">
            <summary>The current TPM version is not supported.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PCP_BUFFER_LENGTH_MISMATCH">
            <summary>The buffer lengths do not match.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PCP_IFX_RSA_KEY_CREATION_BLOCKED">
            <summary>The RSA key creation is blocked on this TPM due to known security vulnerabilities.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PCP_TICKET_MISSING">
            <summary>A ticket required to use a key was not provided.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PCP_RAW_POLICY_NOT_SUPPORTED">
            <summary>This key has a raw policy so the KSP can't authenticate against it.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_RTPM_CONTEXT_CONTINUE">
            <summary>Remote TPM Error Codes
            The remote TPM context exchange is not complete. The context should be transported to the target and continued.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_RTPM_CONTEXT_COMPLETE">
            <summary>The remote TPM operation is complete.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_RTPM_NO_RESULT">
            <summary>No result associated with this instance exists.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_RTPM_PCR_READ_INCOMPLETE">
            <summary>The TPM returned incomplete PCR results. This maybe due to an unsupported selection set. Attempt the read again with a different selection set.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_RTPM_INVALID_CONTEXT">
            <summary>The rTPM context has been corrupted. The rTPM operation must be restarted.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_RTPM_UNSUPPORTED_CMD">
            <summary>The rTPM target does not support remote processing of the specified TPM command.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_TPM_ZERO_EXHAUST_ENABLED">
            <summary>Misc TPM Error Codes
            TPM related network operations are blocked as Zero Exhaust mode is enabled on client.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HV_INVALID_HYPERCALL_CODE">
            <summary>Hypervisor error codes - changes to these codes must be reflected in HvStatus.h
            The hypervisor does not support the operation because the specified hypercall code is not supported.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HV_INVALID_HYPERCALL_INPUT">
            <summary>The hypervisor does not support the operation because the encoding for the hypercall input register is not supported.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HV_INVALID_ALIGNMENT">
            <summary>The hypervisor could not perform the operation because a parameter has an invalid alignment.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HV_INVALID_PARAMETER">
            <summary>The hypervisor could not perform the operation because an invalid parameter was specified.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HV_ACCESS_DENIED">
            <summary>Access to the specified object was denied.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HV_INVALID_PARTITION_STATE">
            <summary>The hypervisor could not perform the operation because the partition is entering or in an invalid state.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HV_OPERATION_DENIED">
            <summary>The operation is not allowed in the current state.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HV_UNKNOWN_PROPERTY">
            <summary>The hypervisor does not recognize the specified partition property.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HV_PROPERTY_VALUE_OUT_OF_RANGE">
            <summary>The specified value of a partition property is out of range or violates an invariant.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HV_INSUFFICIENT_MEMORY">
            <summary>There is not enough memory in the hypervisor pool to complete the operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HV_PARTITION_TOO_DEEP">
            <summary>The maximum partition depth has been exceeded for the partition hierarchy.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HV_INVALID_PARTITION_ID">
            <summary>A partition with the specified partition Id does not exist.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HV_INVALID_VP_INDEX">
            <summary>The hypervisor could not perform the operation because the specified VP index is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HV_INVALID_PORT_ID">
            <summary>The hypervisor could not perform the operation because the specified port identifier is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HV_INVALID_CONNECTION_ID">
            <summary>The hypervisor could not perform the operation because the specified connection identifier is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HV_INSUFFICIENT_BUFFERS">
            <summary>Not enough buffers were supplied to send a message.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HV_NOT_ACKNOWLEDGED">
            <summary>The previous virtual interrupt has not been acknowledged.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HV_INVALID_VP_STATE">
            <summary>A virtual processor is not in the correct state for the indicated operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HV_ACKNOWLEDGED">
            <summary>The previous virtual interrupt has already been acknowledged.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HV_INVALID_SAVE_RESTORE_STATE">
            <summary>The indicated partition is not in a valid state for saving or restoring.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HV_INVALID_SYNIC_STATE">
            <summary>The hypervisor could not complete the operation because a required feature of the synthetic interrupt controller (SynIC) was disabled.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HV_OBJECT_IN_USE">
            <summary>The hypervisor could not perform the operation because the object or value was either already in use or being used for a purpose that would not permit completing the operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HV_INVALID_PROXIMITY_DOMAIN_INFO">
            <summary>The proximity domain information is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HV_NO_DATA">
            <summary>An attempt to retrieve debugging data failed because none was available.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HV_INACTIVE">
            <summary>The physical connection being used for debugging has not recorded any receive activity since the last operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HV_NO_RESOURCES">
            <summary>There are not enough resources to complete the operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HV_FEATURE_UNAVAILABLE">
            <summary>A hypervisor feature is not available to the user.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HV_INSUFFICIENT_BUFFER">
            <summary>The specified buffer was too small to contain all of the requested data.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HV_INSUFFICIENT_DEVICE_DOMAINS">
            <summary>The maximum number of domains supported by the platform I/O remapping hardware is currently in use. No domains are available to assign this device to this partition.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HV_CPUID_FEATURE_VALIDATION_ERROR">
            <summary>Validation of CPUID data of the processor failed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HV_CPUID_XSAVE_FEATURE_VALIDATION_ERROR">
            <summary>Validation of XSAVE CPUID data of the processor failed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HV_PROCESSOR_STARTUP_TIMEOUT">
            <summary>Processor did not respond within the timeout period.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HV_SMX_ENABLED">
            <summary>SMX has been enabled in the BIOS.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HV_INVALID_LP_INDEX">
            <summary>The hypervisor could not perform the operation because the specified LP index is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HV_INVALID_REGISTER_VALUE">
            <summary>The supplied register value is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HV_INVALID_VTL_STATE">
            <summary>The supplied virtual trust level is not in the correct state to perform the requested operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HV_NX_NOT_DETECTED">
            <summary>No execute feature (NX) is not present or not enabled in the BIOS.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HV_INVALID_DEVICE_ID">
            <summary>The supplied device ID is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HV_INVALID_DEVICE_STATE">
            <summary>The operation is not allowed in the current device state.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HV_PENDING_PAGE_REQUESTS">
            <summary>The device had pending page requests which were discarded.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HV_PAGE_REQUEST_INVALID">
            <summary>The supplied page request specifies a memory access that the guest does not have permissions to perform.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HV_INVALID_CPU_GROUP_ID">
            <summary>A CPU group with the specified CPU group Id does not exist.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HV_INVALID_CPU_GROUP_STATE">
            <summary>The hypervisor could not perform the operation because the CPU group is entering or in an invalid state.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HV_OPERATION_FAILED">
            <summary>The requested operation failed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HV_NOT_ALLOWED_WITH_NESTED_VIRT_ACTIVE">
            <summary>The hypervisor could not perform the operation because it is not allowed with nested virtualization active.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HV_NOT_PRESENT">
            <summary>No hypervisor is present on this system.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VID_DUPLICATE_HANDLER">
            <summary>Virtualization status codes - these codes are used by the Virtualization Infrustructure Driver (VID) and other components
                                          of the virtualization stack.
            Errors:
            The handler for the virtualization infrastructure driver is already registered. Restarting the virtual machine may fix the problem. If the problem persists, try restarting the physical computer.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VID_TOO_MANY_HANDLERS">
            <summary>The number of registered handlers for the virtualization infrastructure driver exceeded the maximum. Restarting the virtual machine may fix the problem. If the problem persists, try restarting the physical computer.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VID_QUEUE_FULL">
            <summary>The message queue for the virtualization infrastructure driver is full and cannot accept new messages. Restarting the virtual machine may fix the problem. If the problem persists, try restarting the physical computer.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VID_HANDLER_NOT_PRESENT">
            <summary>No handler exists to handle the message for the virtualization infrastructure driver. Restarting the virtual machine may fix the problem. If the problem persists, try restarting the physical computer.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VID_INVALID_OBJECT_NAME">
            <summary>The name of the partition or message queue for the virtualization infrastructure driver is invalid. Restarting the virtual machine may fix the problem. If the problem persists, try restarting the physical computer.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VID_PARTITION_NAME_TOO_LONG">
            <summary>The partition name of the virtualization infrastructure driver exceeds the maximum.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VID_MESSAGE_QUEUE_NAME_TOO_LONG">
            <summary>The message queue name of the virtualization infrastructure driver exceeds the maximum.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VID_PARTITION_ALREADY_EXISTS">
            <summary>Cannot create the partition for the virtualization infrastructure driver because another partition with the same name already exists.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VID_PARTITION_DOES_NOT_EXIST">
            <summary>The virtualization infrastructure driver has encountered an error. The requested partition does not exist. Restarting the virtual machine may fix the problem. If the problem persists, try restarting the physical computer.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VID_PARTITION_NAME_NOT_FOUND">
            <summary>The virtualization infrastructure driver has encountered an error. Could not find the requested partition. Restarting the virtual machine may fix the problem. If the problem persists, try restarting the physical computer.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VID_MESSAGE_QUEUE_ALREADY_EXISTS">
            <summary>A message queue with the same name already exists for the virtualization infrastructure driver.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VID_EXCEEDED_MBP_ENTRY_MAP_LIMIT">
            <summary>The memory block page for the virtualization infrastructure driver cannot be mapped because the page map limit has been reached. Restarting the virtual machine may fix the problem. If the problem persists, try restarting the physical computer.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VID_MB_STILL_REFERENCED">
            <summary>The memory block for the virtualization infrastructure driver is still being used and cannot be destroyed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VID_CHILD_GPA_PAGE_SET_CORRUPTED">
            <summary>Cannot unlock the page array for the guest operating system memory address because it does not match a previous lock request. Restarting the virtual machine may fix the problem. If the problem persists, try restarting the physical computer.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VID_INVALID_NUMA_SETTINGS">
            <summary>The non-uniform memory access (NUMA) node settings do not match the system NUMA topology. In order to start the virtual machine, you will need to modify the NUMA configuration.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VID_INVALID_NUMA_NODE_INDEX">
            <summary>The non-uniform memory access (NUMA) node index does not match a valid index in the system NUMA topology.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VID_NOTIFICATION_QUEUE_ALREADY_ASSOCIATED">
            <summary>The memory block for the virtualization infrastructure driver is already associated with a message queue.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VID_INVALID_MEMORY_BLOCK_HANDLE">
            <summary>The handle is not a valid memory block handle for the virtualization infrastructure driver.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VID_PAGE_RANGE_OVERFLOW">
            <summary>The request exceeded the memory block page limit for the virtualization infrastructure driver. Restarting the virtual machine may fix the problem. If the problem persists, try restarting the physical computer.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VID_INVALID_MESSAGE_QUEUE_HANDLE">
            <summary>The handle is not a valid message queue handle for the virtualization infrastructure driver.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VID_INVALID_GPA_RANGE_HANDLE">
            <summary>The handle is not a valid page range handle for the virtualization infrastructure driver.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VID_NO_MEMORY_BLOCK_NOTIFICATION_QUEUE">
            <summary>Cannot install client notifications because no message queue for the virtualization infrastructure driver is associated with the memory block.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VID_MEMORY_BLOCK_LOCK_COUNT_EXCEEDED">
            <summary>The request to lock or map a memory block page failed because the virtualization infrastructure driver memory block limit has been reached. Restarting the virtual machine may fix the problem. If the problem persists, try restarting the physical computer.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VID_INVALID_PPM_HANDLE">
            <summary>The handle is not a valid parent partition mapping handle for the virtualization infrastructure driver.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VID_MBPS_ARE_LOCKED">
            <summary>Notifications cannot be created on the memory block because it is use.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VID_MESSAGE_QUEUE_CLOSED">
            <summary>The message queue for the virtualization infrastructure driver has been closed. Restarting the virtual machine may fix the problem. If the problem persists, try restarting the physical computer.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VID_VIRTUAL_PROCESSOR_LIMIT_EXCEEDED">
            <summary>Cannot add a virtual processor to the partition because the maximum has been reached.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VID_STOP_PENDING">
            <summary>Cannot stop the virtual processor immediately because of a pending intercept.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VID_INVALID_PROCESSOR_STATE">
            <summary>Invalid state for the virtual processor. Restarting the virtual machine may fix the problem. If the problem persists, try restarting the physical computer.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VID_EXCEEDED_KM_CONTEXT_COUNT_LIMIT">
            <summary>The maximum number of kernel mode clients for the virtualization infrastructure driver has been reached. Restarting the virtual machine may fix the problem. If the problem persists, try restarting the physical computer.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VID_KM_INTERFACE_ALREADY_INITIALIZED">
            <summary>This kernel mode interface for the virtualization infrastructure driver has already been initialized. Restarting the virtual machine may fix the problem. If the problem persists, try restarting the physical computer.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VID_MB_PROPERTY_ALREADY_SET_RESET">
            <summary>Cannot set or reset the memory block property more than once for the virtualization infrastructure driver. Restarting the virtual machine may fix the problem. If the problem persists, try restarting the physical computer.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VID_MMIO_RANGE_DESTROYED">
            <summary>The memory mapped I/O for this page range no longer exists. Restarting the virtual machine may fix the problem. If the problem persists, try restarting the physical computer.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VID_INVALID_CHILD_GPA_PAGE_SET">
            <summary>The lock or unlock request uses an invalid guest operating system memory address. Restarting the virtual machine may fix the problem. If the problem persists, try restarting the physical computer.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VID_RESERVE_PAGE_SET_IS_BEING_USED">
            <summary>Cannot destroy or reuse the reserve page set for the virtualization infrastructure driver because it is in use. Restarting the virtual machine may fix the problem. If the problem persists, try restarting the physical computer.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VID_RESERVE_PAGE_SET_TOO_SMALL">
            <summary>The reserve page set for the virtualization infrastructure driver is too small to use in the lock request. Restarting the virtual machine may fix the problem. If the problem persists, try restarting the physical computer.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VID_MBP_ALREADY_LOCKED_USING_RESERVED_PAGE">
            <summary>Cannot lock or map the memory block page for the virtualization infrastructure driver because it has already been locked using a reserve page set page. Restarting the virtual machine may fix the problem. If the problem persists, try restarting the physical computer.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VID_MBP_COUNT_EXCEEDED_LIMIT">
            <summary>Cannot create the memory block for the virtualization infrastructure driver because the requested number of pages exceeded the limit. Restarting the virtual machine may fix the problem. If the problem persists, try restarting the physical computer.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VID_SAVED_STATE_CORRUPT">
            <summary>Cannot restore this virtual machine because the saved state data cannot be read. Delete the saved state data and then try to start the virtual machine.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VID_SAVED_STATE_UNRECOGNIZED_ITEM">
            <summary>Cannot restore this virtual machine because an item read from the saved state data is not recognized. Delete the saved state data and then try to start the virtual machine.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VID_SAVED_STATE_INCOMPATIBLE">
            <summary>Cannot restore this virtual machine to the saved state because of hypervisor incompatibility. Delete the saved state data and then try to start the virtual machine.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VID_VTL_ACCESS_DENIED">
            <summary>The specified VTL does not have the permission to access the resource.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VID_REMOTE_NODE_PARENT_GPA_PAGES_USED">
            <summary>Warnings:
            A virtual machine is running with its memory allocated across multiple NUMA nodes. This does not indicate a problem unless the performance of your virtual machine is unusually slow. If you are experiencing performance problems, you may need to modify the NUMA configuration.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_IPSEC_BAD_SPI">
            <summary>IPSEC error codes (tcpip.sys)
            The SPI in the packet does not match a valid IPsec SA.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_IPSEC_SA_LIFETIME_EXPIRED">
            <summary>Packet was received on an IPsec SA whose lifetime has expired.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_IPSEC_WRONG_SA">
            <summary>Packet was received on an IPsec SA that does not match the packet characteristics.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_IPSEC_REPLAY_CHECK_FAILED">
            <summary>Packet sequence number replay check failed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_IPSEC_INVALID_PACKET">
            <summary>IPsec header and/or trailer in the packet is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_IPSEC_INTEGRITY_CHECK_FAILED">
            <summary>IPsec integrity check failed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_IPSEC_CLEAR_TEXT_DROP">
            <summary>IPsec dropped a clear text packet.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_IPSEC_AUTH_FIREWALL_DROP">
            <summary>IPsec dropped an incoming ESP packet in authenticated firewall mode. This drop is benign.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_IPSEC_THROTTLE_DROP">
            <summary>IPsec dropped a packet due to DoS throttling.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_IPSEC_DOSP_BLOCK">
            <summary>IPsec DoS Protection matched an explicit block rule.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_IPSEC_DOSP_RECEIVED_MULTICAST">
            <summary>IPsec DoS Protection received an IPsec specific multicast packet which is not allowed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_IPSEC_DOSP_INVALID_PACKET">
            <summary>IPsec DoS Protection received an incorrectly formatted packet.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_IPSEC_DOSP_STATE_LOOKUP_FAILED">
            <summary>IPsec DoS Protection failed to look up state.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_IPSEC_DOSP_MAX_ENTRIES">
            <summary>IPsec DoS Protection failed to create state because the maximum number of entries allowed by policy has been reached.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_IPSEC_DOSP_KEYMOD_NOT_ALLOWED">
            <summary>IPsec DoS Protection received an IPsec negotiation packet for a keying module which is not allowed by policy.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_IPSEC_DOSP_MAX_PER_IP_RATELIMIT_QUEUES">
            <summary>IPsec DoS Protection failed to create a per internal IP rate limit queue because the maximum number of queues allowed by policy has been reached.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_INCOMPLETE_REGENERATION">
            <summary>Volume manager status codes (volmgr.sys and volmgrx.sys)
            WARNINGS
            The regeneration operation was not able to copy all data from the active plexes due to bad sectors.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_INCOMPLETE_DISK_MIGRATION">
            <summary>One or more disks were not fully migrated to the target pack. They may or may not require reimport after fixing the hardware problems.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_DATABASE_FULL">
            <summary>ERRORS
            The configuration database is full.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_DISK_CONFIGURATION_CORRUPTED">
            <summary>The configuration data on the disk is corrupted.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_DISK_CONFIGURATION_NOT_IN_SYNC">
            <summary>The configuration on the disk is not insync with the in-memory configuration.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_PACK_CONFIG_UPDATE_FAILED">
            <summary>A majority of disks failed to be updated with the new configuration.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_DISK_CONTAINS_NON_SIMPLE_VOLUME">
            <summary>The disk contains non-simple volumes.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_DISK_DUPLICATE">
            <summary>The same disk was specified more than once in the migration list.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_DISK_DYNAMIC">
            <summary>The disk is already dynamic.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_DISK_ID_INVALID">
            <summary>The specified disk id is invalid. There are no disks with the specified disk id.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_DISK_INVALID">
            <summary>The specified disk is an invalid disk. Operation cannot complete on an invalid disk.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_DISK_LAST_VOTER">
            <summary>The specified disk(s) cannot be removed since it is the last remaining voter.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_DISK_LAYOUT_INVALID">
            <summary>The specified disk has an invalid disk layout.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_DISK_LAYOUT_NON_BASIC_BETWEEN_BASIC_PARTITIONS">
            <summary>The disk layout contains non-basic partitions which appear after basic paritions. This is an invalid disk layout.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_DISK_LAYOUT_NOT_CYLINDER_ALIGNED">
            <summary>The disk layout contains partitions which are not cylinder aligned.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_DISK_LAYOUT_PARTITIONS_TOO_SMALL">
            <summary>The disk layout contains partitions which are samller than the minimum size.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_DISK_LAYOUT_PRIMARY_BETWEEN_LOGICAL_PARTITIONS">
            <summary>The disk layout contains primary partitions in between logical drives. This is an invalid disk layout.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_DISK_LAYOUT_TOO_MANY_PARTITIONS">
            <summary>The disk layout contains more than the maximum number of supported partitions.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_DISK_MISSING">
            <summary>The specified disk is missing. The operation cannot complete on a missing disk.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_DISK_NOT_EMPTY">
            <summary>The specified disk is not empty.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_DISK_NOT_ENOUGH_SPACE">
            <summary>There is not enough usable space for this operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_DISK_REVECTORING_FAILED">
            <summary>The force revectoring of bad sectors failed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_DISK_SECTOR_SIZE_INVALID">
            <summary>The specified disk has an invalid sector size.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_DISK_SET_NOT_CONTAINED">
            <summary>The specified disk set contains volumes which exist on disks outside of the set.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_DISK_USED_BY_MULTIPLE_MEMBERS">
            <summary>A disk in the volume layout provides extents to more than one member of a plex.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_DISK_USED_BY_MULTIPLE_PLEXES">
            <summary>A disk in the volume layout provides extents to more than one plex.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_DYNAMIC_DISK_NOT_SUPPORTED">
            <summary>Dynamic disks are not supported on this system.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_EXTENT_ALREADY_USED">
            <summary>The specified extent is already used by other volumes.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_EXTENT_NOT_CONTIGUOUS">
            <summary>The specified volume is retained and can only be extended into a contiguous extent. The specified extent to grow the volume is not contiguous with the specified volume.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_EXTENT_NOT_IN_PUBLIC_REGION">
            <summary>The specified volume extent is not within the public region of the disk.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_EXTENT_NOT_SECTOR_ALIGNED">
            <summary>The specifed volume extent is not sector aligned.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_EXTENT_OVERLAPS_EBR_PARTITION">
            <summary>The specified parition overlaps an EBR (the first track of an extended partition on a MBR disks).</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_EXTENT_VOLUME_LENGTHS_DO_NOT_MATCH">
            <summary>The specified extent lengths cannot be used to construct a volume with specified length.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_FAULT_TOLERANT_NOT_SUPPORTED">
            <summary>The system does not support fault tolerant volumes.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_INTERLEAVE_LENGTH_INVALID">
            <summary>The specified interleave length is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_MAXIMUM_REGISTERED_USERS">
            <summary>There is already a maximum number of registered users.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_MEMBER_IN_SYNC">
            <summary>The specified member is already in-sync with the other active members. It does not need to be regenerated.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_MEMBER_INDEX_DUPLICATE">
            <summary>The same member index was specified more than once.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_MEMBER_INDEX_INVALID">
            <summary>The specified member index is greater or equal than the number of members in the volume plex.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_MEMBER_MISSING">
            <summary>The specified member is missing. It cannot be regenerated.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_MEMBER_NOT_DETACHED">
            <summary>The specified member is not detached. Cannot replace a member which is not detached.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_MEMBER_REGENERATING">
            <summary>The specified member is already regenerating.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_ALL_DISKS_FAILED">
            <summary>All disks belonging to the pack failed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_NO_REGISTERED_USERS">
            <summary>There are currently no registered users for notifications. The task number is irrelevant unless there are registered users.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_NO_SUCH_USER">
            <summary>The specified notification user does not exist. Failed to unregister user for notifications.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_NOTIFICATION_RESET">
            <summary>The notifications have been reset. Notifications for the current user are invalid. Unregister and re-register for notifications.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_NUMBER_OF_MEMBERS_INVALID">
            <summary>The specified number of members is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_NUMBER_OF_PLEXES_INVALID">
            <summary>The specified number of plexes is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_PACK_DUPLICATE">
            <summary>The specified source and target packs are identical.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_PACK_ID_INVALID">
            <summary>The specified pack id is invalid. There are no packs with the specified pack id.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_PACK_INVALID">
            <summary>The specified pack is the invalid pack. The operation cannot complete with the invalid pack.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_PACK_NAME_INVALID">
            <summary>The specified pack name is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_PACK_OFFLINE">
            <summary>The specified pack is offline.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_PACK_HAS_QUORUM">
            <summary>The specified pack already has a quorum of healthy disks.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_PACK_WITHOUT_QUORUM">
            <summary>The pack does not have a quorum of healthy disks.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_PARTITION_STYLE_INVALID">
            <summary>The specified disk has an unsupported partition style. Only MBR and GPT partition styles are supported.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_PARTITION_UPDATE_FAILED">
            <summary>Failed to update the disk's partition layout.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_PLEX_IN_SYNC">
            <summary>The specified plex is already in-sync with the other active plexes. It does not need to be regenerated.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_PLEX_INDEX_DUPLICATE">
            <summary>The same plex index was specified more than once.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_PLEX_INDEX_INVALID">
            <summary>The specified plex index is greater or equal than the number of plexes in the volume.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_PLEX_LAST_ACTIVE">
            <summary>The specified plex is the last active plex in the volume. The plex cannot be removed or else the volume will go offline.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_PLEX_MISSING">
            <summary>The specified plex is missing.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_PLEX_REGENERATING">
            <summary>The specified plex is currently regenerating.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_PLEX_TYPE_INVALID">
            <summary>The specified plex type is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_PLEX_NOT_RAID5">
            <summary>The operation is only supported on RAID-5 plexes.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_PLEX_NOT_SIMPLE">
            <summary>The operation is only supported on simple plexes.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_STRUCTURE_SIZE_INVALID">
            <summary>The Size fields in the VM_VOLUME_LAYOUT input structure are incorrectly set.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_TOO_MANY_NOTIFICATION_REQUESTS">
            <summary>There is already a pending request for notifications. Wait for the existing request to return before requesting for more notifications.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_TRANSACTION_IN_PROGRESS">
            <summary>There is currently a transaction in process.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_UNEXPECTED_DISK_LAYOUT_CHANGE">
            <summary>An unexpected layout change occurred outside of the volume manager.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_VOLUME_CONTAINS_MISSING_DISK">
            <summary>The specified volume contains a missing disk.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_VOLUME_ID_INVALID">
            <summary>The specified volume id is invalid. There are no volumes with the specified volume id.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_VOLUME_LENGTH_INVALID">
            <summary>The specified volume length is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_VOLUME_LENGTH_NOT_SECTOR_SIZE_MULTIPLE">
            <summary>The specified size for the volume is not a multiple of the sector size.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_VOLUME_NOT_MIRRORED">
            <summary>The operation is only supported on mirrored volumes.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_VOLUME_NOT_RETAINED">
            <summary>The specified volume does not have a retain partition.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_VOLUME_OFFLINE">
            <summary>The specified volume is offline.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_VOLUME_RETAINED">
            <summary>The specified volume already has a retain partition.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_NUMBER_OF_EXTENTS_INVALID">
            <summary>The specified number of extents is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_DIFFERENT_SECTOR_SIZE">
            <summary>All disks participating to the volume must have the same sector size.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_BAD_BOOT_DISK">
            <summary>The boot disk experienced failures.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_PACK_CONFIG_OFFLINE">
            <summary>The configuration of the pack is offline.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_PACK_CONFIG_ONLINE">
            <summary>The configuration of the pack is online.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_NOT_PRIMARY_PACK">
            <summary>The specified pack is not the primary pack.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_PACK_LOG_UPDATE_FAILED">
            <summary>All disks failed to be updated with the new content of the log.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_NUMBER_OF_DISKS_IN_PLEX_INVALID">
            <summary>The specified number of disks in a plex is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_NUMBER_OF_DISKS_IN_MEMBER_INVALID">
            <summary>The specified number of disks in a plex member is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_VOLUME_MIRRORED">
            <summary>The operation is not supported on mirrored volumes.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_PLEX_NOT_SIMPLE_SPANNED">
            <summary>The operation is only supported on simple and spanned plexes.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_NO_VALID_LOG_COPIES">
            <summary>The pack has no valid log copies.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_PRIMARY_PACK_PRESENT">
            <summary>A primary pack is already present.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_NUMBER_OF_DISKS_INVALID">
            <summary>The specified number of disks is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_MIRROR_NOT_SUPPORTED">
            <summary>The system does not support mirrored volumes.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLMGR_RAID5_NOT_SUPPORTED">
            <summary>The system does not support RAID-5 volumes.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BCD_NOT_ALL_ENTRIES_IMPORTED">
            <summary>Boot Code Data (BCD) status codes
            Some BCD entries were not imported correctly from the BCD store.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BCD_TOO_MANY_ELEMENTS">
            <summary>Entries enumerated have exceeded the allowed threshold.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BCD_NOT_ALL_ENTRIES_SYNCHRONIZED">
            <summary>Some BCD entries were not synchronized correctly with the firmware.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VHD_DRIVE_FOOTER_MISSING">
            <summary>vhdparser error codes (vhdmp.sys)
            The virtual hard disk is corrupted. The virtual hard disk drive footer is missing.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VHD_DRIVE_FOOTER_CHECKSUM_MISMATCH">
            <summary>The virtual hard disk is corrupted. The virtual hard disk drive footer checksum does not match the on-disk checksum.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VHD_DRIVE_FOOTER_CORRUPT">
            <summary>The virtual hard disk is corrupted. The virtual hard disk drive footer in the virtual hard disk is corrupted.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VHD_FORMAT_UNKNOWN">
            <summary>The system does not recognize the file format of this virtual hard disk.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VHD_FORMAT_UNSUPPORTED_VERSION">
            <summary>The version does not support this version of the file format.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VHD_SPARSE_HEADER_CHECKSUM_MISMATCH">
            <summary>The virtual hard disk is corrupted. The sparse header checksum does not match the on-disk checksum.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VHD_SPARSE_HEADER_UNSUPPORTED_VERSION">
            <summary>The system does not support this version of the virtual hard disk.This version of the sparse header is not supported.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VHD_SPARSE_HEADER_CORRUPT">
            <summary>The virtual hard disk is corrupted. The sparse header in the virtual hard disk is corrupt.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VHD_BLOCK_ALLOCATION_FAILURE">
            <summary>Failed to write to the virtual hard disk failed because the system failed to allocate a new block in the virtual hard disk.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VHD_BLOCK_ALLOCATION_TABLE_CORRUPT">
            <summary>The virtual hard disk is corrupted. The block allocation table in the virtual hard disk is corrupt.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VHD_INVALID_BLOCK_SIZE">
            <summary>The system does not support this version of the virtual hard disk. The block size is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VHD_BITMAP_MISMATCH">
            <summary>The virtual hard disk is corrupted. The block bitmap does not match with the block data present in the virtual hard disk.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VHD_PARENT_VHD_NOT_FOUND">
            <summary>The chain of virtual hard disks is broken. The system cannot locate the parent virtual hard disk for the differencing disk.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VHD_CHILD_PARENT_ID_MISMATCH">
            <summary>The chain of virtual hard disks is corrupted. There is a mismatch in the identifiers of the parent virtual hard disk and differencing disk.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VHD_CHILD_PARENT_TIMESTAMP_MISMATCH">
            <summary>The chain of virtual hard disks is corrupted. The time stamp of the parent virtual hard disk does not match the time stamp of the differencing disk.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VHD_METADATA_READ_FAILURE">
            <summary>Failed to read the metadata of the virtual hard disk.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VHD_METADATA_WRITE_FAILURE">
            <summary>Failed to write to the metadata of the virtual hard disk.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VHD_INVALID_SIZE">
            <summary>The size of the virtual hard disk is not valid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VHD_INVALID_FILE_SIZE">
            <summary>The file size of this virtual hard disk is not valid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VIRTDISK_PROVIDER_NOT_FOUND">
            <summary>A virtual disk support provider for the specified file was not found.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VIRTDISK_NOT_VIRTUAL_DISK">
            <summary>The specified disk is not a virtual disk.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VHD_PARENT_VHD_ACCESS_DENIED">
            <summary>The chain of virtual hard disks is inaccessible. The process has not been granted access rights to the parent virtual hard disk for the differencing disk.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VHD_CHILD_PARENT_SIZE_MISMATCH">
            <summary>The chain of virtual hard disks is corrupted. There is a mismatch in the virtual sizes of the parent virtual hard disk and differencing disk.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VHD_DIFFERENCING_CHAIN_CYCLE_DETECTED">
            <summary>The chain of virtual hard disks is corrupted. A differencing disk is indicated in its own parent chain.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VHD_DIFFERENCING_CHAIN_ERROR_IN_PARENT">
            <summary>The chain of virtual hard disks is inaccessible. There was an error opening a virtual hard disk further up the chain.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VIRTUAL_DISK_LIMITATION">
            <summary>The requested operation could not be completed due to a virtual disk system limitation.  Virtual hard disk files must be uncompressed and unencrypted and must not be sparse.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VHD_INVALID_TYPE">
            <summary>The requested operation cannot be performed on a virtual disk of this type.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VHD_INVALID_STATE">
            <summary>The requested operation cannot be performed on the virtual disk in its current state.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VIRTDISK_UNSUPPORTED_DISK_SECTOR_SIZE">
            <summary>The sector size of the physical disk on which the virtual disk resides is not supported.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VIRTDISK_DISK_ALREADY_OWNED">
            <summary>The disk is already owned by a different owner.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VIRTDISK_DISK_ONLINE_AND_WRITABLE">
            <summary>The disk must be offline or read-only.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CTLOG_TRACKING_NOT_INITIALIZED">
            <summary>Change Tracking is not initialized for this virtual disk.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CTLOG_LOGFILE_SIZE_EXCEEDED_MAXSIZE">
            <summary>Size of change tracking file exceeded the maximum size limit.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CTLOG_VHD_CHANGED_OFFLINE">
            <summary>VHD file is changed due to compaction, expansion, or offline updates.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CTLOG_INVALID_TRACKING_STATE">
            <summary>Change Tracking for the virtual disk is not in a valid state to perform this request.  Change tracking could be discontinued or already in the requested state.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CTLOG_INCONSISTENT_TRACKING_FILE">
            <summary>Change Tracking file for the virtual disk is not in a valid state.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VHD_METADATA_FULL">
            <summary>There is not enough space in the virtual disk file for the provided metadata item.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VHD_INVALID_CHANGE_TRACKING_ID">
            <summary>The specified change tracking identifier is not valid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VHD_CHANGE_TRACKING_DISABLED">
            <summary>Change tracking is disabled for the specified virtual hard disk, so no change tracking information is available.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VHD_MISSING_CHANGE_TRACKING_INFORMATION">
            <summary>There is no change tracking data available associated with the specified change tracking identifier.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VHD_RESIZE_WOULD_TRUNCATE_DATA">
            <summary>The requested resize operation might truncate user data residing on the virtual disk.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VHD_COULD_NOT_COMPUTE_MINIMUM_VIRTUAL_SIZE">
            <summary>The minimum safe size of the virtual disk could not be determined. This may be due to a missing or corrupt partition table.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VHD_ALREADY_AT_OR_BELOW_MINIMUM_VIRTUAL_SIZE">
            <summary>The size of the virtual disk cannot be safely reduced further.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_QUERY_STORAGE_ERROR">
            <summary>Vhd warnings.
            The virtualization storage subsystem has generated an error.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_GDI_HANDLE_LEAK">
            <summary>NtGdi warnings.
            GDI handles were potentially leaked by the application.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_RKF_KEY_NOT_FOUND">
            <summary>Resume Key Filter (RKF) error codes.
            The Resume Key Filter could not find the resume key supplied for the operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_RKF_DUPLICATE_KEY">
            <summary>The Resume Key Filter found an existing resume key that matches the one supplied for the handle.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_RKF_BLOB_FULL">
            <summary>The Resume Key Filter data blob attached to the handle is full. No more space is available.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_RKF_STORE_FULL">
            <summary>The Resume Key Filter handle store is full. No more resume handles can be accepted.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_RKF_FILE_BLOCKED">
            <summary>The Resume Key Filter failed the operation because the file is temporarily blocked pending the resume of existing handles on the file.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_RKF_ACTIVE_KEY">
            <summary>The Resume Key Filter found an existing resume key that matches the one supplied on a handle that's active/open. The operation requires an inactive/closed handle.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_RDBSS_RESTART_OPERATION">
            <summary>RDBSS / MiniRdr internal error codes.
            The operation must be restarted by RDBSS.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_RDBSS_CONTINUE_OPERATION">
            <summary>The operation must continue processing.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_RDBSS_POST_OPERATION">
            <summary>The operation must be posted to a thread to be retried at passive IRQL.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_RDBSS_RETRY_LOOKUP">
            <summary>The caller must retry by looking up the object in the name table.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BTH_ATT_INVALID_HANDLE">
            <summary>Bluetooth Attribute Protocol Warnings
            The attribute handle given was not valid on this server.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BTH_ATT_READ_NOT_PERMITTED">
            <summary>The attribute cannot be read.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BTH_ATT_WRITE_NOT_PERMITTED">
            <summary>The attribute cannot be written.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BTH_ATT_INVALID_PDU">
            <summary>The attribute PDU was invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BTH_ATT_INSUFFICIENT_AUTHENTICATION">
            <summary>The attribute requires authentication before it can be read or written.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BTH_ATT_REQUEST_NOT_SUPPORTED">
            <summary>Attribute server does not support the request received from the client.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BTH_ATT_INVALID_OFFSET">
            <summary>Offset specified was past the end of the attribute.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BTH_ATT_INSUFFICIENT_AUTHORIZATION">
            <summary>The attribute requires authorization before it can be read or written.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BTH_ATT_PREPARE_QUEUE_FULL">
            <summary>Too many prepare writes have been queued.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BTH_ATT_ATTRIBUTE_NOT_FOUND">
            <summary>No attribute found within the given attribute handle range.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BTH_ATT_ATTRIBUTE_NOT_LONG">
            <summary>The attribute cannot be read or written using the Read Blob Request.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BTH_ATT_INSUFFICIENT_ENCRYPTION_KEY_SIZE">
            <summary>The Encryption Key Size used for encrypting this link is insufficient.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BTH_ATT_INVALID_ATTRIBUTE_VALUE_LENGTH">
            <summary>The attribute value length is invalid for the operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BTH_ATT_UNLIKELY">
            <summary>The attribute request that was requested has encountered an error that was unlikely, and therefore could not be completed as requested.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BTH_ATT_INSUFFICIENT_ENCRYPTION">
            <summary>The attribute requires encryption before it can be read or written.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BTH_ATT_UNSUPPORTED_GROUP_TYPE">
            <summary>The attribute type is not a supported grouping attribute as defined by a higher layer specification.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BTH_ATT_INSUFFICIENT_RESOURCES">
            <summary>Insufficient Resources to complete the request.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_BTH_ATT_UNKNOWN_ERROR">
            <summary>An error that lies in the reserved range has been received.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SECUREBOOT_ROLLBACK_DETECTED">
            <summary>Secure Boot error messages.
            Secure Boot detected that rollback of protected data has been attempted.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SECUREBOOT_POLICY_VIOLATION">
            <summary>The value is protected by Secure Boot policy and cannot be modified or deleted.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SECUREBOOT_INVALID_POLICY">
            <summary>The Secure Boot policy is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SECUREBOOT_POLICY_PUBLISHER_NOT_FOUND">
            <summary>A new Secure Boot policy did not contain the current publisher on its update list.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SECUREBOOT_POLICY_NOT_SIGNED">
            <summary>The Secure Boot policy is either not signed or is signed by a non-trusted signer.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SECUREBOOT_NOT_ENABLED">
            <summary>Secure Boot is not enabled on this machine.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SECUREBOOT_FILE_REPLACED">
            <summary>Secure Boot requires that certain files and drivers are not replaced by other files or drivers.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SECUREBOOT_POLICY_NOT_AUTHORIZED">
            <summary>The Secure Boot Supplemental Policy file was not authorized on this machine.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SECUREBOOT_POLICY_UNKNOWN">
            <summary>The Supplemntal Policy is not recognized on this device.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SECUREBOOT_POLICY_MISSING_ANTIROLLBACKVERSION">
            <summary>The Antirollback version was not found in the Secure Boot Policy.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SECUREBOOT_PLATFORM_ID_MISMATCH">
            <summary>The Platform ID specified in the Secure Boot policy does not match the Platform ID on this device.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SECUREBOOT_POLICY_ROLLBACK_DETECTED">
            <summary>The Secure Boot policy file has an older Antirollback Version than this device.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SECUREBOOT_POLICY_UPGRADE_MISMATCH">
            <summary>The Secure Boot policy file does not match the upgraded legacy policy.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SECUREBOOT_REQUIRED_POLICY_FILE_MISSING">
            <summary>The Secure Boot policy file is required but could not be found.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SECUREBOOT_NOT_BASE_POLICY">
            <summary>Supplemental Secure Boot policy file can not be loaded as a base Secure Boot policy.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SECUREBOOT_NOT_SUPPLEMENTAL_POLICY">
            <summary>Base Secure Boot policy file can not be loaded as a Supplemental Secure Boot policy.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PLATFORM_MANIFEST_NOT_AUTHORIZED">
            <summary>Platform Manifest Error Messages
            The Platform Manifest file was not authorized on this machine.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PLATFORM_MANIFEST_INVALID">
            <summary>The Platform Manifest file was not valid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PLATFORM_MANIFEST_FILE_NOT_AUTHORIZED">
            <summary>The file is not authorized on this platform because an entry was not found in the Platform Manifest.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PLATFORM_MANIFEST_CATALOG_NOT_AUTHORIZED">
            <summary>The catalog is not authorized on this platform because an entry was not found in the Platform Manifest.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PLATFORM_MANIFEST_BINARY_ID_NOT_FOUND">
            <summary>The file is not authorized on this platform because a Binary ID was not found in the embedded signature.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PLATFORM_MANIFEST_NOT_ACTIVE">
            <summary>No active Platform Manifest exists on this system.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_PLATFORM_MANIFEST_NOT_SIGNED">
            <summary>The Platform Manifest file was not properly signed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SYSTEM_INTEGRITY_ROLLBACK_DETECTED">
            <summary>System Integrity Policy error messages.
            System Integrity detected that policy rollback has been attempted.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SYSTEM_INTEGRITY_POLICY_VIOLATION">
            <summary>System Integrity policy has been violated.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SYSTEM_INTEGRITY_INVALID_POLICY">
            <summary>The System Integrity policy is invalid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SYSTEM_INTEGRITY_POLICY_NOT_SIGNED">
            <summary>The System Integrity policy is either not signed or is signed by a non-trusted signer.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_NO_APPLICABLE_APP_LICENSES_FOUND">
            <summary>Clip modern app and windows licensing error messages.
            No applicable app licenses found.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLIP_LICENSE_NOT_FOUND">
            <summary>CLiP license not found.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLIP_DEVICE_LICENSE_MISSING">
            <summary>CLiP device license not found.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLIP_LICENSE_INVALID_SIGNATURE">
            <summary>CLiP license has an invalid signature.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLIP_KEYHOLDER_LICENSE_MISSING_OR_INVALID">
            <summary>CLiP keyholder license is invalid or missing.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLIP_LICENSE_EXPIRED">
            <summary>CLiP license has expired.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLIP_LICENSE_SIGNED_BY_UNKNOWN_SOURCE">
            <summary>CLiP license is signed by an unknown source.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLIP_LICENSE_NOT_SIGNED">
            <summary>CLiP license is not signed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLIP_LICENSE_HARDWARE_ID_OUT_OF_TOLERANCE">
            <summary>CLiP license hardware ID is out of tolerance.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_CLIP_LICENSE_DEVICE_ID_MISMATCH">
            <summary>CLiP license device ID does not match the device ID in the bound device license.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_AUDIO_ENGINE_NODE_NOT_FOUND">
            <summary>Audio error messages.
            PortCls could not find an audio engine node exposed by a miniport driver claiming support for IMiniportAudioEngineNode.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HDAUDIO_EMPTY_CONNECTION_LIST">
            <summary>Audio error messages.
            HD Audio widget encountered an unexpected empty connection list.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HDAUDIO_CONNECTION_LIST_NOT_SUPPORTED">
            <summary>Audio error messages.
            HD Audio widget does not support the connection list parameter.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HDAUDIO_NO_LOGICAL_DEVICES_CREATED">
            <summary>Audio error messages.
            No HD Audio subdevices were successfully created.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_HDAUDIO_NULL_LINKED_LIST_ENTRY">
            <summary>Audio error messages.
            An unexpected NULL pointer was encountered in a linked list.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SPACES_REPAIRED">
            <summary>Spaceport success codes (spaceport.sys)
            The repair was successful.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SPACES_PAUSE">
            <summary>The operation has been paused.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SPACES_COMPLETE">
            <summary>The operation is complete.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SPACES_REDIRECT">
            <summary>The operation should be redirected to another node.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SPACES_FAULT_DOMAIN_TYPE_INVALID">
            <summary>Spaceport error codes (spaceport.sys)
            The specified fault domain type or combination of minimum / maximum fault domain type is not valid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SPACES_RESILIENCY_TYPE_INVALID">
            <summary>The specified resiliency type is not valid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SPACES_DRIVE_SECTOR_SIZE_INVALID">
            <summary>The sector size of the physical disk is not supported by the storage pool.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SPACES_DRIVE_REDUNDANCY_INVALID">
            <summary>The value for fault tolerance is outside of the supported range of values.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SPACES_NUMBER_OF_DATA_COPIES_INVALID">
            <summary>The number of data copies requested is outside of the supported range of values.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SPACES_INTERLEAVE_LENGTH_INVALID">
            <summary>The value for interleave length is outside of the supported range of values or is not a power of 2.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SPACES_NUMBER_OF_COLUMNS_INVALID">
            <summary>The number of columns specified is outside of the supported range of values.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SPACES_NOT_ENOUGH_DRIVES">
            <summary>There were not enough physical disks to complete the requested operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SPACES_EXTENDED_ERROR">
            <summary>Extended error information is available.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SPACES_PROVISIONING_TYPE_INVALID">
            <summary>The specified provisioning type is not valid.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SPACES_ALLOCATION_SIZE_INVALID">
            <summary>The allocation size is outside of the supported range of values.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SPACES_ENCLOSURE_AWARE_INVALID">
            <summary>Enclosure awareness is not supported for this virtual disk.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SPACES_WRITE_CACHE_SIZE_INVALID">
            <summary>The write cache size is outside of the supported range of values.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SPACES_NUMBER_OF_GROUPS_INVALID">
            <summary>The value for number of groups is outside of the supported range of values.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SPACES_DRIVE_OPERATIONAL_STATE_INVALID">
            <summary>The OperationalState of the physical disk is invalid for this operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SPACES_UPDATE_COLUMN_STATE">
            <summary>A column's state needs to be updated.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SPACES_MAP_REQUIRED">
            <summary>An extent needs to be allocated.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SPACES_UNSUPPORTED_VERSION">
            <summary>The metadata version is unsupported.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SPACES_CORRUPT_METADATA">
            <summary>The metadata read was corrupt.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SPACES_DRT_FULL">
            <summary>The DRT is full.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SPACES_INCONSISTENCY">
            <summary>An inconsistency was found.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SPACES_LOG_NOT_READY">
            <summary>The log is not ready.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SPACES_NO_REDUNDANCY">
            <summary>No good copy of data was available.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SPACES_DRIVE_NOT_READY">
            <summary>The drive is not ready.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SPACES_DRIVE_SPLIT">
            <summary>The data on this drive is stale.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SPACES_DRIVE_LOST_DATA">
            <summary>The data on this drive has been lost.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLSNAP_BOOTFILE_NOT_VALID">
            <summary>Volsnap status codes (volsnap.sys)
            The bootfile is too small to support persistent snapshots.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VOLSNAP_ACTIVATION_TIMEOUT">
            <summary>Activation of persistent snapshots on this volume took longer than was allowed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_IO_PREEMPTED">
            <summary>Sdbus status codes (sdbus.sys)
            The operation was preempted by a higher priority operation. It must be resumed later.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SVHDX_ERROR_STORED">
            <summary>Shared VHDX status codes (svhdxflt.sys)
            The proper error code with sense data was stored on server side.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SVHDX_ERROR_NOT_AVAILABLE">
            <summary>The requested error data is not available on the server.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SVHDX_UNIT_ATTENTION_AVAILABLE">
            <summary>Unit Attention data is available for the initiator to query.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SVHDX_UNIT_ATTENTION_CAPACITY_DATA_CHANGED">
            <summary>The data capacity of the device has changed, resulting in a Unit Attention condition.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SVHDX_UNIT_ATTENTION_RESERVATIONS_PREEMPTED">
            <summary>A previous operation resulted in this initiator's reservations being preempted, resulting in a Unit Attention condition.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SVHDX_UNIT_ATTENTION_RESERVATIONS_RELEASED">
            <summary>A previous operation resulted in this initiator's reservations being released, resulting in a Unit Attention condition.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SVHDX_UNIT_ATTENTION_REGISTRATIONS_PREEMPTED">
            <summary>A previous operation resulted in this initiator's registrations being preempted, resulting in a Unit Attention condition.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SVHDX_UNIT_ATTENTION_OPERATING_DEFINITION_CHANGED">
            <summary>The data storage format of the device has changed, resulting in a Unit Attention condition.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SVHDX_RESERVATION_CONFLICT">
            <summary>The current initiator is not allowed to perform the SCSI command because of a reservation conflict.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SVHDX_WRONG_FILE_TYPE">
            <summary>Multiple virtual machines sharing a virtual hard disk is supported only on Fixed or Dynamic VHDX format virtual hard disks.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SVHDX_VERSION_MISMATCH">
            <summary>The server version does not match the requested version.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VHD_SHARED">
            <summary>The requested operation cannot be performed on the virtual disk as it is currently used in shared mode.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SVHDX_NO_INITIATOR">
            <summary>Invalid Shared VHDX open due to lack of initiator ID. Check for related Continuous Availability failures.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VHDSET_BACKING_STORAGE_NOT_FOUND">
            <summary>The requested operation failed due to a missing backing storage file.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SMB_NO_PREAUTH_INTEGRITY_HASH_OVERLAP">
            <summary>SMB status codes
            Failed to negotiate a preauthentication integrity hash function.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SMB_BAD_CLUSTER_DIALECT">
            <summary>SMB status codes
            The current cluster functional level does not support this SMB dialect.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SMB_GUEST_LOGON_BLOCKED">
            <summary>SMB status codes
            You can't access this shared folder because your organization's security policies block unauthenticated guest access. These policies help protect your PC from unsafe or malicious devices on the network.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_SECCORE_INVALID_COMMAND">
            <summary>Embedded Security Core
            Reserved id values 0x0001 - 0x00FF
                               0x8xxx
                               0x4xxx
            The command was not recognized by the security core</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VSM_NOT_INITIALIZED">
            <summary>Virtual Secure Mode (VSM)
            Virtual Secure Mode (VSM) is not initialized. The hypervisor or VSM may not be present or enabled.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_VSM_DMA_PROTECTION_NOT_IN_USE">
            <summary>Virtual Secure Mode (VSM)
            The hypervisor is not protecting DMA because an IOMMU is not present or not enabled in the BIOS.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_APPEXEC_CONDITION_NOT_SATISFIED">
            <summary>Application Execution (AppExec)
            The condition supplied for the app execution request was not satisfied, so the request was not performed.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_APPEXEC_HANDLE_INVALIDATED">
            <summary>Application Execution (AppExec)
            The supplied handle has been invalidated and may not be used for the requested operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_APPEXEC_INVALID_HOST_GENERATION">
            <summary>Application Execution (AppExec)
            The supplied host generation has been invalidated and may not be used for the requested operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_APPEXEC_UNEXPECTED_PROCESS_REGISTRATION">
            <summary>Application Execution (AppExec)
            An attempt to register a process failed because the target host was not in a valid state to receive process registrations.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_APPEXEC_INVALID_HOST_STATE">
            <summary>Application Execution (AppExec)
            The host is not in a valid state to support the execution request.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_APPEXEC_NO_DONOR">
            <summary>Application Execution (AppExec)
            The operation was not completed because a required resource donor was not found for the host.</summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResults.STATUS_APPEXEC_HOST_ID_MISMATCH">
            <summary>Application Execution (AppExec)
            The operation was not completed because an unexpected host ID was encountered.</summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.HwndSpecial">
            <summary>
            Special HWND values.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.KeyStateMasks">
            <summary>
            Key State Masks for Mouse Messages.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.MachineId">
            <summary>
              Machine ID in the COFF header
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.MachineIdOsOverride">
            <summary>
              Machine code for native images
              MachineIdNi = MachineId ^ MachineIdOsOverride
              (see IMAGE_FILE_MACHINE_NATIVE_OS_OVERRIDE, https://github.com/dotnet/runtime/blob/master/src/coreclr/src/inc/pedecoder.h,
              ILCompiler.PEWriter.MachineOSOverride, https://github.com/dotnet/runtime/blob/master/src/coreclr/src/tools/aot/ILCompiler.ReadyToRun/ObjectWriter/TargetExtensions.cs)
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.MachineIdNi.ToIdAndOs(JetBrains.Interop.WinApi.MachineId)">
            <summary>
              machineIdNi = machine ^ operatingSystem
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.MessageBoxFlags">
            <summary>
            Flags for the <see cref="M:JetBrains.Interop.WinApi.User32Dll.MessageBoxW(System.Void*,System.String,System.String,System.UInt32)"/> function.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.OleCmdErr">
            <summary>
             OLE CMD Errors from <c>DocObj.h</c>.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.PDTIMER_FLAGS">
            <summary>
            // Time Actions (dwTimerAction)
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.PDTIMER_FLAGS.PDTIMER_RESET">
            <summary>
            // Reset the timer so the progress will be calculated from now until the first ::SetProgress() is called so those this time will correspond to the values passed to ::SetProgress().  Only do this before ::SetProgress() is called.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.PDTIMER_FLAGS.PDTIMER_PAUSE">
            <summary>
            Progress has been suspended.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.PDTIMER_FLAGS.PDTIMER_RESUME">
            <summary>
            Progress has resumed.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.PenStyles">
            <summary>
            Pen Styles.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.PrintWindowFlags">
            <summary>
            Specifies the drawing options [for WM_PRINT]. You can combine one or more of the following flags.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.PrintWindowFlags.PRF_CHECKVISIBLE">
            <summary>
            Draw the window only if it is visible.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.PrintWindowFlags.PRF_NONCLIENT">
            <summary>
            Draw the non-client area of the window.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.PrintWindowFlags.PRF_CLIENT">
            <summary>
            Draw the client area of the window.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.PrintWindowFlags.PRF_ERASEBKGND">
            <summary>
            Erase the background before drawing the window.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.PrintWindowFlags.PRF_CHILDREN">
            <summary>
            Draw all visible child windows.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.PrintWindowFlags.PRF_OWNED">
            <summary>
            Draw all owned windows.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.ProcessorArchitecture.PROCESSOR_ARCHITECTURE_INTEL">
            <summary>
              x86
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.ProcessorArchitecture.PROCESSOR_ARCHITECTURE_ARM">
            <summary>
              armv7*
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.ProcessorArchitecture.PROCESSOR_ARCHITECTURE_IA64">
            <summary>
              Intel Itanium-based
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.ProcessorArchitecture.PROCESSOR_ARCHITECTURE_AMD64">
            <summary>
              x86_64, amd64, x64
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.ProcessorArchitecture.PROCESSOR_ARCHITECTURE_ARM64">
            <summary>
              arm64v8, aarch64
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.ProcessorArchitecture.PROCESSOR_ARCHITECTURE_UNKNOWN">
            <summary>
              Unknown architecture.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.PROGDLG_FLAGS">
            <summary>
            // Flags for IProgressDialog::StartProgressDialog() (dwFlags)
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.PROGDLG_FLAGS.PROGDLG_NORMAL">
            <summary>
            default normal progress dlg behavior
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.PROGDLG_FLAGS.PROGDLG_MODAL">
            <summary>
            the dialog is modal to its hwndParent (default is modeless)
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.PROGDLG_FLAGS.PROGDLG_AUTOTIME">
            <summary>
            automatically updates the "Line3" text with the "time remaining" (you cant call SetLine3 if you passs this!)
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.PROGDLG_FLAGS.PROGDLG_NOTIME">
            <summary>
            we dont show the "time remaining" if this is set. We need this if dwTotal &lt; dwCompleted for sparse files
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.PROGDLG_FLAGS.PROGDLG_NOMINIMIZE">
            <summary>
            Do not have a minimize button in the caption bar.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.PROGDLG_FLAGS.PROGDLG_NOPROGRESSBAR">
            <summary>
            Don't display the progress bar
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.PROGDLG_FLAGS.PROGDLG_MARQUEEPROGRESS">
            <summary>
            Use marquee progress (comctl32 v6 required)
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.PROGDLG_FLAGS.PROGDLG_NOCANCEL">
            <summary>
            No cancel button (operation cannot be canceled) (use sparingly)  
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.ScrollWindowFlags">
            <summary>
            Flags for the <c>ScrollWindowEx</c> functions.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.ScrollWindowFlags.SW_ERASE">
            <summary>
            Erases the newly invalidated region by sending a WM_ERASEBKGND message to the window when specified with the SW_INVALIDATE flag.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.ScrollWindowFlags.SW_INVALIDATE">
            <summary>
            Invalidates the region identified by the hrgnUpdate parameter after scrolling.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.ScrollWindowFlags.SW_SCROLLCHILDREN">
            <summary>
            Scrolls all child windows that intersect the rectangle pointed to by the prcScroll parameter. The child windows are scrolled by the number of pixels specified by the dx and dy parameters. The system sends a WM_MOVE message to all child windows that intersect the prcScroll rectangle, even if they do not move.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.ScrollWindowFlags.SW_SMOOTHSCROLL">
            <summary>
            Windows 98/Me, Windows 2000/XP: Scrolls using smooth scrolling. Use the HIWORD portion of the flags parameter to indicate how much time the smooth-scrolling operation should take.      
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.SetWindowPosFlags">
            <summary>
            Flags for the <see cref="M:JetBrains.Interop.WinApi.User32Dll.SetWindowPos(System.Void*,System.Void*,System.Int32,System.Int32,System.Int32,System.Int32,System.UInt32)"/> function.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SetWindowPosFlags.SWP_NOSIZE">
            <summary>
            Retains the current size (ignores the cx and cy parameters).
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SetWindowPosFlags.SWP_NOMOVE">
            <summary>
            Retains the current position (ignores X and Y parameters).
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SetWindowPosFlags.SWP_NOZORDER">
            <summary>
            Retains the current Z order (ignores the hWndInsertAfter parameter).
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SetWindowPosFlags.SWP_NOREDRAW">
            <summary>
            Does not redraw changes. If this flag is set, no repainting of any kind occurs. This applies to the client area, the nonclient area (including the title bar and scroll bars), and any part of the parent window uncovered as a result of the window being moved. When this flag is set, the application must explicitly invalidate or redraw any parts of the window and parent window that need redrawing.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SetWindowPosFlags.SWP_NOACTIVATE">
            <summary>
            Does not activate the window. If this flag is not set, the window is activated and moved to the top of either the topmost or non-topmost group (depending on the setting of the hWndInsertAfter parameter).
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SetWindowPosFlags.SWP_FRAMECHANGED">
            <summary>
            Applies new frame styles set using the SetWindowLong function. Sends a WM_NCCALCSIZE message to the window, even if the window's size is not being changed. If this flag is not specified, WM_NCCALCSIZE is sent only when the window's size is being changed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SetWindowPosFlags.SWP_SHOWWINDOW">
            <summary>
            Displays the window.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SetWindowPosFlags.SWP_HIDEWINDOW">
            <summary>
            Hides the window.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SetWindowPosFlags.SWP_NOCOPYBITS">
            <summary>
            Discards the entire contents of the client area. If this flag is not specified, the valid contents of the client area are saved and copied back into the client area after the window is sized or repositioned.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SetWindowPosFlags.SWP_NOOWNERZORDER">
            <summary>
            Does not change the owner window's position in the Z order.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SetWindowPosFlags.SWP_NOSENDCHANGING">
            <summary>
            Prevents the window from receiving the WM_WINDOWPOSCHANGING message.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SetWindowPosFlags.SWP_DEFERERASE">
            <summary>
            Prevents generation of the WM_SYNCPAINT message.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SetWindowPosFlags.SWP_ASYNCWINDOWPOS">
            <summary>
            If the calling thread and the thread that owns the window are attached to different input queues, the system posts the request to the thread that owns the window. This prevents the calling thread from blocking its execution while other threads process the request. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SetWindowPosFlags.SWP_NOREPOSITION">
            <summary>
            Same as the <see cref="F:JetBrains.Interop.WinApi.SetWindowPosFlags.SWP_NOOWNERZORDER"/> flag.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SetWindowPosFlags.SWP_DRAWFRAME">
            <summary>
            Draws a frame (defined in the window's class description) around the window.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.ShowWindowCommands">
            <summary>
            <see cref="M:JetBrains.Interop.WinApi.User32Dll.ShowWindow(System.Void*,System.Int32)"/> Commands.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.StockCursors">
            <summary>
            Stock cursors enum for <code>LoadCursor(StockCursors)</code>.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.StockCursors.IDC_APPSTARTING">
            <summary>
            Standard arrow and small hourglass
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.StockCursors.IDC_ARROW">
            <summary>
            Standard arrow
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.StockCursors.IDC_CROSS">
            <summary>
            Crosshair
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.StockCursors.IDC_HAND">
            <summary>
            Windows 98/Me, Windows 2000/XP: Hand
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.StockCursors.IDC_HELP">
            <summary>
            Arrow and question mark
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.StockCursors.IDC_IBEAM">
            <summary>
            I-beam
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.StockCursors.IDC_ICON">
            <summary>
            Obsolete for applications marked version 4.0 or later.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.StockCursors.IDC_NO">
            <summary>
            Slashed circle
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.StockCursors.IDC_SIZE">
            <summary>
            Obsolete for applications marked version 4.0 or later. Use IDC_SIZEALL.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.StockCursors.IDC_SIZEALL">
            <summary>
            Four-pointed arrow pointing north, south, east, and west
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.StockCursors.IDC_SIZENESW">
            <summary>
            /Double-pointed arrow pointing northeast and southwest
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.StockCursors.IDC_SIZENS">
            <summary>
            Double-pointed arrow pointing north and south
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.StockCursors.IDC_SIZENWSE">
            <summary>
            Double-pointed arrow pointing northwest and southeast
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.StockCursors.IDC_SIZEWE">
            <summary>
            Double-pointed arrow pointing west and east
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.StockCursors.IDC_UPARROW">
            <summary>
            Vertical arrow
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.StockCursors.IDC_WAIT">
            <summary>
            Hourglass
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.StockLogicalObjects">
            <summary>
            The stock GDI objects for the <see cref="M:JetBrains.Interop.WinApi.Gdi32Dll.GetStockObject(System.Int32)" /> function.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.StockLogicalObjects.BLACK_BRUSH">
            <summary>
            Black brush.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.StockLogicalObjects.DKGRAY_BRUSH">
            <summary>
            Dark gray brush.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.StockLogicalObjects.DC_BRUSH">
            <summary>
            Windows 2000/XP: Solid color brush. The default color is white. The color can be changed by using the SetDCBrushColor function. For more information= , see the Remarks section.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.StockLogicalObjects.GRAY_BRUSH">
            <summary>
            Gray brush.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.StockLogicalObjects.HOLLOW_BRUSH">
            <summary>
            Hollow brush (equivalent to NULL_BRUSH).
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.StockLogicalObjects.LTGRAY_BRUSH">
            <summary>
            Light gray brush.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.StockLogicalObjects.NULL_BRUSH">
            <summary>
            Null brush (equivalent to HOLLOW_BRUSH).
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.StockLogicalObjects.WHITE_BRUSH">
            <summary>
            White brush.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.StockLogicalObjects.BLACK_PEN">
            <summary>
            Black pen.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.StockLogicalObjects.DC_PEN">
            <summary>
            Windows 2000/XP: Solid pen color. The default color is white. The color can be changed by using the SetDCPenColor function. For more information= , see the Remarks section.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.StockLogicalObjects.WHITE_PEN">
            <summary>
            White pen.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.StockLogicalObjects.ANSI_FIXED_FONT">
            <summary>
            Windows fixed-pitch (monospace) system font.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.StockLogicalObjects.ANSI_VAR_FONT">
            <summary>
            Windows variable-pitch (proportional space) system font.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.StockLogicalObjects.DEVICE_DEFAULT_FONT">
            <summary>
            Windows NT/2000/XP: Device-dependent font.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.StockLogicalObjects.DEFAULT_GUI_FONT">
            <summary>
            Default font for user interface objects such as menus and dialog boxes. This is MS Sans Serif. Compare this with SYSTEM_FONT.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.StockLogicalObjects.OEM_FIXED_FONT">
            <summary>
            Original equipment manufacturer (OEM) dependent fixed-pitch (monospace) font.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.StockLogicalObjects.SYSTEM_FONT">
            <summary>
            System font. By default= , the system uses the system font to draw menus= , dialog box controls= , and text. Windows 95/98 and Windows NT: The system font is MS Sans Serif. Windows 2000/XP: The system font is Tahoma
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.StockLogicalObjects.SYSTEM_FIXED_FONT">
            <summary>
            Fixed-pitch (monospace) system font. This stock object is provided only for compatibility with 16-bit Windows versions earlier than 3.0.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.StockLogicalObjects.DEFAULT_PALETTE">
            <summary>
            Default palette. This palette consists of the static colors in the system palette.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.SystemMetricsCodes">
            <summary>
            Codes for the <see cref="M:JetBrains.Interop.WinApi.User32Dll.GetSystemMetrics(System.Int32)" /> function.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CXSCREEN">
            <summary>
            The width of the screen of the primary display monitor, in pixels. This is the same value
                   obtained by calling
            <a href="https://msdn.microsoft.com/d524c4c7-22af-495d-aecc-b9921e53ca7b" data-linktype="external">GetDeviceCaps</a> as follows: <code>GetDeviceCaps(
                   hdcPrimaryMonitor, HORZRES)</code>.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CYSCREEN">
            <summary>
            The height of the screen of the primary display monitor, in pixels. This is the same value
                   obtained by calling
            <a href="https://msdn.microsoft.com/d524c4c7-22af-495d-aecc-b9921e53ca7b" data-linktype="external">GetDeviceCaps</a> as follows: <code>GetDeviceCaps(
                   hdcPrimaryMonitor, VERTRES)</code>.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CXVSCROLL">
            <summary>
            The width of a vertical scroll bar, in pixels.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CYHSCROLL">
            <summary>
            The height of a horizontal scroll bar, in
                   pixels.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CYCAPTION">
            <summary>
            The height of a caption area, in pixels.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CXBORDER">
            <summary>
            The width of a window border, in pixels. This is equivalent to the SM_CXEDGE value for
                    windows with the 3-D look.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CYBORDER">
            <summary>
            The height of a window border, in pixels. This is equivalent to the SM_CYEDGE value for
                    windows with the 3-D look.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CXDLGFRAME">
            <summary>
            This value is the same as SM_CXFIXEDFRAME.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CYDLGFRAME">
            <summary>
            This value is the same as SM_CYFIXEDFRAME.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CYVTHUMB">
            <summary>
            The height of the thumb box in a vertical scroll bar, in pixels.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CXHTHUMB">
            <summary>
            The width of the thumb box in a horizontal scroll bar, in pixels.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CXICON">
            <summary>
            The default width of an icon, in pixels. The
            <a href="https://msdn.microsoft.com/en-us/library/ms648072(v=VS.85).aspx" data-linktype="external">LoadIcon</a> function can load only icons with the  dimensions that SM_CXICON and SM_CYICON specifies.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CYICON">
            <summary>
            The default height of an icon, in pixels. The
            <a href="https://msdn.microsoft.com/en-us/library/ms648072(v=VS.85).aspx" data-linktype="external">LoadIcon</a> function can load only icons with the
                   dimensions SM_CXICON and SM_CYICON.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CXCURSOR">
            <summary>
            The width of a cursor, in pixels. The system cannot create cursors of other sizes.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CYCURSOR">
            <summary>
            The height of a cursor, in pixels. The system cannot create cursors of other sizes.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CYMENU">
            <summary>
            The height of a single-line menu bar, in pixels.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CXFULLSCREEN">
            <summary>
            The width of the client area for a full-screen window on the primary display monitor, in pixels. To
                   get the coordinates of the portion of the screen that is not obscured by the system taskbar or by application desktop
                   toolbars, call the
            <a href="https://msdn.microsoft.com/9b99465c-e12d-413c-8e69-b46b52f2f11f" data-linktype="external">SystemParametersInfo</a> function with
                   the SPI_GETWORKAREA value.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CYFULLSCREEN">
            <summary>
            The height of the client area for a full-screen window on the primary display monitor, in pixels. To
                   get the coordinates of the portion of the screen not obscured by the system taskbar or by application desktop
                   toolbars, call the
            <a href="https://msdn.microsoft.com/9b99465c-e12d-413c-8e69-b46b52f2f11f" data-linktype="external">SystemParametersInfo</a> function with
                   the SPI_GETWORKAREA value.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CYKANJIWINDOW">
            <summary>
            For double byte character set versions of the system, this is the height of the Kanji window at the bottom
                   of the screen, in pixels.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_MOUSEPRESENT">
            <summary>
            Nonzero if a mouse is installed; otherwise, 0. This value is rarely zero, because of support for virtual mice and because some systems detect the presence of the port instead of the presence of a mouse.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CYVSCROLL">
            <summary>
            The height of the arrow bitmap on a vertical scroll bar, in
                   pixels.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CXHSCROLL">
            <summary>
            The width of the arrow bitmap on a horizontal scroll bar, in pixels.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_DEBUG">
            <summary>
            Nonzero if the debug version of User.exe is installed; otherwise, 0.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_SWAPBUTTON">
            <summary>
            Nonzero if the meanings of the left and right mouse buttons are swapped; otherwise, 0.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CXMIN">
            <summary>
            The minimum width of a window, in pixels.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CYMIN">
            <summary>
            The minimum height of a window, in pixels.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CXSIZE">
            <summary>
            The width of a button in a window caption or title bar, in pixels.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CYSIZE">
            <summary>
            The height of a button in a window caption or title bar, in pixels.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CXFRAME">
            <summary>
            This value is the same as SM_CXSIZEFRAME.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CYFRAME">
            <summary>
            This value is the same as SM_CYSIZEFRAME.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CXMINTRACK">
            <summary>
            The minimum tracking width of a window, in pixels. The user cannot drag the window frame to a size
                   smaller than these dimensions. A window can override this value by processing the
            <a href="https://msdn.microsoft.com/en-us/library/ms632626(v=VS.85).aspx" data-linktype="external">WM_GETMINMAXINFO</a> message.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CYMINTRACK">
            <summary>
            The minimum tracking height of a window, in pixels. The user cannot drag the window frame to a size
                   smaller than these dimensions. A window can override this value by processing the
            <a href="https://msdn.microsoft.com/en-us/library/ms632626(v=VS.85).aspx" data-linktype="external">WM_GETMINMAXINFO</a> message.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CXDOUBLECLK">
            <summary>
            The width of the rectangle around the location of a first click in a double-click sequence,
                    in pixels. The second click must occur within the rectangle that is defined by SM_CXDOUBLECLK and SM_CYDOUBLECLK for the system to consider the two
                    clicks a double-click. The two clicks must also occur within a specified time.
            <p>To set the width of the double-click rectangle, call
            <a href="https://msdn.microsoft.com/9b99465c-e12d-413c-8e69-b46b52f2f11f" data-linktype="external">SystemParametersInfo</a> with SPI_SETDOUBLECLKWIDTH.</p></summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CYDOUBLECLK">
            <summary>
            The height of the rectangle around the location of a first click in a double-click sequence,
                    in pixels. The second click must occur within the rectangle defined by SM_CXDOUBLECLK and SM_CYDOUBLECLK for the system to consider the two
                    clicks a double-click. The two clicks must also occur within a specified time.
            <p>To set the height of the double-click rectangle, call
            <a href="https://msdn.microsoft.com/9b99465c-e12d-413c-8e69-b46b52f2f11f" data-linktype="external">SystemParametersInfo</a> with SPI_SETDOUBLECLKHEIGHT.</p></summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CXICONSPACING">
            <summary>
            The width of a grid cell for items in large icon view, in pixels. Each item fits into a rectangle of size SM_CXICONSPACING by SM_CYICONSPACING when arranged. This value is always greater than or equal to SM_CXICON.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CYICONSPACING">
            <summary>
            The height of a grid cell for items in large icon view, in pixels. Each item fits into a rectangle of size SM_CXICONSPACING by SM_CYICONSPACING when arranged. This value is always greater than or equal to SM_CYICON.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_MENUDROPALIGNMENT">
            <summary>
            Nonzero if drop-down menus are right-aligned with the corresponding menu-bar item; 0 if the menus are
                   left-aligned.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_PENWINDOWS">
            <summary>
            Nonzero if the Microsoft Windows for Pen computing extensions are installed; zero otherwise.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_DBCSENABLED">
            <summary>
            Nonzero if User32.dll supports DBCS; otherwise, 0.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CMOUSEBUTTONS">
            <summary>
            The number of buttons on a mouse, or zero if no mouse is installed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CXFIXEDFRAME">
            <summary>
            The thickness of the frame around the perimeter of a window that has a caption but is not sizable, in pixels.
                   SM_CXFIXEDFRAME is the height of the horizontal border, and SM_CYFIXEDFRAME is the width of the vertical border.
            <p>This value is the same as SM_CXDLGFRAME.</p></summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CYFIXEDFRAME">
            <summary>
            The thickness of the frame around the perimeter of a window that has a caption but is not sizable, in pixels.
                   SM_CXFIXEDFRAME is the height of the horizontal border, and SM_CYFIXEDFRAME is the width of the vertical border.
            <p>This value is the same as SM_CYDLGFRAME.</p></summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CXSIZEFRAME">
            <summary>
            The thickness of the sizing border around the perimeter of a window that can be resized, in pixels.
                   SM_CXSIZEFRAME is the width of the horizontal border, and SM_CYSIZEFRAME is the height of the vertical border.
            <p>This value is the same as SM_CXFRAME.</p></summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CYSIZEFRAME">
            <summary>
            The thickness of the sizing border around the perimeter of a window that can be resized, in pixels.
                   SM_CXSIZEFRAME is the width of the horizontal border, and SM_CYSIZEFRAME is the height of the vertical border.
            <p>This value is the same as SM_CYFRAME.</p></summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_SECURE">
            <summary>
            This system metric should be ignored; it always returns 0.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CXEDGE">
            <summary>
            The width of a 3-D border, in pixels. This metric is the 3-D counterpart of SM_CXBORDER.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CYEDGE">
            <summary>
            The height of a 3-D border, in pixels. This is the 3-D counterpart of SM_CYBORDER.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CXMINSPACING">
            <summary>
            The width of a grid cell for a minimized window, in pixels. Each minimized window fits into a rectangle
                   this size when arranged. This value is always greater than or equal to SM_CXMINIMIZED.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CYMINSPACING">
            <summary>
            The height of a grid cell for a minimized window, in pixels. Each minimized window fits into a rectangle
                   this size when arranged. This value is always greater than or equal to SM_CYMINIMIZED.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CXSMICON">
            <summary>
            The recommended width of a small icon, in pixels. Small icons typically appear in window captions and in
                   small icon view.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CYSMICON">
            <summary>
            The recommended height of a small icon, in pixels. Small icons typically appear in window captions and in
                   small icon view.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CYSMCAPTION">
            <summary>
            The height of a small caption, in pixels.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CXSMSIZE">
            <summary>
            The width of small caption buttons, in pixels.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CYSMSIZE">
            <summary>
            The height of small caption buttons, in pixels.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CXMENUSIZE">
            <summary>
            The width of menu bar buttons, such as the child window close button that is used in the multiple document
                   interface, in pixels.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CYMENUSIZE">
            <summary>
            The height of menu bar buttons, such as the child window close button that is used in the multiple document
                   interface, in pixels.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_ARRANGE">
            <summary>
            The flags that specify how the system arranged minimized windows. For more information, see the Remarks section in this topic.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CXMINIMIZED">
            <summary>
            The width of a minimized window, in pixels.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CYMINIMIZED">
            <summary>
            The height of a minimized window, in pixels.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CXMAXTRACK">
            <summary>
            The default maximum width of a window that has a caption and sizing borders, in pixels. This metric
                   refers to the entire desktop. The user cannot drag the window frame to a size larger than these dimensions. A
                   window can override this value by processing the
            <a href="https://msdn.microsoft.com/en-us/library/ms632626(v=VS.85).aspx" data-linktype="external">WM_GETMINMAXINFO</a> message.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CYMAXTRACK">
            <summary>
            The default maximum height of a window that has a caption and sizing borders, in pixels. This metric
                   refers to the entire desktop. The user cannot drag the window frame to a size larger than these dimensions. A
                   window can override this value by processing the
            <a href="https://msdn.microsoft.com/en-us/library/ms632626(v=VS.85).aspx" data-linktype="external">WM_GETMINMAXINFO</a> message.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CXMAXIMIZED">
            <summary>
            The default width, in pixels, of a maximized top-level window on the primary display monitor.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CYMAXIMIZED">
            <summary>
            The default height, in pixels, of a maximized top-level window on the primary display monitor.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_NETWORK">
            <summary>
            The least significant bit is set if a network is present; otherwise, it is cleared. The other bits are
                   reserved for future use.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CLEANBOOT">
            <summary>
            The value that specifies how the system is started:
            <ul><li>0 Normal boot</li><li>1 Fail-safe boot</li><li>2 Fail-safe with network boot</li></ul>
            A fail-safe boot (also called SafeBoot, Safe Mode, or Clean Boot) bypasses the user startup files.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CXDRAG">
            <summary>
            The number of pixels on either side of a mouse-down point that  the mouse
                   pointer can move before a drag operation begins. This allows the user to click and release the
                   mouse button easily without unintentionally starting a drag operation. If this value is negative, it is subtracted from the left of the mouse-down point and added to the right of it.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CYDRAG">
            <summary>
            The number of pixels above and below a mouse-down point that the mouse
                   pointer can move before a drag operation begins. This allows the user to click and release the
                   mouse button easily without unintentionally starting a drag operation. If this value is negative, it is subtracted from above the mouse-down point and added below it.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_SHOWSOUNDS">
            <summary>
            Nonzero if the user requires an application to present information visually in situations
                    where it would otherwise present the information only in audible form; otherwise, 0.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CXMENUCHECK">
            <summary>
            The width of the default menu check-mark bitmap, in pixels.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CYMENUCHECK">
            <summary>
            The height of the default menu check-mark bitmap, in pixels.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_SLOWMACHINE">
            <summary>
            Nonzero if the computer has a low-end (slow) processor; otherwise, 0.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_MIDEASTENABLED">
            <summary>
            Nonzero if the system is enabled for Hebrew and Arabic languages, 0 if not.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_MOUSEWHEELPRESENT">
            <summary>
            Nonzero if a mouse with a vertical scroll wheel is installed; otherwise 0.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_XVIRTUALSCREEN">
            <summary>
            The coordinates for the left side of the virtual screen. The virtual screen is the bounding
                    rectangle of all display monitors. The SM_CXVIRTUALSCREEN metric is the width
                    of the virtual screen.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_YVIRTUALSCREEN">
            <summary>
            The coordinates for the top of the virtual screen. The virtual screen is the bounding
                    rectangle of all display monitors. The SM_CYVIRTUALSCREEN metric is the height of the virtual screen.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CXVIRTUALSCREEN">
            <summary>
            The width of the virtual screen, in pixels. The virtual screen is the bounding rectangle of all
                   display monitors. The SM_XVIRTUALSCREEN metric is the coordinates for the left side of
                   the virtual screen.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CYVIRTUALSCREEN">
            <summary>
            The height of the virtual screen, in pixels. The virtual screen is the bounding rectangle of all
                   display monitors. The SM_YVIRTUALSCREEN metric is the coordinates for the top of
                   the virtual screen.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CMONITORS">
            <summary>
            The number of display monitors on a desktop. For more information, see the Remarks section in this topic.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_SAMEDISPLAYFORMAT">
            <summary>
            Nonzero if all the display monitors have the same color format, otherwise, 0. Two
                    displays can have the same bit depth, but different color formats. For example, the red, green,
                    and blue pixels can be encoded with different numbers of bits, or those bits can be located in
                    different places in a pixel color value.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_IMMENABLED">
            <summary>
            Nonzero if Input Method Manager/Input Method Editor features are enabled; otherwise, 0.
            <p>SM_IMMENABLED indicates whether the system is ready to use a Unicode-based IME on a Unicode application.
            To ensure that a language-dependent IME works, check SM_DBCSENABLED and the system ANSI code page.
            Otherwise the ANSI-to-Unicode conversion may not be performed correctly, or some components like fonts
            or registry settings may not be present.</p></summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CXFOCUSBORDER">
            <summary>
            The width of the left and right edges of the focus rectangle that the <a href="https://msdn.microsoft.com/a910d04f-fe4d-4fc9-a518-abac864da6f3" data-linktype="external">DrawFocusRect</a> draws. This value is in pixels.
            <p><b>Windows 2000:  </b>This value is not supported.</p></summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CYFOCUSBORDER">
            <summary>
            The height of the top and bottom edges of the focus rectangle drawn
                   by
            <a href="https://msdn.microsoft.com/a910d04f-fe4d-4fc9-a518-abac864da6f3" data-linktype="external">DrawFocusRect</a>. This value is in pixels.
            <p><b>Windows 2000:  </b>This value is not supported.</p></summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_TABLETPC">
            <summary>
            Nonzero if the current operating system is the Windows XP Tablet PC edition or if the current operating system is Windows Vista or Windows 7 and the Tablet PC Input service is started; otherwise, 0. The SM_DIGITIZER setting indicates the type of digitizer input supported by a device running Windows 7 or Windows Server 2008 R2. For more information, see Remarks.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_MEDIACENTER">
            <summary>
            Nonzero if the current operating system is the Windows XP, Media Center Edition, 0 if not.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_STARTER">
            <summary>
            Nonzero if the current operating system is Windows 7 Starter Edition, Windows Vista Starter, or Windows XP Starter Edition; otherwise, 0.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_SERVERR2">
            <summary>
            The build number if the system is Windows Server 2003 R2; otherwise, 0.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_MOUSEHORIZONTALWHEELPRESENT">
            <summary>
            Nonzero if a mouse with a horizontal scroll wheel is installed; otherwise 0.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CXPADDEDBORDER">
            <summary>
            The amount of border padding for captioned windows, in pixels.
            <p><b>Windows XP/2000:  </b>This value is not supported.</p></summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_REMOTESESSION">
            <summary>
            This system metric is used in a Terminal Services environment. If the calling process is associated
                    with a Terminal Services client session, the return value is nonzero. If the calling process is
                    associated with the Terminal Services console session, the return value is 0. <b>Windows Server 2003 and Windows XP:  </b>The console session
                    is not necessarily the physical console. For more information, see <a href="https://msdn.microsoft.com/9aa43cfa-9518-428b-95a1-004fa23df90b" data-linktype="external">WTSGetActiveConsoleSessionId</a>.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_SHUTTINGDOWN">
            <summary>
            Nonzero if the current session is shutting down; otherwise, 0.
            <p><b>Windows 2000:  </b>This value is not supported.</p></summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_REMOTECONTROL">
            <summary>
            This system metric is used in a Terminal Services environment to determine if the current Terminal Server session is being remotely controlled. Its value is nonzero if the current
                    session is remotely controlled; otherwise, 0.
            <p>You can use terminal services management tools such as Terminal Services Manager (tsadmin.msc) and shadow.exe to control a remote session. When a session is being remotely controlled, another user can view the contents of that session and potentially interact with it.</p></summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_CONVERTIBLESLATEMODE">
            <summary>
            Reflects the state of the laptop or slate mode, 0 for Slate Mode and non-zero otherwise. When this system metric changes, the system sends a broadcast message via <a href="https://msdn.microsoft.com/77174e06-a25b-440a-9e9c-4fd5979c433c" data-linktype="external">WM_SETTINGCHANGE</a> with "ConvertibleSlateMode" in the LPARAM. Note that this system metric doesn't apply to desktop PCs. In that case, use <a href="https://msdn.microsoft.com/E041717B-920E-44F8-AC7F-B30CB82F1476" data-linktype="external">GetAutoRotationState</a>.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SystemMetricsCodes.SM_SYSTEMDOCKED">
            <summary>
            Reflects the state of the docking mode, 0 for Undocked Mode and non-zero otherwise. When this system metric changes, the system sends a broadcast message via <a href="https://msdn.microsoft.com/77174e06-a25b-440a-9e9c-4fd5979c433c" data-linktype="external">WM_SETTINGCHANGE</a> with "SystemDockMode" in the LPARAM.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.TH32CS">
            <summary>
            The portions of the system to be included in the snapshot.
            See <see cref="M:JetBrains.Interop.WinApi.Kernel32Dll.CreateToolhelp32Snapshot(System.UInt32,System.UInt32)"/>.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.WinDef">
            <summary>
            Assorted constants.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinDef.CBM_INIT">
            <summary>
            /* constants for CreateDIBitmap */
            /* initialize bitmap */
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinDef.CCHDEVICENAME">
            <summary>
            size of a device name string
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinDef.CCHFORMNAME">
            <summary>
            size of a form name string
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinDef.DesktopDefault">
            <summary>
            The name of the input desktop in the interactive window station.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinDef.INFINITE">
            <summary>
            Infinite timeout.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinDef.PIPE_UNLIMITED_INSTANCES">
            <summary>
            The maximum number of pipe instances that can be created is limited only by the availability of system resources.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinDef.MAXIMUM_WAIT_OBJECTS">
            <summary>
            Maximum number of wait objects.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinDef.SizeOfVariant">
            <summary>
            Size of the <c>VARIANT</c> / <c>VARIANTARG</c> COM structures.
            </summary>
            <remarks>
            (DK) Unfortunately <see cref="!:System.Runtime.InteropServices.Variant"/> is internal, and I could not find any public Variant definitions, so we are unable to use sizeof(Variant).
            Please refer https://learn.microsoft.com/en-us/windows/win32/api/oaidl/ns-oaidl-variant.
            typedef struct tagVARIANT {
              union {
                struct {
                  VARTYPE vt;
                  WORD    wReserved1;
                  WORD    wReserved2;
                  WORD    wReserved3;
                  union {
                    // ... a lot of various types ...
                    struct {
                      PVOID       pvRecord;
                      IRecordInfo *pRecInfo;
                    } _record;
                  };
                };
                DECIMAL decVal;
              };
            } VARIANT;
            VARIANT consists of 4 ushort fields and a union of various data types. The biggest type is Record which consists of two pointers.
            The VARIANT size could be calculated as sizeof(ushort)*4 + sizeof(IntPtr)*2, which is 24 bytes in 64-bits, and 16 bytes in 32-bits.
            </remarks>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinDef.USER_TIMER_MAXIMUM">
            <summary>
            The SetTimer function creates a timer with the specified time-out value.
            uElapse
            [in] Specifies the time-out value, in milliseconds.
            Windows NT/2000/XP: If uElapse is greater than USER_TIMER_MAXIMUM, the timeout is set to 1.
            Windows 2000/XP: If uElapse is less than USER_TIMER_MINIMUM, the timeout is set to USER_TIMER_MINIMUM.
            Windows Server 2003: If uElapse is greater than USER_TIMER_MAXIMUM, the timeout is set to USER_TIMER_MAXIMUM.
            Windows XP SP2/Windows Server 2003 SP1: If uElapse is less than USER_TIMER_MINIMUM, the timeout is set to USER_TIMER_MINIMUM. If uElapse is greater than USER_TIMER_MAXIMUM, the timeout is set to USER_TIMER_MAXIMUM.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinDef.USER_TIMER_MINIMUM">
            <summary>
            The SetTimer function creates a timer with the specified time-out value.
            uElapse
            [in] Specifies the time-out value, in milliseconds.
            Windows NT/2000/XP: If uElapse is greater than USER_TIMER_MAXIMUM, the timeout is set to 1.
            Windows 2000/XP: If uElapse is less than USER_TIMER_MINIMUM, the timeout is set to USER_TIMER_MINIMUM.
            Windows Server 2003: If uElapse is greater than USER_TIMER_MAXIMUM, the timeout is set to USER_TIMER_MAXIMUM.
            Windows XP SP2/Windows Server 2003 SP1: If uElapse is less than USER_TIMER_MINIMUM, the timeout is set to USER_TIMER_MINIMUM. If uElapse is greater than USER_TIMER_MAXIMUM, the timeout is set to USER_TIMER_MAXIMUM.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinDef.WinSta0">
            <summary>
            The interactive window station name, for use with <see cref="M:JetBrains.Interop.WinApi.User32Dll.OpenWindowStationW(System.String,System.Int32,System.UInt32)" />.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinDef.DLGWINDOWCLASS">
            <summary>
              <para>The WinAPI window class name for dialog boxes.</para>
              <para>Dialogs made the WinAPI way with <c>DialogBox</c>, <c>CreateDialog</c>, or <c>MessageBox</c> will be top-level windows whose window class is created from the <c>WC_DIALOG</c> atom (<c>MAKEINTATOM(0x8002)</c>), whose string representation is <c>#32770</c> when you get the window class name.</para>
              <para>The <c>DLGWINDOWCLASS</c> isn't an official name, though used occasionally, the official thing is <c>WC_DIALOG</c> but it's an atom string (a reinterpret-cast of an integer into a char pointer), so it can't be matched to the window class name just as a string.</para>
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.WindowClassStyles">
            <summary>
            “<c>CS_…</c>” window class styles from the <c>RegisterClassEx</c> function.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WindowClassStyles.CS_BYTEALIGNCLIENT">
            <summary>
            Aligns the window's client area on a byte boundary (in the x direction). This style affects the width of the window and its horizontal placement on the display. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WindowClassStyles.CS_BYTEALIGNWINDOW">
            <summary>
            Aligns the window on a byte boundary (in the x direction). This style affects the width of the window and its horizontal placement on the display. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WindowClassStyles.CS_CLASSDC">
            <summary>
            Allocates one device context to be shared by all windows in the class. Because window classes are process specific, it is possible for multiple threads of an application to create a window of the same class. It is also possible for the threads to attempt to use the device context simultaneously. When this happens, the system allows only one thread to successfully finish its drawing operation.  
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WindowClassStyles.CS_DBLCLKS">
            <summary>
            Sends a double-click message to the window procedure when the user double-clicks the mouse while the cursor is within a window belonging to the class.  
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WindowClassStyles.CS_DROPSHADOW">
            <summary>
            Windows XP: Enables the drop shadow effect on a window. The effect is turned on and off through SPI_SETDROPSHADOW. Typically, this is enabled for small, short-lived windows such as menus to emphasize their Z order relationship to other windows. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WindowClassStyles.CS_GLOBALCLASS">
            <summary>
            Specifies that the window class is an application global class. For more information, see Application Global Classes. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WindowClassStyles.CS_HREDRAW">
            <summary>
            Redraws the entire window if a movement or size adjustment changes the width of the client area. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WindowClassStyles.CS_NOCLOSE">
            <summary>
            Disables Close on the window menu. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WindowClassStyles.CS_OWNDC">
            <summary>
            Allocates a unique device context for each window in the class.  
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WindowClassStyles.CS_PARENTDC">
            <summary>
            Sets the clipping rectangle of the child window to that of the parent window so that the child can draw on the parent. A window with the CS_PARENTDC style bit receives a regular device context from the system's cache of device contexts. It does not give the child the parent's device context or device context settings. Specifying CS_PARENTDC enhances an application's performance.  
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WindowClassStyles.CS_SAVEBITS">
            <summary>
            Saves, as a bitmap, the portion of the screen image obscured by a window of this class. When the window is removed, the system uses the saved bitmap to restore the screen image, including other windows that were obscured. Therefore, the system does not send WM_PAINT messages to windows that were obscured if the memory used by the bitmap has not been discarded and if other screen actions have not invalidated the stored image. This style is useful for small windows (for example, menus or dialog boxes) that are displayed briefly and then removed before other screen activity takes place. This style increases the time required to display the window, because the system must first allocate memory to store the bitmap.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WindowClassStyles.CS_VREDRAW">
            <summary>
            Redraws the entire window if a movement or size adjustment changes the height of the client area. 
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.WindowExStyles">
            <summary>
            Specifies the extended window style of the window being created.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.WindowLongPtrIndex">
            <summary>
            Index constants for the <see cref="M:JetBrains.Interop.WinApi.User32Dll.GetWindowLongPtrW(System.Void*,System.Int32)"/> and <see cref="M:JetBrains.Interop.WinApi.User32Dll.SetWindowLongPtrW(System.Void*,System.Int32,System.Void*)"/> functions.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WindowLongPtrIndex.GWL_EXSTYLE">
            <summary>
            Sets a new extended window style. For more information, see CreateWindowEx. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WindowLongPtrIndex.GWL_STYLE">
            <summary>
            Sets a new window style.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WindowLongPtrIndex.GWLP_WNDPROC">
            <summary>
            Sets a new address for the window procedure. 
            Same as GWL_WNDPROC that is for non-“ptr” versions.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WindowLongPtrIndex.GWLP_HINSTANCE">
            <summary>
            Sets a new application instance handle.
            Same as GWL_HINSTANCE that is for non-“ptr” versions.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WindowLongPtrIndex.GWLP_HWNDPARENT">
            <summary>
            Do not call <see cref="M:JetBrains.Interop.WinApi.User32Dll.SetWindowLongPtrW(System.Void*,System.Int32,System.Void*)"/> with the <see cref="F:JetBrains.Interop.WinApi.WindowLongPtrIndex.GWLP_HWNDPARENT"/> index to change the parent of a child window. Instead, use the SetParent function.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WindowLongPtrIndex.GWLP_ID">
            <summary>
            Sets a new identifier of the window.
            Same as GWL_ID that is for non-“ptr” versions.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WindowLongPtrIndex.GWLP_USERDATA">
            <summary>
            Sets the user data associated with the window. This data is intended for use by the application that created the window. Its value is initially zero.
            Same as GWL_USERDATA that is for non-“ptr” versions.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WindowLongPtrIndex.DWLP_DLGPROC">
            <summary>
            Sets the new pointer to the dialog box procedure.
            Valid for dialog boxes only.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WindowLongPtrIndex.DWLP_MSGRESULT">
            <summary>
            Sets the return value of a message processed in the dialog box procedure.
            Valid for dialog boxes only.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WindowLongPtrIndex.DWLP_USER">
            <summary>
            Sets new extra information that is private to the application, such as handles or pointers.      
            Valid for dialog boxes only.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.WindowsMessages">
            <summary>
            Windows message constants.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WindowsMessages.WM_PRINT">
            <summary>
            The WM_PRINT message is sent to a window to request that it draw itself in the specified device context, most commonly in a printer device context.
            wParam is hdc, lParam is drawing options (PRF_…)
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WindowsMessages.WM_KEYLAST">
            <summary>
            0x0108 on older systems.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WindowsMessages.WM_MOUSELAST">
            <summary>
            Varies on older systems, starting with at least 0x0209.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WindowsMessages.WM_DPICHANGED">
            <summary>
              <para>Sent when the effective dots per inch (dpi) for a window has changed. The DPI is the scale factor for a window. There are multiple events that can cause the DPI to change. The following list indicates the possible causes for the change in DPI.</para>
              <para>•The window is moved to a new monitor that has a different DPI.</para>
              <para>•The window is created on a monitor that is not set to the default value of 100%. 100% is 96 dots per inch.</para>
              <para>•The DPI of the monitor hosting the window changes.</para>
              <para>The current DPI for a window always equals the last DPI sent by WM_DPICHANGED. This is the scale factor that the window should be scaling to for apps that are aware of DPI changes.</para>
              <para>wParam : The HIWORD of the wParam contains the Y-axis value of the new dpi of the window. The LOWORD of the wParam contains the X-axis value of the new DPI of the window. For example, 96, 120, 144, or 192. The values of the X-axis and the Y-axis are identical for Windows apps.</para>
              <para>lParam : A pointer to a RECT structure that provides a suggested size and position of the current window scaled for the new DPI. The expectation is that apps will reposition and resize windows based on the suggestions provided by lParam when handling this message.</para>
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WindowsMessages.WM_DPICHANGED_BEFOREPARENT">
            <summary>
            For Per Monitor v2 top-level windows, this message is sent to all HWNDs in the child HWDN tree of the window that is undergoing a DPI change. This message occurs before the top-level window receives WM_DPICHANGED, and traverses the child tree from the bottom up.
            wParam
            This value is unused and will be zero.
            lParam
            This value is unused and will be zero.
            </summary>
            <since>NT 10.0.15063</since>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WindowsMessages.WM_DPICHANGED_AFTERPARENT">
            <summary>
            For Per Monitor v2 top-level windows, this message is sent to all HWNDs in the child HWDN tree of the window that is undergoing a DPI change. This message occurs after the top-level window receives WM_DPICHANGED, and traverses the child tree from the top down.
            Parameters
            wParam
            This value is unused and will be zero.
            lParam
            This value is unused and will be zero.
            Return value
            This value is unused and ignored by the system.
            </summary>
            <since>NT 10.0.15063</since>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WindowsMessages.WM_GETDPISCALEDSIZE">
            <summary>
            This message tells the operating system that the window will be sized to dimensions other than the default.
            This message is sent to top-level windows with a DPI_AWARENESS_CONTEXT of Per Monitor v2 before a WM_DPICHANGED message is sent, and allows the window to compute its desired size for the pending DPI change. As linear DPI scaling is the default behavior, this is only useful in scenarios where the window wants to scale non-linearly. If the application responds to this message, the resulting size will be the candidate rectangle send to WM_DPICHANGED.
            Use this message to alter the size of the rect that is provided with WM_DPICHANGED.
            wParam
            The WPARAM contains a DPI value. The scaled window size that the application would set needs to be computed as if the window were to switch to this DPI.
            lParam
            The LPARAM is an in/out pointer to a SIZE struct. The _In_ value in the LPARAM is the pending size of the window after a user-initiated move or a call to SetWindowPos. If the window is being resized, this size is not necessarily the same as the window's current size at the time this message is received.
            The _Out_ value in the LPARAM should be written to by the application to specify the desired scaled window size corresponding to the provided DPI value in the WPARAM.
            Return value
            The function returns a BOOL. Returning TRUE indicates that a new size has been computed. Returning FALSE indicates that the message will not be handled, and the default linear DPI scaling will apply to the window.
            </summary>
            <remarks>This message is only sent to top-level windows which have a DPI awareness context of Per Monitor v2.
            This event is necessary to facilitate graceful non-linear scaling, and ensures that the windows's position remains constant in relationship to the cursor and when moving back and forth across monitors.
            There is no specific default handling of this message in DefWindowProc. As for all messages it does not explicitly handle, DefWindowProc will return zero for this message. As noted above, this return tells the system to use the default linear behavior.</remarks>
            <since>NT 10.0.15063</since>
        </member>
        <member name="T:JetBrains.Interop.WinApi.WindowStyles">
            <summary>
            The following styles can be specified wherever a window style is required. After the control has been created, these styles cannot be modified, except as noted.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.WinError">
            <summary>
            winerror.h --  error code definitions for the Win32 API functions.
            </summary>
            <remarks>
            <para>For converting into a <c>HRESULT</c>, <see cref="M:JetBrains.Interop.WinApi.HResultHelpers.HResultFromWin32(JetBrains.Interop.WinApi.WinError)"/>.</para>
            <para>To get a string for a Win32 error code, look into <c>ErrorLevelException</c> in the utility projects, or convert into <see cref="T:JetBrains.Interop.WinApi.HResults"/> and see <see cref="M:JetBrains.Interop.WinApi.HResultHelpers.GetDisplayTextForHr(JetBrains.Interop.WinApi.HResults,System.Text.StringBuilder)"/> (less preferrable way, only if you have no utility classes).</para>
            <para>From <c>.h</c>: Do not use ID's 1266 - 1270 as the symbolicNames have been moved to SEC_E_*</para>
            </remarks>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SUCCESS">
            <summary>
             The operation completed successfully.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_FUNCTION">
            <summary>
             Incorrect function.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_FILE_NOT_FOUND">
            <summary>
             The system cannot find the file specified.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_PATH_NOT_FOUND">
            <summary>
             The system cannot find the path specified.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_TOO_MANY_OPEN_FILES">
            <summary>
             The system cannot open the file.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_ACCESS_DENIED">
            <summary>
             Access is denied.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_HANDLE">
            <summary>
             The handle is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_ARENA_TRASHED">
            <summary>
             The storage control blocks were destroyed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_ENOUGH_MEMORY">
            <summary>
             Not enough storage is available to process this command.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_BLOCK">
            <summary>
             The storage control block address is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_ENVIRONMENT">
            <summary>
             The environment is incorrect.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_FORMAT">
            <summary>
             An attempt was made to load a program with an incorrect format.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_ACCESS">
            <summary>
             The access code is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_DATA">
            <summary>
             The data is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_OUTOFMEMORY">
            <summary>
             Not enough storage is available to complete this operation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_DRIVE">
            <summary>
             The system cannot find the drive specified.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CURRENT_DIRECTORY">
            <summary>
             The directory cannot be removed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_SAME_DEVICE">
            <summary>
             The system cannot move the file to a different disk drive.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_MORE_FILES">
            <summary>
             There are no more files.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_WRITE_PROTECT">
            <summary>
             The media is write protected.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_UNIT">
            <summary>
             The system cannot find the device specified.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_READY">
            <summary>
             The device is not ready.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_COMMAND">
            <summary>
             The device does not recognize the command.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CRC">
            <summary>
             Data error (cyclic redundancy check).
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_LENGTH">
            <summary>
             The program issued a command but the command length is incorrect.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SEEK">
            <summary>
             The drive cannot locate a specific area or track on the disk.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_DOS_DISK">
            <summary>
             The specified disk or diskette cannot be accessed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SECTOR_NOT_FOUND">
            <summary>
             The drive cannot find the sector requested.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_OUT_OF_PAPER">
            <summary>
             The printer is out of paper.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_WRITE_FAULT">
            <summary>
             The system cannot write to the specified device.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_READ_FAULT">
            <summary>
             The system cannot read from the specified device.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_GEN_FAILURE">
            <summary>
             A device attached to the system is not functioning.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SHARING_VIOLATION">
            <summary>
             The process cannot access the file because it is being used by another process.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_LOCK_VIOLATION">
            <summary>
             The process cannot access the file because another process has locked a portion of the file.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_WRONG_DISK">
            <summary>
             The wrong diskette is in the drive.
             Insert %2 (Volume Serial Number: %3) into drive %1.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SHARING_BUFFER_EXCEEDED">
            <summary>
             Too many files opened for sharing.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_HANDLE_EOF">
            <summary>
             Reached the end of the file.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_HANDLE_DISK_FULL">
            <summary>
             The disk is full.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_SUPPORTED">
            <summary>
             The request is not supported.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_REM_NOT_LIST">
            <summary>
             Windows cannot find the network path. Verify that the network path is correct and the destination computer is not busy or turned off. If Windows still cannot find the network path, contact your network administrator.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DUP_NAME">
            <summary>
             You were not connected because a duplicate name exists on the network. Go to System in Control Panel to change the computer name and try again.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_NETPATH">
            <summary>
             The network path was not found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NETWORK_BUSY">
            <summary>
             The network is busy.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DEV_NOT_EXIST">
            <summary>
             The specified network resource or device is no longer available.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_TOO_MANY_CMDS">
            <summary>
             The network BIOS command limit has been reached.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_ADAP_HDW_ERR">
            <summary>
             A network adapter hardware error occurred.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_NET_RESP">
            <summary>
             The specified server cannot perform the requested operation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_UNEXP_NET_ERR">
            <summary>
             An unexpected network error occurred.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_REM_ADAP">
            <summary>
             The remote adapter is not compatible.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_PRINTQ_FULL">
            <summary>
             The printer queue is full.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_SPOOL_SPACE">
            <summary>
             Space to store the file waiting to be printed is not available on the server.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_PRINT_CANCELLED">
            <summary>
             Your file waiting to be printed was deleted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NETNAME_DELETED">
            <summary>
             The specified network name is no longer available.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NETWORK_ACCESS_DENIED">
            <summary>
             Network access is denied.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_DEV_TYPE">
            <summary>
             The network resource type is not correct.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_NET_NAME">
            <summary>
             The network name cannot be found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_TOO_MANY_NAMES">
            <summary>
             The name limit for the local computer network adapter card was exceeded.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_TOO_MANY_SESS">
            <summary>
             The network BIOS session limit was exceeded.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SHARING_PAUSED">
            <summary>
             The remote server has been paused or is in the process of being started.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_REQ_NOT_ACCEP">
            <summary>
             No more connections can be made to this remote computer at this time because there are already as many connections as the computer can accept.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_REDIR_PAUSED">
            <summary>
             The specified printer or disk device has been paused.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_FILE_EXISTS">
            <summary>
             The file exists.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CANNOT_MAKE">
            <summary>
             The directory or file cannot be created.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_FAIL_I24">
            <summary>
             Fail on INT 24.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_OUT_OF_STRUCTURES">
            <summary>
             Storage to process this request is not available.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_ALREADY_ASSIGNED">
            <summary>
             The local device name is already in use.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_PASSWORD">
            <summary>
             The specified network password is not correct.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_PARAMETER">
            <summary>
             The parameter is incorrect.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NET_WRITE_FAULT">
            <summary>
             A write fault occurred on the network.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_PROC_SLOTS">
            <summary>
             The system cannot start another process at this time.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_TOO_MANY_SEMAPHORES">
            <summary>
             Cannot create another system semaphore.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_EXCL_SEM_ALREADY_OWNED">
            <summary>
             The exclusive semaphore is owned by another process.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SEM_IS_SET">
            <summary>
             The semaphore is set and cannot be closed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_TOO_MANY_SEM_REQUESTS">
            <summary>
             The semaphore cannot be set again.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_AT_INTERRUPT_TIME">
            <summary>
             Cannot request exclusive semaphores at interrupt time.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SEM_OWNER_DIED">
            <summary>
             The previous ownership of this semaphore has ended.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SEM_USER_LIMIT">
            <summary>
             Insert the diskette for drive %1.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DISK_CHANGE">
            <summary>
             The program stopped because an alternate diskette was not inserted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DRIVE_LOCKED">
            <summary>
             The disk is in use or locked by another process.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_BROKEN_PIPE">
            <summary>
             The pipe has been ended.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_OPEN_FAILED">
            <summary>
             The system cannot open the device or file specified.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_BUFFER_OVERFLOW">
            <summary>
             The file name is too long.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DISK_FULL">
            <summary>
             There is not enough space on the disk.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_MORE_SEARCH_HANDLES">
            <summary>
             No more internal file identifiers available.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_TARGET_HANDLE">
            <summary>
             The target internal file identifier is incorrect.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_CATEGORY">
            <summary>
             The IOCTL call made by the application program is not correct.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_VERIFY_SWITCH">
            <summary>
             The verify-on-write switch parameter value is not correct.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_DRIVER_LEVEL">
            <summary>
             The system does not support the command requested.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CALL_NOT_IMPLEMENTED">
            <summary>
             This function is not supported on this system.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SEM_TIMEOUT">
            <summary>
             The semaphore timeout period has expired.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INSUFFICIENT_BUFFER">
            <summary>
             The data area passed to a system call is too small.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_NAME">
            <summary>
             The filename, directory name, or volume label syntax is incorrect.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_LEVEL">
            <summary>
             The system call level is not correct.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_VOLUME_LABEL">
            <summary>
             The disk has no volume label.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_MOD_NOT_FOUND">
            <summary>
             The specified module could not be found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_PROC_NOT_FOUND">
            <summary>
             The specified procedure could not be found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_WAIT_NO_CHILDREN">
            <summary>
             There are no child processes to wait for.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CHILD_NOT_COMPLETE">
            <summary>
             The %1 application cannot be run in Win32 mode.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DIRECT_ACCESS_HANDLE">
            <summary>
             Attempt to use a file handle to an open disk partition for an operation other than raw disk I/O.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NEGATIVE_SEEK">
            <summary>
             An attempt was made to move the file pointer before the beginning of the file.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SEEK_ON_DEVICE">
            <summary>
             The file pointer cannot be set on the specified device or file.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IS_JOIN_TARGET">
            <summary>
             A JOIN or SUBST command cannot be used for a drive that contains previously joined drives.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IS_JOINED">
            <summary>
             An attempt was made to use a JOIN or SUBST command on a drive that has already been joined.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IS_SUBSTED">
            <summary>
             An attempt was made to use a JOIN or SUBST command on a drive that has already been substituted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_JOINED">
            <summary>
             The system tried to delete the JOIN of a drive that is not joined.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_SUBSTED">
            <summary>
             The system tried to delete the substitution of a drive that is not substituted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_JOIN_TO_JOIN">
            <summary>
             The system tried to join a drive to a directory on a joined drive.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SUBST_TO_SUBST">
            <summary>
             The system tried to substitute a drive to a directory on a substituted drive.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_JOIN_TO_SUBST">
            <summary>
             The system tried to join a drive to a directory on a substituted drive.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SUBST_TO_JOIN">
            <summary>
             The system tried to SUBST a drive to a directory on a joined drive.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_BUSY_DRIVE">
            <summary>
             The system cannot perform a JOIN or SUBST at this time.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SAME_DRIVE">
            <summary>
             The system cannot join or substitute a drive to or for a directory on the same drive.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DIR_NOT_ROOT">
            <summary>
             The directory is not a subdirectory of the root directory.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DIR_NOT_EMPTY">
            <summary>
             The directory is not empty.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IS_SUBST_PATH">
            <summary>
             The path specified is being used in a substitute.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IS_JOIN_PATH">
            <summary>
             Not enough resources are available to process this command.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_PATH_BUSY">
            <summary>
             The path specified cannot be used at this time.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IS_SUBST_TARGET">
            <summary>
             An attempt was made to join or substitute a drive for which a directory on the drive is the target of a previous substitute.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SYSTEM_TRACE">
            <summary>
             System trace information was not specified in your CONFIG.SYS file, or tracing is disallowed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_EVENT_COUNT">
            <summary>
             The number of specified semaphore events for DosMuxSemWait is not correct.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_TOO_MANY_MUXWAITERS">
            <summary>
             DosMuxSemWait did not execute; too many semaphores are already set.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_LIST_FORMAT">
            <summary>
             The DosMuxSemWait list is not correct.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_LABEL_TOO_LONG">
            <summary>
             The volume label you entered exceeds the label character limit of the target file system.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_TOO_MANY_TCBS">
            <summary>
             Cannot create another thread.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SIGNAL_REFUSED">
            <summary>
             The recipient process has refused the signal.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DISCARDED">
            <summary>
             The segment is already discarded and cannot be locked.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_LOCKED">
            <summary>
             The segment is already unlocked.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_THREADID_ADDR">
            <summary>
             The address for the thread ID is not correct.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_ARGUMENTS">
            <summary>
             One or more arguments are not correct.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_PATHNAME">
            <summary>
             The specified path is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SIGNAL_PENDING">
            <summary>
             A signal is already pending.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_MAX_THRDS_REACHED">
            <summary>
             No more threads can be created in the system.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_LOCK_FAILED">
            <summary>
             Unable to lock a region of a file.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_BUSY">
            <summary>
             The requested resource is in use.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CANCEL_VIOLATION">
            <summary>
             A lock request was not outstanding for the supplied cancel region.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_ATOMIC_LOCKS_NOT_SUPPORTED">
            <summary>
             The file system does not support atomic changes to the lock type.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_SEGMENT_NUMBER">
            <summary>
             The system detected a segment number that was not correct.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_ORDINAL">
            <summary>
             The operating system cannot run %1.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_ALREADY_EXISTS">
            <summary>
             Cannot create a file when that file already exists.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_FLAG_NUMBER">
            <summary>
             The flag passed is not correct.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SEM_NOT_FOUND">
            <summary>
             The specified system semaphore name was not found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_STARTING_CODESEG">
            <summary>
             The operating system cannot run %1.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_STACKSEG">
            <summary>
             The operating system cannot run %1.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_MODULETYPE">
            <summary>
             The operating system cannot run %1.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_EXE_SIGNATURE">
            <summary>
             Cannot run %1 in Win32 mode.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_EXE_MARKED_INVALID">
            <summary>
             The operating system cannot run %1.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_EXE_FORMAT">
            <summary>
             %1 is not a valid Win32 application.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_ITERATED_DATA_EXCEEDS_64k">
            <summary>
             The operating system cannot run %1.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_MINALLOCSIZE">
            <summary>
             The operating system cannot run %1.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DYNLINK_FROM_INVALID_RING">
            <summary>
             The operating system cannot run this application program.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IOPL_NOT_ENABLED">
            <summary>
             The operating system is not presently configured to run this application.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_SEGDPL">
            <summary>
             The operating system cannot run %1.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_AUTODATASEG_EXCEEDS_64k">
            <summary>
             The operating system cannot run this application program.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_RING2SEG_MUST_BE_MOVABLE">
            <summary>
             The code segment cannot be greater than or equal to 64K.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_RELOC_CHAIN_XEEDS_SEGLIM">
            <summary>
             The operating system cannot run %1.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INFLOOP_IN_RELOC_CHAIN">
            <summary>
             The operating system cannot run %1.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_ENVVAR_NOT_FOUND">
            <summary>
             The system could not find the environment option that was entered.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_SIGNAL_SENT">
            <summary>
             No process in the command subtree has a signal handler.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_FILENAME_EXCED_RANGE">
            <summary>
             The filename or extension is too long.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_RING2_STACK_IN_USE">
            <summary>
             The ring 2 stack is in use.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_META_EXPANSION_TOO_LONG">
            <summary>
             The global filename characters, * or ?, are entered incorrectly or too many global filename characters are specified.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_SIGNAL_NUMBER">
            <summary>
             The signal being posted is not correct.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_THREAD_1_INACTIVE">
            <summary>
             The signal handler cannot be set.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_LOCKED">
            <summary>
             The segment is locked and cannot be reallocated.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_TOO_MANY_MODULES">
            <summary>
             Too many dynamic-link modules are attached to this program or dynamic-link module.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NESTING_NOT_ALLOWED">
            <summary>
             Cannot nest calls to LoadModule.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_EXE_MACHINE_TYPE_MISMATCH">
            <summary>
             The image file %1 is valid, but is for a machine type other than the current machine.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_EXE_CANNOT_MODIFY_SIGNED_BINARY">
            <summary>
             The image file %1 is signed, unable to modify.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_EXE_CANNOT_MODIFY_STRONG_SIGNED_BINARY">
            <summary>
             The image file %1 is strong signed, unable to modify.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_PIPE">
            <summary>
             The pipe state is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_PIPE_BUSY">
            <summary>
             All pipe instances are busy.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_DATA">
            <summary>
             The pipe is being closed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_PIPE_NOT_CONNECTED">
            <summary>
             No process is on the other end of the pipe.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_MORE_DATA">
            <summary>
             More data is available.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_VC_DISCONNECTED">
            <summary>
             The session was canceled.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_EA_NAME">
            <summary>
             The specified extended attribute name was invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_EA_LIST_INCONSISTENT">
            <summary>
             The extended attributes are inconsistent.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WAIT_TIMEOUT">
            <summary>
             The wait operation timed out.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_MORE_ITEMS">
            <summary>
             No more data is available.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CANNOT_COPY">
            <summary>
             The copy functions cannot be used.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DIRECTORY">
            <summary>
             The directory name is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_EAS_DIDNT_FIT">
            <summary>
             The extended attributes did not fit in the buffer.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_EA_FILE_CORRUPT">
            <summary>
             The extended attribute file on the mounted file system is corrupt.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_EA_TABLE_FULL">
            <summary>
             The extended attribute table file is full.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_EA_HANDLE">
            <summary>
             The specified extended attribute handle is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_EAS_NOT_SUPPORTED">
            <summary>
             The mounted file system does not support extended attributes.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_OWNER">
            <summary>
             Attempt to release mutex not owned by caller.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_TOO_MANY_POSTS">
            <summary>
             Too many posts were made to a semaphore.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_PARTIAL_COPY">
            <summary>
             Only part of a ReadProcessMemory or WriteProcessMemory request was completed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_OPLOCK_NOT_GRANTED">
            <summary>
             The oplock request is denied.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_OPLOCK_PROTOCOL">
            <summary>
             An invalid oplock acknowledgment was received by the system.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DISK_TOO_FRAGMENTED">
            <summary>
             The volume is too fragmented to complete this operation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DELETE_PENDING">
            <summary>
             The file cannot be opened because it is in the process of being deleted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_MR_MID_NOT_FOUND">
            <summary>
             The system cannot find message text for message number 0x%1 in the message file for %2.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SCOPE_NOT_FOUND">
            <summary>
             The scope specified was not found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_ADDRESS">
            <summary>
             Attempt to access invalid address.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_ARITHMETIC_OVERFLOW">
            <summary>
             Arithmetic result exceeded 32 bits.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_PIPE_CONNECTED">
            <summary>
             There is a process on other end of the pipe.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_PIPE_LISTENING">
            <summary>
             Waiting for a process to open the other end of the pipe.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_ELEVATION_REQUIRED">
            <summary>
            The requested operation requires elevation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_EA_ACCESS_DENIED">
            <summary>
             Access to the extended attribute was denied.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_OPERATION_ABORTED">
            <summary>
             The I/O operation has been aborted because of either a thread exit or an application request.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IO_INCOMPLETE">
            <summary>
             Overlapped I/O event is not in a signaled state.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IO_PENDING">
            <summary>
             Overlapped I/O operation is in progress.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NOACCESS">
            <summary>
             Invalid access to memory location.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SWAPERROR">
            <summary>
             Error performing inpage operation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_STACK_OVERFLOW">
            <summary>
             Recursion too deep; the stack overflowed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_MESSAGE">
            <summary>
             The window cannot act on the sent message.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CAN_NOT_COMPLETE">
            <summary>
             Cannot complete this function.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_FLAGS">
            <summary>
             Invalid flags.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_UNRECOGNIZED_VOLUME">
            <summary>
             The volume does not contain a recognized file system.
             Please make sure that all required file system drivers are loaded and that the volume is not corrupted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_FILE_INVALID">
            <summary>
             The volume for a file has been externally altered so that the opened file is no longer valid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_FULLSCREEN_MODE">
            <summary>
             The requested operation cannot be performed in full-screen mode.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_TOKEN">
            <summary>
             An attempt was made to reference a token that does not exist.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_BADDB">
            <summary>
             The configuration registry database is corrupt.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_BADKEY">
            <summary>
             The configuration registry key is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CANTOPEN">
            <summary>
             The configuration registry key could not be opened.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CANTREAD">
            <summary>
             The configuration registry key could not be read.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CANTWRITE">
            <summary>
             The configuration registry key could not be written.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_REGISTRY_RECOVERED">
            <summary>
             One of the files in the registry database had to be recovered by use of a log or alternate copy. The recovery was successful.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_REGISTRY_CORRUPT">
            <summary>
             The registry is corrupted. The structure of one of the files containing registry data is corrupted, or the system's memory image of the file is corrupted, or the file could not be recovered because the alternate copy or log was absent or corrupted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_REGISTRY_IO_FAILED">
            <summary>
             An I/O operation initiated by the registry failed unrecoverably. The registry could not read in, or write out, or flush, one of the files that contain the system's image of the registry.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_REGISTRY_FILE">
            <summary>
             The system has attempted to load or restore a file into the registry, but the specified file is not in a registry file format.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_KEY_DELETED">
            <summary>
             Illegal operation attempted on a registry key that has been marked for deletion.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_LOG_SPACE">
            <summary>
             System could not allocate the required space in a registry log.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_KEY_HAS_CHILDREN">
            <summary>
             Cannot create a symbolic link in a registry key that already has subkeys or values.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CHILD_MUST_BE_VOLATILE">
            <summary>
             Cannot create a stable subkey under a volatile parent key.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NOTIFY_ENUM_DIR">
            <summary>
             A notify change request is being completed and the information is not being returned in the caller's buffer. The caller now needs to enumerate the files to find the changes.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DEPENDENT_SERVICES_RUNNING">
            <summary>
             A stop control has been sent to a service that other running services are dependent on.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_SERVICE_CONTROL">
            <summary>
             The requested control is not valid for this service.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SERVICE_REQUEST_TIMEOUT">
            <summary>
             The service did not respond to the start or control request in a timely fashion.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SERVICE_NO_THREAD">
            <summary>
             A thread could not be created for the service.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SERVICE_DATABASE_LOCKED">
            <summary>
             The service database is locked.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SERVICE_ALREADY_RUNNING">
            <summary>
             An instance of the service is already running.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_SERVICE_ACCOUNT">
            <summary>
             The account name is invalid or does not exist, or the password is invalid for the account name specified.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SERVICE_DISABLED">
            <summary>
             The service cannot be started, either because it is disabled or because it has no enabled devices associated with it.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CIRCULAR_DEPENDENCY">
            <summary>
             Circular service dependency was specified.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SERVICE_DOES_NOT_EXIST">
            <summary>
             The specified service does not exist as an installed service.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SERVICE_CANNOT_ACCEPT_CTRL">
            <summary>
             The service cannot accept control messages at this time.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SERVICE_NOT_ACTIVE">
            <summary>
             The service has not been started.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_FAILED_SERVICE_CONTROLLER_CONNECT">
            <summary>
             The service process could not connect to the service controller.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_EXCEPTION_IN_SERVICE">
            <summary>
             An exception occurred in the service when handling the control request.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DATABASE_DOES_NOT_EXIST">
            <summary>
             The database specified does not exist.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SERVICE_SPECIFIC_ERROR">
            <summary>
             The service has returned a service-specific error code.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_PROCESS_ABORTED">
            <summary>
             The process terminated unexpectedly.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SERVICE_DEPENDENCY_FAIL">
            <summary>
             The dependency service or group failed to start.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SERVICE_LOGON_FAILED">
            <summary>
             The service did not start due to a logon failure.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SERVICE_START_HANG">
            <summary>
             After starting, the service hung in a start-pending state.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_SERVICE_LOCK">
            <summary>
             The specified service database lock is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SERVICE_MARKED_FOR_DELETE">
            <summary>
             The specified service has been marked for deletion.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SERVICE_EXISTS">
            <summary>
             The specified service already exists.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_ALREADY_RUNNING_LKG">
            <summary>
             The system is currently running with the last-known-good configuration.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SERVICE_DEPENDENCY_DELETED">
            <summary>
             The dependency service does not exist or has been marked for deletion.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_BOOT_ALREADY_ACCEPTED">
            <summary>
             The current boot has already been accepted for use as the last-known-good control set.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SERVICE_NEVER_STARTED">
            <summary>
             No attempts to start the service have been made since the last boot.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DUPLICATE_SERVICE_NAME">
            <summary>
             The name is already in use as either a service name or a service display name.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DIFFERENT_SERVICE_ACCOUNT">
            <summary>
             The account specified for this service is different from the account specified for other services running in the same process.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CANNOT_DETECT_DRIVER_FAILURE">
            <summary>
             Failure actions can only be set for Win32 services, not for drivers.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CANNOT_DETECT_PROCESS_ABORT">
            <summary>
             This service runs in the same process as the service control manager.
             Therefore, the service control manager cannot take action if this service's process terminates unexpectedly.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_RECOVERY_PROGRAM">
            <summary>
             No recovery program has been configured for this service.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SERVICE_NOT_IN_EXE">
            <summary>
             The executable program that this service is configured to run in does not implement the service.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_SAFEBOOT_SERVICE">
            <summary>
             This service cannot be started in Safe Mode
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_END_OF_MEDIA">
            <summary>
             The physical end of the tape has been reached.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_FILEMARK_DETECTED">
            <summary>
             A tape access reached a filemark.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_BEGINNING_OF_MEDIA">
            <summary>
             The beginning of the tape or a partition was encountered.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SETMARK_DETECTED">
            <summary>
             A tape access reached the end of a set of files.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_DATA_DETECTED">
            <summary>
             No more data is on the tape.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_PARTITION_FAILURE">
            <summary>
             Tape could not be partitioned.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_BLOCK_LENGTH">
            <summary>
             When accessing a new tape of a multivolume partition, the current block size is incorrect.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DEVICE_NOT_PARTITIONED">
            <summary>
             Tape partition information could not be found when loading a tape.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_UNABLE_TO_LOCK_MEDIA">
            <summary>
             Unable to lock the media eject mechanism.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_UNABLE_TO_UNLOAD_MEDIA">
            <summary>
             Unable to unload the media.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_MEDIA_CHANGED">
            <summary>
             The media in the drive may have changed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_BUS_RESET">
            <summary>
             The I/O bus was reset.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_MEDIA_IN_DRIVE">
            <summary>
             No media in drive.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_UNICODE_TRANSLATION">
            <summary>
             No mapping for the Unicode character exists in the target multi-byte code page.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DLL_INIT_FAILED">
            <summary>
             A dynamic link library (DLL) initialization routine failed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SHUTDOWN_IN_PROGRESS">
            <summary>
             A system shutdown is in progress.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_SHUTDOWN_IN_PROGRESS">
            <summary>
             Unable to abort the system shutdown because no shutdown was in progress.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IO_DEVICE">
            <summary>
             The request could not be performed because of an I/O device error.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SERIAL_NO_DEVICE">
            <summary>
             No serial device was successfully initialized. The serial driver will unload.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IRQ_BUSY">
            <summary>
             Unable to open a device that was sharing an interrupt request (IRQ) with other devices. At least one other device that uses that IRQ was already opened.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_MORE_WRITES">
            <summary>
             A serial I/O operation was completed by another write to the serial port.
             (The IOCTL_SERIAL_XOFF_COUNTER reached zero.)
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_COUNTER_TIMEOUT">
            <summary>
             A serial I/O operation completed because the timeout period expired.
             (The IOCTL_SERIAL_XOFF_COUNTER did not reach zero.)
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_FLOPPY_ID_MARK_NOT_FOUND">
            <summary>
             No ID address mark was found on the floppy disk.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_FLOPPY_WRONG_CYLINDER">
            <summary>
             Mismatch between the floppy disk sector ID field and the floppy disk controller track address.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_FLOPPY_UNKNOWN_ERROR">
            <summary>
             The floppy disk controller reported an error that is not recognized by the floppy disk driver.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_FLOPPY_BAD_REGISTERS">
            <summary>
             The floppy disk controller returned inconsistent results in its registers.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DISK_RECALIBRATE_FAILED">
            <summary>
             While accessing the hard disk, a recalibrate operation failed, even after retries.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DISK_OPERATION_FAILED">
            <summary>
             While accessing the hard disk, a disk operation failed even after retries.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DISK_RESET_FAILED">
            <summary>
             While accessing the hard disk, a disk controller reset was needed, but even that failed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_EOM_OVERFLOW">
            <summary>
             Physical end of tape encountered.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_ENOUGH_SERVER_MEMORY">
            <summary>
             Not enough server storage is available to process this command.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_POSSIBLE_DEADLOCK">
            <summary>
             A potential deadlock condition has been detected.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_MAPPED_ALIGNMENT">
            <summary>
             The base address or the file offset specified does not have the proper alignment.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SET_POWER_STATE_VETOED">
            <summary>
             An attempt to change the system power state was vetoed by another application or driver.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SET_POWER_STATE_FAILED">
            <summary>
             The system BIOS failed an attempt to change the system power state.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_TOO_MANY_LINKS">
            <summary>
             An attempt was made to create more links on a file than the file system supports.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_OLD_WIN_VERSION">
            <summary>
             The specified program requires a newer version of Windows.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_APP_WRONG_OS">
            <summary>
             The specified program is not a Windows or MS-DOS program.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SINGLE_INSTANCE_APP">
            <summary>
             Cannot start more than one instance of the specified program.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_RMODE_APP">
            <summary>
             The specified program was written for an earlier version of Windows.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_DLL">
            <summary>
             One of the library files needed to run this application is damaged.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_ASSOCIATION">
            <summary>
             No application is associated with the specified file for this operation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DDE_FAIL">
            <summary>
             An error occurred in sending the command to the application.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DLL_NOT_FOUND">
            <summary>
             One of the library files needed to run this application cannot be found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_MORE_USER_HANDLES">
            <summary>
             The current process has used all of its system allowance of handles for Window Manager objects.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_MESSAGE_SYNC_ONLY">
            <summary>
             The message can be used only with synchronous operations.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SOURCE_ELEMENT_EMPTY">
            <summary>
             The indicated source element has no media.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DESTINATION_ELEMENT_FULL">
            <summary>
             The indicated destination element already contains media.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_ILLEGAL_ELEMENT_ADDRESS">
            <summary>
             The indicated element does not exist.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_MAGAZINE_NOT_PRESENT">
            <summary>
             The indicated element is part of a magazine that is not present.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DEVICE_REINITIALIZATION_NEEDED">
            <summary>
             The indicated device requires reinitialization due to hardware errors.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DEVICE_REQUIRES_CLEANING">
            <summary>
             The device has indicated that cleaning is required before further operations are attempted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DEVICE_DOOR_OPEN">
            <summary>
             The device has indicated that its door is open.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DEVICE_NOT_CONNECTED">
            <summary>
             The device is not connected.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_FOUND">
            <summary>
             Element not found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_MATCH">
            <summary>
             There was no match for the specified key in the index.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SET_NOT_FOUND">
            <summary>
             The property set specified does not exist on the object.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_POINT_NOT_FOUND">
            <summary>
             The point passed to GetMouseMovePoints is not in the buffer.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_TRACKING_SERVICE">
            <summary>
             The tracking (workstation) service is not running.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_VOLUME_ID">
            <summary>
             The Volume ID could not be found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_UNABLE_TO_REMOVE_REPLACED">
            <summary>
             Unable to remove the file to be replaced.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_UNABLE_TO_MOVE_REPLACEMENT">
            <summary>
             Unable to move the replacement file to the file to be replaced. The file to be replaced has retained its original name.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_UNABLE_TO_MOVE_REPLACEMENT_2">
            <summary>
             Unable to move the replacement file to the file to be replaced. The file to be replaced has been renamed using the backup name.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_JOURNAL_DELETE_IN_PROGRESS">
            <summary>
             The volume change journal is being deleted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_JOURNAL_NOT_ACTIVE">
            <summary>
             The volume change journal is not active.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_POTENTIAL_FILE_FOUND">
            <summary>
             A file was found, but it may not be the correct file.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_JOURNAL_ENTRY_DELETED">
            <summary>
             The journal entry has been deleted from the journal.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_DEVICE">
            <summary>
             The specified device name is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CONNECTION_UNAVAIL">
            <summary>
             The device is not currently connected but it is a remembered connection.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DEVICE_ALREADY_REMEMBERED">
            <summary>
             The local device name has a remembered connection to another network resource.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_NET_OR_BAD_PATH">
            <summary>
             No network provider accepted the given network path.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_PROVIDER">
            <summary>
             The specified network provider name is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CANNOT_OPEN_PROFILE">
            <summary>
             Unable to open the network connection profile.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_PROFILE">
            <summary>
             The network connection profile is corrupted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_CONTAINER">
            <summary>
             Cannot enumerate a noncontainer.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_EXTENDED_ERROR">
            <summary>
             An extended error has occurred.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_GROUPNAME">
            <summary>
             The format of the specified group name is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_COMPUTERNAME">
            <summary>
             The format of the specified computer name is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_EVENTNAME">
            <summary>
             The format of the specified event name is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_DOMAINNAME">
            <summary>
             The format of the specified domain name is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_SERVICENAME">
            <summary>
             The format of the specified service name is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_NETNAME">
            <summary>
             The format of the specified network name is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_SHARENAME">
            <summary>
             The format of the specified share name is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_PASSWORDNAME">
            <summary>
             The format of the specified password is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_MESSAGENAME">
            <summary>
             The format of the specified message name is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_MESSAGEDEST">
            <summary>
             The format of the specified message destination is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SESSION_CREDENTIAL_CONFLICT">
            <summary>
             Multiple connections to a server or shared resource by the same user, using more than one user name, are not allowed. Disconnect all previous connections to the server or shared resource and try again.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_REMOTE_SESSION_LIMIT_EXCEEDED">
            <summary>
             An attempt was made to establish a session to a network server, but there are already too many sessions established to that server.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DUP_DOMAINNAME">
            <summary>
             The workgroup or domain name is already in use by another computer on the network.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_NETWORK">
            <summary>
             The network is not present or not started.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CANCELLED">
            <summary>
             The operation was canceled by the user.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_USER_MAPPED_FILE">
            <summary>
             The requested operation cannot be performed on a file with a user-mapped section open.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CONNECTION_REFUSED">
            <summary>
             The remote system refused the network connection.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_GRACEFUL_DISCONNECT">
            <summary>
             The network connection was gracefully closed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_ADDRESS_ALREADY_ASSOCIATED">
            <summary>
             The network transport endpoint already has an address associated with it.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_ADDRESS_NOT_ASSOCIATED">
            <summary>
             An address has not yet been associated with the network endpoint.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CONNECTION_INVALID">
            <summary>
             An operation was attempted on a nonexistent network connection.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CONNECTION_ACTIVE">
            <summary>
             An invalid operation was attempted on an active network connection.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NETWORK_UNREACHABLE">
            <summary>
             The network location cannot be reached. For information about network troubleshooting, see Windows Help.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_HOST_UNREACHABLE">
            <summary>
             The network location cannot be reached. For information about network troubleshooting, see Windows Help.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_PROTOCOL_UNREACHABLE">
            <summary>
             The network location cannot be reached. For information about network troubleshooting, see Windows Help.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_PORT_UNREACHABLE">
            <summary>
             No service is operating at the destination network endpoint on the remote system.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_REQUEST_ABORTED">
            <summary>
             The request was aborted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CONNECTION_ABORTED">
            <summary>
             The network connection was aborted by the local system.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_RETRY">
            <summary>
             The operation could not be completed. A retry should be performed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CONNECTION_COUNT_LIMIT">
            <summary>
             A connection to the server could not be made because the limit on the number of concurrent connections for this account has been reached.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_LOGIN_TIME_RESTRICTION">
            <summary>
             Attempting to log in during an unauthorized time of day for this account.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_LOGIN_WKSTA_RESTRICTION">
            <summary>
             The account is not authorized to log in from this station.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INCORRECT_ADDRESS">
            <summary>
             The network address could not be used for the operation requested.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_ALREADY_REGISTERED">
            <summary>
             The service is already registered.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SERVICE_NOT_FOUND">
            <summary>
             The specified service does not exist.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_AUTHENTICATED">
            <summary>
             The operation being requested was not performed because the user has not been authenticated.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_LOGGED_ON">
            <summary>
             The operation being requested was not performed because the user has not logged on to the network.
             The specified service does not exist.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CONTINUE">
            <summary>
             Continue with work in progress.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_ALREADY_INITIALIZED">
            <summary>
             An attempt was made to perform an initialization operation when initialization has already been completed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_MORE_DEVICES">
            <summary>
             No more local devices.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_SUCH_SITE">
            <summary>
             The specified site does not exist.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DOMAIN_CONTROLLER_EXISTS">
            <summary>
             A domain controller with the specified name already exists.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_ONLY_IF_CONNECTED">
            <summary>
             This operation is supported only when you are connected to the server.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_OVERRIDE_NOCHANGES">
            <summary>
             The group policy framework should call the extension even if there are no changes.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_USER_PROFILE">
            <summary>
             The specified user does not have a valid profile.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_SUPPORTED_ON_SBS">
            <summary>
             This operation is not supported on a computer running Windows Server 2003 for Small Business Server
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SERVER_SHUTDOWN_IN_PROGRESS">
            <summary>
             The server machine is shutting down.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_HOST_DOWN">
            <summary>
             The remote system is not available. For information about network troubleshooting, see Windows Help.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NON_ACCOUNT_SID">
            <summary>
             The security identifier provided is not from an account domain.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NON_DOMAIN_SID">
            <summary>
             The security identifier provided does not have a domain component.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_APPHELP_BLOCK">
            <summary>
             AppHelp dialog canceled thus preventing the application from starting.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_ACCESS_DISABLED_BY_POLICY">
            <summary>
             Windows cannot open this program because it has been prevented by a software restriction policy. For more information, open Event Viewer or contact your system administrator.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_REG_NAT_CONSUMPTION">
            <summary>
             A program attempt to use an invalid register value.  Normally caused by an uninitialized register. This error is Itanium specific.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CSCSHARE_OFFLINE">
            <summary>
             The share is currently offline or does not exist.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_PKINIT_FAILURE">
            <summary>
             The kerberos protocol encountered an error while validating the
             KDC certificate during smartcard logon.  There is more information in the
             system event log.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SMARTCARD_SUBSYSTEM_FAILURE">
            <summary>
             The kerberos protocol encountered an error while attempting to utilize
             the smartcard subsystem.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DOWNGRADE_DETECTED">
            <summary>
             The system detected a possible attempt to compromise security. Please ensure that you can contact the server that authenticated you.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_MACHINE_LOCKED">
            <summary>
             The machine is locked and cannot be shut down without the force option.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CALLBACK_SUPPLIED_INVALID_DATA">
            <summary>
             An application-defined callback gave invalid data when called.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SYNC_FOREGROUND_REFRESH_REQUIRED">
            <summary>
             The group policy framework should call the extension in the synchronous foreground policy refresh.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DRIVER_BLOCKED">
            <summary>
             This driver has been blocked from loading
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_IMPORT_OF_NON_DLL">
            <summary>
             A dynamic link library (DLL) referenced a module that was neither a DLL nor the process's executable image.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_ACCESS_DISABLED_WEBBLADE">
            <summary>
             Windows cannot open this program since it has been disabled.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_ACCESS_DISABLED_WEBBLADE_TAMPER">
            <summary>
             Windows cannot open this program because the license enforcement system has been tampered with or become corrupted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_RECOVERY_FAILURE">
            <summary>
             A transaction recover failed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_ALREADY_FIBER">
            <summary>
             The current thread has already been converted to a fiber.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_ALREADY_THREAD">
            <summary>
             The current thread has already been converted from a fiber.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_STACK_BUFFER_OVERRUN">
            <summary>
             The system detected an overrun of a stack-based buffer in this application.  This
             overrun could potentially allow a malicious user to gain control of this application.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_PARAMETER_QUOTA_EXCEEDED">
            <summary>
             Data present in one of the parameters is more than the function can operate on.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DEBUGGER_INACTIVE">
            <summary>
             An attempt to do an operation on a debug object failed because the object is in the process of being deleted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DELAY_LOAD_FAILED">
            <summary>
             An attempt to delay-load a .dll or get a function address in a delay-loaded .dll failed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_VDM_DISALLOWED">
            <summary>
             %1 is a 16-bit application. You do not have permissions to execute 16-bit applications. Check your permissions with your system administrator.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_UNIDENTIFIED_ERROR">
            <summary>
             Insufficient information exists to identify the cause of failure.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_ALL_ASSIGNED">
            <summary>
             Not all privileges referenced are assigned to the caller.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SOME_NOT_MAPPED">
            <summary>
             Some mapping between account names and security IDs was not done.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_QUOTAS_FOR_ACCOUNT">
            <summary>
             No system quota limits are specifically set for this account.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_LOCAL_USER_SESSION_KEY">
            <summary>
             No encryption key is available. A well-known encryption key was returned.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NULL_LM_PASSWORD">
            <summary>
             The password is too complex to be converted to a LAN Manager password. The LAN Manager password returned is a NULL string.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_UNKNOWN_REVISION">
            <summary>
             The revision level is unknown.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_REVISION_MISMATCH">
            <summary>
             Indicates two revision levels are incompatible.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_OWNER">
            <summary>
             This security ID may not be assigned as the owner of this object.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_PRIMARY_GROUP">
            <summary>
             This security ID may not be assigned as the primary group of an object.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_IMPERSONATION_TOKEN">
            <summary>
             An attempt has been made to operate on an impersonation token by a thread that is not currently impersonating a client.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CANT_DISABLE_MANDATORY">
            <summary>
             The group may not be disabled.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_LOGON_SERVERS">
            <summary>
             There are currently no logon servers available to service the logon request.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_SUCH_LOGON_SESSION">
            <summary>
             A specified logon session does not exist. It may already have been terminated.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_SUCH_PRIVILEGE">
            <summary>
             A specified privilege does not exist.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_PRIVILEGE_NOT_HELD">
            <summary>
             A required privilege is not held by the client.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_ACCOUNT_NAME">
            <summary>
             The name provided is not a properly formed account name.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_USER_EXISTS">
            <summary>
             The specified user already exists.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_SUCH_USER">
            <summary>
             The specified user does not exist.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_GROUP_EXISTS">
            <summary>
             The specified group already exists.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_SUCH_GROUP">
            <summary>
             The specified group does not exist.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_MEMBER_IN_GROUP">
            <summary>
             Either the specified user account is already a member of the specified group, or the specified group cannot be deleted because it contains a member.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_MEMBER_NOT_IN_GROUP">
            <summary>
             The specified user account is not a member of the specified group account.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_LAST_ADMIN">
            <summary>
             The last remaining administration account cannot be disabled or deleted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_WRONG_PASSWORD">
            <summary>
             Unable to update the password. The value provided as the current password is incorrect.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_ILL_FORMED_PASSWORD">
            <summary>
             Unable to update the password. The value provided for the new password contains values that are not allowed in passwords.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_PASSWORD_RESTRICTION">
            <summary>
             Unable to update the password. The value provided for the new password does not meet the length, complexity, or history requirement of the domain.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_LOGON_FAILURE">
            <summary>
             Logon failure: unknown user name or bad password.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_ACCOUNT_RESTRICTION">
            <summary>
             Logon failure: user account restriction.  Possible reasons are blank passwords not allowed, logon hour restrictions, or a policy restriction has been enforced.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_LOGON_HOURS">
            <summary>
             Logon failure: account logon time restriction violation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_WORKSTATION">
            <summary>
             Logon failure: user not allowed to log on to this computer.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_PASSWORD_EXPIRED">
            <summary>
             Logon failure: the specified account password has expired.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_ACCOUNT_DISABLED">
            <summary>
             Logon failure: account currently disabled.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NONE_MAPPED">
            <summary>
             No mapping between account names and security IDs was done.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_TOO_MANY_LUIDS_REQUESTED">
            <summary>
             Too many local user identifiers (LUIDs) were requested at one time.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_LUIDS_EXHAUSTED">
            <summary>
             No more local user identifiers (LUIDs) are available.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_SUB_AUTHORITY">
            <summary>
             The subauthority part of a security ID is invalid for this particular use.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_ACL">
            <summary>
             The access control list (ACL) structure is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_SID">
            <summary>
             The security ID structure is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_SECURITY_DESCR">
            <summary>
             The security descriptor structure is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_INHERITANCE_ACL">
            <summary>
             The inherited access control list (ACL) or access control entry (ACE) could not be built.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SERVER_DISABLED">
            <summary>
             The server is currently disabled.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SERVER_NOT_DISABLED">
            <summary>
             The server is currently enabled.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_ID_AUTHORITY">
            <summary>
             The value provided was an invalid value for an identifier authority.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_ALLOTTED_SPACE_EXCEEDED">
            <summary>
             No more memory is available for security information updates.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_GROUP_ATTRIBUTES">
            <summary>
             The specified attributes are invalid, or incompatible with the attributes for the group as a whole.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_IMPERSONATION_LEVEL">
            <summary>
             Either a required impersonation level was not provided, or the provided impersonation level is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CANT_OPEN_ANONYMOUS">
            <summary>
             Cannot open an anonymous level security token.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_VALIDATION_CLASS">
            <summary>
             The validation information class requested was invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_TOKEN_TYPE">
            <summary>
             The type of the token is inappropriate for its attempted use.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_SECURITY_ON_OBJECT">
            <summary>
             Unable to perform a security operation on an object that has no associated security.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CANT_ACCESS_DOMAIN_INFO">
            <summary>
             Configuration information could not be read from the domain controller, either because the machine is unavailable, or access has been denied.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_SERVER_STATE">
            <summary>
             The security account manager (SAM) or local security authority (LSA) server was in the wrong state to perform the security operation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_DOMAIN_STATE">
            <summary>
             The domain was in the wrong state to perform the security operation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_DOMAIN_ROLE">
            <summary>
             This operation is only allowed for the Primary Domain Controller of the domain.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_SUCH_DOMAIN">
            <summary>
             The specified domain either does not exist or could not be contacted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DOMAIN_EXISTS">
            <summary>
             The specified domain already exists.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DOMAIN_LIMIT_EXCEEDED">
            <summary>
             An attempt was made to exceed the limit on the number of domains per server.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INTERNAL_DB_CORRUPTION">
            <summary>
             Unable to complete the requested operation because of either a catastrophic media failure or a data structure corruption on the disk.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INTERNAL_ERROR">
            <summary>
             An internal error occurred.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_GENERIC_NOT_MAPPED">
            <summary>
             Generic access types were contained in an access mask which should already be mapped to nongeneric types.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_DESCRIPTOR_FORMAT">
            <summary>
             A security descriptor is not in the right format (absolute or self-relative).
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_LOGON_PROCESS">
            <summary>
             The requested action is restricted for use by logon processes only. The calling process has not registered as a logon process.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_LOGON_SESSION_EXISTS">
            <summary>
             Cannot start a new logon session with an ID that is already in use.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_SUCH_PACKAGE">
            <summary>
             A specified authentication package is unknown.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_LOGON_SESSION_STATE">
            <summary>
             The logon session is not in a state that is consistent with the requested operation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_LOGON_SESSION_COLLISION">
            <summary>
             The logon session ID is already in use.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_LOGON_TYPE">
            <summary>
             A logon request contained an invalid logon type value.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CANNOT_IMPERSONATE">
            <summary>
             Unable to impersonate using a named pipe until data has been read from that pipe.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_RXACT_INVALID_STATE">
            <summary>
             The transaction state of a registry subtree is incompatible with the requested operation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_RXACT_COMMIT_FAILURE">
            <summary>
             An internal security database corruption has been encountered.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SPECIAL_ACCOUNT">
            <summary>
             Cannot perform this operation on built-in accounts.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SPECIAL_GROUP">
            <summary>
             Cannot perform this operation on this built-in special group.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SPECIAL_USER">
            <summary>
             Cannot perform this operation on this built-in special user.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_MEMBERS_PRIMARY_GROUP">
            <summary>
             The user cannot be removed from a group because the group is currently the user's primary group.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_TOKEN_ALREADY_IN_USE">
            <summary>
             The token is already in use as a primary token.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_SUCH_ALIAS">
            <summary>
             The specified local group does not exist.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_MEMBER_NOT_IN_ALIAS">
            <summary>
             The specified account name is not a member of the local group.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_MEMBER_IN_ALIAS">
            <summary>
             The specified account name is already a member of the local group.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_ALIAS_EXISTS">
            <summary>
             The specified local group already exists.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_LOGON_NOT_GRANTED">
            <summary>
             Logon failure: the user has not been granted the requested logon type at this computer.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_TOO_MANY_SECRETS">
            <summary>
             The maximum number of secrets that may be stored in a single system has been exceeded.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SECRET_TOO_LONG">
            <summary>
             The length of a secret exceeds the maximum length allowed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INTERNAL_DB_ERROR">
            <summary>
             The local security authority database contains an internal inconsistency.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_TOO_MANY_CONTEXT_IDS">
            <summary>
             During a logon attempt, the user's security context accumulated too many security IDs.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_LOGON_TYPE_NOT_GRANTED">
            <summary>
             Logon failure: the user has not been granted the requested logon type at this computer.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NT_CROSS_ENCRYPTION_REQUIRED">
            <summary>
             A cross-encrypted password is necessary to change a user password.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_SUCH_MEMBER">
            <summary>
             A member could not be added to or removed from the local group because the member does not exist.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_MEMBER">
            <summary>
             A new member could not be added to a local group because the member has the wrong account type.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_TOO_MANY_SIDS">
            <summary>
             Too many security IDs have been specified.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_LM_CROSS_ENCRYPTION_REQUIRED">
            <summary>
             A cross-encrypted password is necessary to change this user password.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_INHERITANCE">
            <summary>
             Indicates an ACL contains no inheritable components.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_FILE_CORRUPT">
            <summary>
             The file or directory is corrupted and unreadable.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DISK_CORRUPT">
            <summary>
             The disk structure is corrupted and unreadable.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_USER_SESSION_KEY">
            <summary>
             There is no user session key for the specified logon session.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_LICENSE_QUOTA_EXCEEDED">
            <summary>
             The service being accessed is licensed for a particular number of connections.
             No more connections can be made to the service at this time because there are already as many connections as the service can accept.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_WRONG_TARGET_NAME">
            <summary>
             Logon Failure: The target account name is incorrect.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_MUTUAL_AUTH_FAILED">
            <summary>
             Mutual Authentication failed. The server's password is out of date at the domain controller.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_TIME_SKEW">
            <summary>
             There is a time and/or date difference between the client and server.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CURRENT_DOMAIN_NOT_ALLOWED">
            <summary>
             This operation cannot be performed on the current domain.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_WINDOW_HANDLE">
            <summary>
             Invalid window handle.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_MENU_HANDLE">
            <summary>
             Invalid menu handle.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_CURSOR_HANDLE">
            <summary>
             Invalid cursor handle.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_ACCEL_HANDLE">
            <summary>
             Invalid accelerator table handle.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_HOOK_HANDLE">
            <summary>
             Invalid hook handle.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_DWP_HANDLE">
            <summary>
             Invalid handle to a multiple-window position structure.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_TLW_WITH_WSCHILD">
            <summary>
             Cannot create a top-level child window.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CANNOT_FIND_WND_CLASS">
            <summary>
             Cannot find window class.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_WINDOW_OF_OTHER_THREAD">
            <summary>
             Invalid window; it belongs to other thread.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_HOTKEY_ALREADY_REGISTERED">
            <summary>
             Hot key is already registered.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLASS_ALREADY_EXISTS">
            <summary>
             Class already exists.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLASS_DOES_NOT_EXIST">
            <summary>
             Class does not exist.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLASS_HAS_WINDOWS">
            <summary>
             Class still has open windows.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_INDEX">
            <summary>
             Invalid index.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_ICON_HANDLE">
            <summary>
             Invalid icon handle.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_PRIVATE_DIALOG_INDEX">
            <summary>
             Using private DIALOG window words.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_LISTBOX_ID_NOT_FOUND">
            <summary>
             The list box identifier was not found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_WILDCARD_CHARACTERS">
            <summary>
             No wildcards were found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLIPBOARD_NOT_OPEN">
            <summary>
             Thread does not have a clipboard open.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_HOTKEY_NOT_REGISTERED">
            <summary>
             Hot key is not registered.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_WINDOW_NOT_DIALOG">
            <summary>
             The window is not a valid dialog window.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CONTROL_ID_NOT_FOUND">
            <summary>
             Control ID not found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_COMBOBOX_MESSAGE">
            <summary>
             Invalid message for a combo box because it does not have an edit control.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_WINDOW_NOT_COMBOBOX">
            <summary>
             The window is not a combo box.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_EDIT_HEIGHT">
            <summary>
             Height must be less than 256.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DC_NOT_FOUND">
            <summary>
             Invalid device context (DC) handle.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_HOOK_FILTER">
            <summary>
             Invalid hook procedure type.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_FILTER_PROC">
            <summary>
             Invalid hook procedure.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_HOOK_NEEDS_HMOD">
            <summary>
             Cannot set nonlocal hook without a module handle.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_GLOBAL_ONLY_HOOK">
            <summary>
             This hook procedure can only be set globally.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_JOURNAL_HOOK_SET">
            <summary>
             The journal hook procedure is already installed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_HOOK_NOT_INSTALLED">
            <summary>
             The hook procedure is not installed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_LB_MESSAGE">
            <summary>
             Invalid message for single-selection list box.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SETCOUNT_ON_BAD_LB">
            <summary>
             LB_SETCOUNT sent to non-lazy list box.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_LB_WITHOUT_TABSTOPS">
            <summary>
             This list box does not support tab stops.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DESTROY_OBJECT_OF_OTHER_THREAD">
            <summary>
             Cannot destroy object created by another thread.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CHILD_WINDOW_MENU">
            <summary>
             Child windows cannot have menus.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_SYSTEM_MENU">
            <summary>
             The window does not have a system menu.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_MSGBOX_STYLE">
            <summary>
             Invalid message box style.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_SPI_VALUE">
            <summary>
             Invalid system-wide (SPI_*) parameter.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SCREEN_ALREADY_LOCKED">
            <summary>
             Screen already locked.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_HWNDS_HAVE_DIFF_PARENT">
            <summary>
             All handles to windows in a multiple-window position structure must have the same parent.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_CHILD_WINDOW">
            <summary>
             The window is not a child window.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_GW_COMMAND">
            <summary>
             Invalid GW_* command.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_THREAD_ID">
            <summary>
             Invalid thread identifier.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NON_MDICHILD_WINDOW">
            <summary>
             Cannot process a message from a window that is not a multiple document interface (MDI) window.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_POPUP_ALREADY_ACTIVE">
            <summary>
             Popup menu already active.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_SCROLLBARS">
            <summary>
             The window does not have scroll bars.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_SCROLLBAR_RANGE">
            <summary>
             Scroll bar range cannot be greater than MAXLONG.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_SHOWWIN_COMMAND">
            <summary>
             Cannot show or remove the window in the way specified.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_SYSTEM_RESOURCES">
            <summary>
             Insufficient system resources exist to complete the requested service.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NONPAGED_SYSTEM_RESOURCES">
            <summary>
             Insufficient system resources exist to complete the requested service.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_PAGED_SYSTEM_RESOURCES">
            <summary>
             Insufficient system resources exist to complete the requested service.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_WORKING_SET_QUOTA">
            <summary>
             Insufficient quota to complete the requested service.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_PAGEFILE_QUOTA">
            <summary>
             Insufficient quota to complete the requested service.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_COMMITMENT_LIMIT">
            <summary>
             The paging file is too small for this operation to complete.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_MENU_ITEM_NOT_FOUND">
            <summary>
             A menu item was not found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_KEYBOARD_HANDLE">
            <summary>
             Invalid keyboard layout handle.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_HOOK_TYPE_NOT_ALLOWED">
            <summary>
             Hook type not allowed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_REQUIRES_INTERACTIVE_WINDOWSTATION">
            <summary>
             This operation requires an interactive window station.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_TIMEOUT">
            <summary>
             This operation returned because the timeout period expired.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_MONITOR_HANDLE">
            <summary>
             Invalid monitor handle.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INCORRECT_SIZE">
            <summary>
             Incorrect size argument.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_EVENTLOG_FILE_CORRUPT">
            <summary>
             The event log file is corrupted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_EVENTLOG_CANT_START">
            <summary>
             No event log file could be opened, so the event logging service did not start.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_LOG_FILE_FULL">
            <summary>
             The event log file is full.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_EVENTLOG_FILE_CHANGED">
            <summary>
             The event log file has changed between read operations.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INSTALL_SERVICE_FAILURE">
            <summary> 
             The Windows Installer Service could not be accessed. This can occur if you are running Windows in safe mode, or if the Windows Installer is not correctly installed. Contact your support personnel for assistance.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INSTALL_USEREXIT">
            <summary>
             User cancelled installation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INSTALL_FAILURE">
            <summary>
             Fatal error during installation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INSTALL_SUSPEND">
            <summary>
             Installation suspended, incomplete.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_UNKNOWN_PRODUCT">
            <summary>
             This action is only valid for products that are currently installed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_UNKNOWN_FEATURE">
            <summary>
             Feature ID not registered.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_UNKNOWN_COMPONENT">
            <summary>
             Component ID not registered.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_UNKNOWN_PROPERTY">
            <summary>
             Unknown property.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_HANDLE_STATE">
            <summary>
             Handle is in an invalid state.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_CONFIGURATION">
            <summary>
             The configuration data for this product is corrupt.  Contact your support personnel.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INDEX_ABSENT">
            <summary>
             Component qualifier not present.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INSTALL_SOURCE_ABSENT">
            <summary>
             The installation source for this product is not available.  Verify that the source exists and that you can access it.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INSTALL_PACKAGE_VERSION">
            <summary>
             This installation package cannot be installed by the Windows Installer service.  You must install a Windows service pack that contains a newer version of the Windows Installer service.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_PRODUCT_UNINSTALLED">
            <summary>
             Product is uninstalled.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_QUERY_SYNTAX">
            <summary>
             SQL query syntax invalid or unsupported.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_FIELD">
            <summary>
             Record field does not exist.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DEVICE_REMOVED">
            <summary>
             The device has been removed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INSTALL_ALREADY_RUNNING">
            <summary>
             Another installation is already in progress.  Complete that installation before proceeding with this install.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INSTALL_PACKAGE_OPEN_FAILED">
            <summary>
             This installation package could not be opened.  Verify that the package exists and that you can access it, or contact the application vendor to verify that this is a valid Windows Installer package.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INSTALL_PACKAGE_INVALID">
            <summary>
             This installation package could not be opened.  Contact the application vendor to verify that this is a valid Windows Installer package.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INSTALL_UI_FAILURE">
            <summary>
             There was an error starting the Windows Installer service user interface.  Contact your support personnel.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INSTALL_LOG_FAILURE">
            <summary>
             Error opening installation log file. Verify that the specified log file location exists and that you can write to it.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INSTALL_LANGUAGE_UNSUPPORTED">
            <summary>
             The language of this installation package is not supported by your system.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INSTALL_TRANSFORM_FAILURE">
            <summary>
             Error applying transforms.  Verify that the specified transform paths are valid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INSTALL_PACKAGE_REJECTED">
            <summary>
             This installation is forbidden by system policy.  Contact your system administrator.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_FUNCTION_NOT_CALLED">
            <summary>
             Function could not be executed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_FUNCTION_FAILED">
            <summary>
             Function failed during execution.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_TABLE">
            <summary>
             Invalid or unknown table specified.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DATATYPE_MISMATCH">
            <summary>
             Data supplied is of wrong type.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_UNSUPPORTED_TYPE">
            <summary>
             Data of this type is not supported.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CREATE_FAILED">
            <summary>
             The Windows Installer service failed to start.  Contact your support personnel.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INSTALL_TEMP_UNWRITABLE">
            <summary>
             The Temp folder is on a drive that is full or is inaccessible. Free up space on the drive or verify that you have write permission on the Temp folder.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INSTALL_PLATFORM_UNSUPPORTED">
            <summary>
             This installation package is not supported by this processor type. Contact your product vendor.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INSTALL_NOTUSED">
            <summary>
             Component not used on this computer.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_PATCH_PACKAGE_OPEN_FAILED">
            <summary>
             This patch package could not be opened.  Verify that the patch package exists and that you can access it, or contact the application vendor to verify that this is a valid Windows Installer patch package.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_PATCH_PACKAGE_INVALID">
            <summary>
             This patch package could not be opened.  Contact the application vendor to verify that this is a valid Windows Installer patch package.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_PATCH_PACKAGE_UNSUPPORTED">
            <summary>
             This patch package cannot be processed by the Windows Installer service.  You must install a Windows service pack that contains a newer version of the Windows Installer service.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_PRODUCT_VERSION">
            <summary>
             Another version of this product is already installed.  Installation of this version cannot continue.  To configure or remove the existing version of this product, use Add/Remove Programs on the Control Panel.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_COMMAND_LINE">
            <summary>
             Invalid command line argument.  Consult the Windows Installer SDK for detailed command line help.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INSTALL_REMOTE_DISALLOWED">
            <summary>
             Only administrators have permission to add, remove, or configure server software during a Terminal services remote session. If you want to install or configure software on the server, contact your network administrator.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SUCCESS_REBOOT_INITIATED">
            <summary>
             The requested operation completed successfully.  The system will be restarted so the changes can take effect.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_PATCH_TARGET_NOT_FOUND">
            <summary>
             The upgrade patch cannot be installed by the Windows Installer service because the program to be upgraded may be missing, or the upgrade patch may update a different version of the program. Verify that the program to be upgraded exists on your computer an
             d that you have the correct upgrade patch.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_PATCH_PACKAGE_REJECTED">
            <summary>
             The patch package is not permitted by software restriction policy.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INSTALL_TRANSFORM_REJECTED">
            <summary>
             One or more customizations are not permitted by software restriction policy.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INSTALL_REMOTE_PROHIBITED">
            <summary>
             The Windows Installer does not permit installation from a Remote Desktop Connection.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_INVALID_STRING_BINDING">
            <summary>
             The string binding is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_WRONG_KIND_OF_BINDING">
            <summary>
             The binding handle is not the correct type.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_INVALID_BINDING">
            <summary>
             The binding handle is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_PROTSEQ_NOT_SUPPORTED">
            <summary>
             The RPC protocol sequence is not supported.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_INVALID_RPC_PROTSEQ">
            <summary>
             The RPC protocol sequence is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_INVALID_STRING_UUID">
            <summary>
             The string universal unique identifier (UUID) is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_INVALID_ENDPOINT_FORMAT">
            <summary>
             The endpoint format is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_INVALID_NET_ADDR">
            <summary>
             The network address is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_NO_ENDPOINT_FOUND">
            <summary>
             No endpoint was found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_INVALID_TIMEOUT">
            <summary>
             The timeout value is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_OBJECT_NOT_FOUND">
            <summary>
             The object universal unique identifier (UUID) was not found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_ALREADY_REGISTERED">
            <summary>
             The object universal unique identifier (UUID) has already been registered.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_TYPE_ALREADY_REGISTERED">
            <summary>
             The type universal unique identifier (UUID) has already been registered.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_ALREADY_LISTENING">
            <summary>
             The RPC server is already listening.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_NO_PROTSEQS_REGISTERED">
            <summary>
             No protocol sequences have been registered.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_NOT_LISTENING">
            <summary>
             The RPC server is not listening.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_UNKNOWN_MGR_TYPE">
            <summary>
             The manager type is unknown.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_UNKNOWN_IF">
            <summary>
             The interface is unknown.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_NO_BINDINGS">
            <summary>
             There are no bindings.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_NO_PROTSEQS">
            <summary>
             There are no protocol sequences.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_CANT_CREATE_ENDPOINT">
            <summary>
             The endpoint cannot be created.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_OUT_OF_RESOURCES">
            <summary>
             Not enough resources are available to complete this operation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_SERVER_UNAVAILABLE">
            <summary>
             The RPC server is unavailable.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_SERVER_TOO_BUSY">
            <summary>
             The RPC server is too busy to complete this operation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_INVALID_NETWORK_OPTIONS">
            <summary>
             The network options are invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_NO_CALL_ACTIVE">
            <summary>
             There are no remote procedure calls active on this thread.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_CALL_FAILED">
            <summary>
             The remote procedure call failed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_CALL_FAILED_DNE">
            <summary>
             The remote procedure call failed and did not execute.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_PROTOCOL_ERROR">
            <summary>
             A remote procedure call (RPC) protocol error occurred.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_UNSUPPORTED_TRANS_SYN">
            <summary>
             The transfer syntax is not supported by the RPC server.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_UNSUPPORTED_TYPE">
            <summary>
             The universal unique identifier (UUID) type is not supported.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_INVALID_TAG">
            <summary>
             The tag is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_INVALID_BOUND">
            <summary>
             The array bounds are invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_NO_ENTRY_NAME">
            <summary>
             The binding does not contain an entry name.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_INVALID_NAME_SYNTAX">
            <summary>
             The name syntax is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_UNSUPPORTED_NAME_SYNTAX">
            <summary>
             The name syntax is not supported.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_UUID_NO_ADDRESS">
            <summary>
             No network address is available to use to construct a universal unique identifier (UUID).
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_DUPLICATE_ENDPOINT">
            <summary>
             The endpoint is a duplicate.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_UNKNOWN_AUTHN_TYPE">
            <summary>
             The authentication type is unknown.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_MAX_CALLS_TOO_SMALL">
            <summary>
             The maximum number of calls is too small.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_STRING_TOO_LONG">
            <summary>
             The string is too long.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_PROTSEQ_NOT_FOUND">
            <summary>
             The RPC protocol sequence was not found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_PROCNUM_OUT_OF_RANGE">
            <summary>
             The procedure number is out of range.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_BINDING_HAS_NO_AUTH">
            <summary>
             The binding does not contain any authentication information.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_UNKNOWN_AUTHN_SERVICE">
            <summary>
             The authentication service is unknown.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_UNKNOWN_AUTHN_LEVEL">
            <summary>
             The authentication level is unknown.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_INVALID_AUTH_IDENTITY">
            <summary>
             The security context is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_UNKNOWN_AUTHZ_SERVICE">
            <summary>
             The authorization service is unknown.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.EPT_S_INVALID_ENTRY">
            <summary>
             The entry is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.EPT_S_CANT_PERFORM_OP">
            <summary>
             The server endpoint cannot perform the operation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.EPT_S_NOT_REGISTERED">
            <summary>
             There are no more endpoints available from the endpoint mapper.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_NOTHING_TO_EXPORT">
            <summary>
             No interfaces have been exported.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_INCOMPLETE_NAME">
            <summary>
             The entry name is incomplete.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_INVALID_VERS_OPTION">
            <summary>
             The version option is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_NO_MORE_MEMBERS">
            <summary>
             There are no more members.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_NOT_ALL_OBJS_UNEXPORTED">
            <summary>
             There is nothing to unexport.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_INTERFACE_NOT_FOUND">
            <summary>
             The interface was not found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_ENTRY_ALREADY_EXISTS">
            <summary>
             The entry already exists.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_ENTRY_NOT_FOUND">
            <summary>
             The entry is not found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_NAME_SERVICE_UNAVAILABLE">
            <summary>
             The name service is unavailable.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_INVALID_NAF_ID">
            <summary>
             The network address family is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_CANNOT_SUPPORT">
            <summary>
             The requested operation is not supported.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_NO_CONTEXT_AVAILABLE">
            <summary>
             No security context is available to allow impersonation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_INTERNAL_ERROR">
            <summary>
             An internal error occurred in a remote procedure call (RPC).
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_ZERO_DIVIDE">
            <summary>
             The RPC server attempted an integer division by zero.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_ADDRESS_ERROR">
            <summary>
             An addressing error occurred in the RPC server.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_FP_DIV_ZERO">
            <summary>
             A floating-point operation at the RPC server caused a division by zero.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_FP_UNDERFLOW">
            <summary>
             A floating-point underflow occurred at the RPC server.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_FP_OVERFLOW">
            <summary>
             A floating-point overflow occurred at the RPC server.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_X_NO_MORE_ENTRIES">
            <summary>
             The list of RPC servers available for the binding of auto handles has been exhausted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_X_SS_CHAR_TRANS_OPEN_FAIL">
            <summary>
             Unable to open the character translation table file.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_X_SS_CHAR_TRANS_SHORT_FILE">
            <summary>
             The file containing the character translation table has fewer than 512 bytes.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_X_SS_IN_NULL_CONTEXT">
            <summary>
             A null context handle was passed from the client to the host during a remote procedure call.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_X_SS_CONTEXT_DAMAGED">
            <summary>
             The context handle changed during a remote procedure call.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_X_SS_HANDLES_MISMATCH">
            <summary>
             The binding handles passed to a remote procedure call do not match.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_X_SS_CANNOT_GET_CALL_HANDLE">
            <summary>
             The stub is unable to get the remote procedure call handle.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_X_NULL_REF_POINTER">
            <summary>
             A null reference pointer was passed to the stub.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_X_ENUM_VALUE_OUT_OF_RANGE">
            <summary>
             The enumeration value is out of range.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_X_BYTE_COUNT_TOO_SMALL">
            <summary>
             The byte count is too small.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_X_BAD_STUB_DATA">
            <summary>
             The stub received bad data.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_USER_BUFFER">
            <summary>
             The supplied user buffer is not valid for the requested operation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_UNRECOGNIZED_MEDIA">
            <summary>
             The disk media is not recognized. It may not be formatted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_TRUST_LSA_SECRET">
            <summary>
             The workstation does not have a trust secret.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_TRUST_SAM_ACCOUNT">
            <summary>
             The security database on the server does not have a computer account for this workstation trust relationship.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_TRUSTED_DOMAIN_FAILURE">
            <summary>
             The trust relationship between the primary domain and the trusted domain failed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_TRUSTED_RELATIONSHIP_FAILURE">
            <summary>
             The trust relationship between this workstation and the primary domain failed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_TRUST_FAILURE">
            <summary>
             The network logon failed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_CALL_IN_PROGRESS">
            <summary>
             A remote procedure call is already in progress for this thread.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NETLOGON_NOT_STARTED">
            <summary>
             An attempt was made to logon, but the network logon service was not started.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_ACCOUNT_EXPIRED">
            <summary>
             The user's account has expired.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_REDIRECTOR_HAS_OPEN_HANDLES">
            <summary>
             The redirector is in use and cannot be unloaded.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_PRINTER_DRIVER_ALREADY_INSTALLED">
            <summary>
             The specified printer driver is already installed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_UNKNOWN_PORT">
            <summary>
             The specified port is unknown.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_UNKNOWN_PRINTER_DRIVER">
            <summary>
             The printer driver is unknown.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_UNKNOWN_PRINTPROCESSOR">
            <summary>
             The print processor is unknown.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_SEPARATOR_FILE">
            <summary>
             The specified separator file is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_PRIORITY">
            <summary>
             The specified priority is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_PRINTER_NAME">
            <summary>
             The printer name is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_PRINTER_ALREADY_EXISTS">
            <summary>
             The printer already exists.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_PRINTER_COMMAND">
            <summary>
             The printer command is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_DATATYPE">
            <summary>
             The specified datatype is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_ENVIRONMENT">
            <summary>
             The environment specified is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_NO_MORE_BINDINGS">
            <summary>
             There are no more bindings.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NOLOGON_INTERDOMAIN_TRUST_ACCOUNT">
            <summary>
             The account used is an interdomain trust account. Use your global user account or local user account to access this server.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NOLOGON_WORKSTATION_TRUST_ACCOUNT">
            <summary>
             The account used is a computer account. Use your global user account or local user account to access this server.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NOLOGON_SERVER_TRUST_ACCOUNT">
            <summary>
             The account used is a server trust account. Use your global user account or local user account to access this server.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DOMAIN_TRUST_INCONSISTENT">
            <summary>
             The name or security ID (SID) of the domain specified is inconsistent with the trust information for that domain.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SERVER_HAS_OPEN_HANDLES">
            <summary>
             The server is in use and cannot be unloaded.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_RESOURCE_DATA_NOT_FOUND">
            <summary>
             The specified image file did not contain a resource section.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_RESOURCE_TYPE_NOT_FOUND">
            <summary>
             The specified resource type cannot be found in the image file.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_RESOURCE_NAME_NOT_FOUND">
            <summary>
             The specified resource name cannot be found in the image file.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_RESOURCE_LANG_NOT_FOUND">
            <summary>
             The specified resource language ID cannot be found in the image file.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_ENOUGH_QUOTA">
            <summary>
             Not enough quota is available to process this command.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_NO_INTERFACES">
            <summary>
             No interfaces have been registered.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_CALL_CANCELLED">
            <summary>
             The remote procedure call was cancelled.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_BINDING_INCOMPLETE">
            <summary>
             The binding handle does not contain all required information.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_COMM_FAILURE">
            <summary>
             A communications failure occurred during a remote procedure call.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_UNSUPPORTED_AUTHN_LEVEL">
            <summary>
             The requested authentication level is not supported.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_NO_PRINC_NAME">
            <summary>
             No principal name registered.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_NOT_RPC_ERROR">
            <summary>
             The error specified is not a valid Windows RPC error code.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_UUID_LOCAL_ONLY">
            <summary>
             A UUID that is valid only on this computer has been allocated.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_SEC_PKG_ERROR">
            <summary>
             A security package specific error occurred.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_NOT_CANCELLED">
            <summary>
             Thread is not canceled.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_X_INVALID_ES_ACTION">
            <summary>
             Invalid operation on the encoding/decoding handle.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_X_WRONG_ES_VERSION">
            <summary>
             Incompatible version of the serializing package.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_X_WRONG_STUB_VERSION">
            <summary>
             Incompatible version of the RPC stub.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_X_INVALID_PIPE_OBJECT">
            <summary>
             The RPC pipe object is invalid or corrupted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_X_WRONG_PIPE_ORDER">
            <summary>
             An invalid operation was attempted on an RPC pipe object.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_X_WRONG_PIPE_VERSION">
            <summary>
             Unsupported RPC pipe version.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_GROUP_MEMBER_NOT_FOUND">
            <summary>
             The group member was not found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.EPT_S_CANT_CREATE">
            <summary>
             The endpoint mapper database entry could not be created.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_INVALID_OBJECT">
            <summary>
             The object universal unique identifier (UUID) is the nil UUID.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_TIME">
            <summary>
             The specified time is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_FORM_NAME">
            <summary>
             The specified form name is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_FORM_SIZE">
            <summary>
             The specified form size is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_ALREADY_WAITING">
            <summary>
             The specified printer handle is already being waited on
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_PRINTER_DELETED">
            <summary>
             The specified printer has been deleted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_PRINTER_STATE">
            <summary>
             The state of the printer is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_PASSWORD_MUST_CHANGE">
            <summary>
             The user's password must be changed before logging on the first time.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DOMAIN_CONTROLLER_NOT_FOUND">
            <summary>
             Could not find the domain controller for this domain.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_ACCOUNT_LOCKED_OUT">
            <summary>
             The referenced account is currently locked out and may not be logged on to.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.OR_INVALID_OXID">
            <summary>
             The object exporter specified was not found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.OR_INVALID_OID">
            <summary>
             The object specified was not found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.OR_INVALID_SET">
            <summary>
             The object resolver set specified was not found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_SEND_INCOMPLETE">
            <summary>
             Some data remains to be sent in the request buffer.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_INVALID_ASYNC_HANDLE">
            <summary>
             Invalid asynchronous remote procedure call handle.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_INVALID_ASYNC_CALL">
            <summary>
             Invalid asynchronous RPC call handle for this operation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_X_PIPE_CLOSED">
            <summary>
             The RPC pipe object has already been closed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_X_PIPE_DISCIPLINE_ERROR">
            <summary>
             The RPC call completed before all pipes were processed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_X_PIPE_EMPTY">
            <summary>
             No more data is available from the RPC pipe.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_SITENAME">
            <summary>
             No site name is available for this machine.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CANT_ACCESS_FILE">
            <summary>
             The file cannot be accessed by the system.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CANT_RESOLVE_FILENAME">
            <summary>
             The name of the file cannot be resolved by the system.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_ENTRY_TYPE_MISMATCH">
            <summary>
             The entry is not of the expected type.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_NOT_ALL_OBJS_EXPORTED">
            <summary>
             Not all object UUIDs could be exported to the specified entry.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_INTERFACE_NOT_EXPORTED">
            <summary>
             Interface could not be exported to the specified entry.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_PROFILE_NOT_ADDED">
            <summary>
             The specified profile entry could not be added.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_PRF_ELT_NOT_ADDED">
            <summary>
             The specified profile element could not be added.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_PRF_ELT_NOT_REMOVED">
            <summary>
             The specified profile element could not be removed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_GRP_ELT_NOT_ADDED">
            <summary>
             The group element could not be added.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.RPC_S_GRP_ELT_NOT_REMOVED">
            <summary>
             The group element could not be removed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_KM_DRIVER_BLOCKED">
            <summary>
             The printer driver is not compatible with a policy enabled on your computer that blocks NT 4.0 drivers.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CONTEXT_EXPIRED">
            <summary>
             The context has expired and can no longer be used.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_PER_USER_TRUST_QUOTA_EXCEEDED">
            <summary>
             The current user's delegated trust creation quota has been exceeded.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_ALL_USER_TRUST_QUOTA_EXCEEDED">
            <summary>
             The total delegated trust creation quota has been exceeded.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_USER_DELETE_TRUST_QUOTA_EXCEEDED">
            <summary>
             The current user's delegated trust deletion quota has been exceeded.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_AUTHENTICATION_FIREWALL_FAILED">
            <summary>
             Logon Failure: The machine you are logging onto is protected by an authentication firewall.  The specified account is not allowed to authenticate to the machine.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_REMOTE_PRINT_CONNECTIONS_BLOCKED">
            <summary>
             Remote connections to the Print Spooler are blocked by a policy set on your machine.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_PIXEL_FORMAT">
            <summary>
             The pixel format is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_DRIVER">
            <summary>
             The specified driver is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_WINDOW_STYLE">
            <summary>
             The window style or class attribute is invalid for this operation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_METAFILE_NOT_SUPPORTED">
            <summary>
             The requested metafile operation is not supported.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_TRANSFORM_NOT_SUPPORTED">
            <summary>
             The requested transformation operation is not supported.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLIPPING_NOT_SUPPORTED">
            <summary>
             The requested clipping operation is not supported.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_CMM">
            <summary>
             The specified color management module is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_PROFILE">
            <summary>
             The specified color profile is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_TAG_NOT_FOUND">
            <summary>
             The specified tag was not found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_TAG_NOT_PRESENT">
            <summary>
             A required tag is not present.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DUPLICATE_TAG">
            <summary>
             The specified tag is already present.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_PROFILE_NOT_ASSOCIATED_WITH_DEVICE">
            <summary>
             The specified color profile is not associated with any device.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_PROFILE_NOT_FOUND">
            <summary>
             The specified color profile was not found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_COLORSPACE">
            <summary>
             The specified color space is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_ICM_NOT_ENABLED">
            <summary>
             Image Color Management is not enabled.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DELETING_ICM_XFORM">
            <summary>
             There was an error while deleting the color transform.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_TRANSFORM">
            <summary>
             The specified color transform is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_COLORSPACE_MISMATCH">
            <summary>
             The specified transform does not match the bitmap's color space.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_COLORINDEX">
            <summary>
             The specified named color index is not present in the profile.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CONNECTED_OTHER_PASSWORD">
            <summary>
             The network connection was made successfully, but the user had to be prompted for a password other than the one originally specified.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CONNECTED_OTHER_PASSWORD_DEFAULT">
            <summary>
             The network connection was made successfully using default credentials.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_USERNAME">
            <summary>
             The specified username is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_CONNECTED">
            <summary>
             This network connection does not exist.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_OPEN_FILES">
            <summary>
             This network connection has files open or requests pending.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_ACTIVE_CONNECTIONS">
            <summary>
             Active connections still exist.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DEVICE_IN_USE">
            <summary>
             The device is in use by an active process and cannot be disconnected.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_UNKNOWN_PRINT_MONITOR">
            <summary>
             The specified print monitor is unknown.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_PRINTER_DRIVER_IN_USE">
            <summary>
             The specified printer driver is currently in use.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SPOOL_FILE_NOT_FOUND">
            <summary>
             The spool file was not found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SPL_NO_STARTDOC">
            <summary>
             A StartDocPrinter call was not issued.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SPL_NO_ADDJOB">
            <summary>
             An AddJob call was not issued.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_PRINT_PROCESSOR_ALREADY_INSTALLED">
            <summary>
             The specified print processor has already been installed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_PRINT_MONITOR_ALREADY_INSTALLED">
            <summary>
             The specified print monitor has already been installed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_PRINT_MONITOR">
            <summary>
             The specified print monitor does not have the required functions.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_PRINT_MONITOR_IN_USE">
            <summary>
             The specified print monitor is currently in use.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_PRINTER_HAS_JOBS_QUEUED">
            <summary>
             The requested operation is not allowed when there are jobs queued to the printer.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SUCCESS_REBOOT_REQUIRED">
            <summary>
             The requested operation is successful. Changes will not be effective until the system is rebooted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SUCCESS_RESTART_REQUIRED">
            <summary>
             The requested operation is successful. Changes will not be effective until the service is restarted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_PRINTER_NOT_FOUND">
            <summary>
             No printers were found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_PRINTER_DRIVER_WARNED">
            <summary>
             The printer driver is known to be unreliable.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_PRINTER_DRIVER_BLOCKED">
            <summary>
             The printer driver is known to harm the system.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_WINS_INTERNAL">
            <summary>
             WINS encountered an error while processing the command.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CAN_NOT_DEL_LOCAL_WINS">
            <summary>
             The local WINS cannot be deleted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_STATIC_INIT">
            <summary>
             The importation from the file failed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INC_BACKUP">
            <summary>
             The backup failed. Was a full backup done before?
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_FULL_BACKUP">
            <summary>
             The backup failed. Check the directory to which you are backing the database.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_REC_NON_EXISTENT">
            <summary>
             The name does not exist in the WINS database.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_RPL_NOT_ALLOWED">
            <summary>
             Replication with a nonconfigured partner is not allowed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DHCP_ADDRESS_CONFLICT">
            <summary>
             The DHCP client has obtained an IP address that is already in use on the network. The local interface will be disabled until the DHCP client can obtain a new address.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_WMI_GUID_NOT_FOUND">
            <summary>
             The GUID passed was not recognized as valid by a WMI data provider.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_WMI_INSTANCE_NOT_FOUND">
            <summary>
             The instance name passed was not recognized as valid by a WMI data provider.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_WMI_ITEMID_NOT_FOUND">
            <summary>
             The data item ID passed was not recognized as valid by a WMI data provider.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_WMI_TRY_AGAIN">
            <summary>
             The WMI request could not be completed and should be retried.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_WMI_DP_NOT_FOUND">
            <summary>
             The WMI data provider could not be located.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_WMI_UNRESOLVED_INSTANCE_REF">
            <summary>
             The WMI data provider references an instance set that has not been registered.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_WMI_ALREADY_ENABLED">
            <summary>
             The WMI data block or event notification has already been enabled.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_WMI_GUID_DISCONNECTED">
            <summary>
             The WMI data block is no longer available.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_WMI_SERVER_UNAVAILABLE">
            <summary>
             The WMI data service is not available.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_WMI_DP_FAILED">
            <summary>
             The WMI data provider failed to carry out the request.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_WMI_INVALID_MOF">
            <summary>
             The WMI MOF information is not valid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_WMI_INVALID_REGINFO">
            <summary>
             The WMI registration information is not valid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_WMI_ALREADY_DISABLED">
            <summary>
             The WMI data block or event notification has already been disabled.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_WMI_READ_ONLY">
            <summary>
             The WMI data item or data block is read only.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_WMI_SET_FAILURE">
            <summary>
             The WMI data item or data block could not be changed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_MEDIA">
            <summary>
             The media identifier does not represent a valid medium.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_LIBRARY">
            <summary>
             The library identifier does not represent a valid library.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_MEDIA_POOL">
            <summary>
             The media pool identifier does not represent a valid media pool.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DRIVE_MEDIA_MISMATCH">
            <summary>
             The drive and medium are not compatible or exist in different libraries.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_MEDIA_OFFLINE">
            <summary>
             The medium currently exists in an offline library and must be online to perform this operation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_LIBRARY_OFFLINE">
            <summary>
             The operation cannot be performed on an offline library.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_EMPTY">
            <summary>
             The library, drive, or media pool is empty.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_EMPTY">
            <summary>
             The library, drive, or media pool must be empty to perform this operation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_MEDIA_UNAVAILABLE">
            <summary>
             No media is currently available in this media pool or library.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_RESOURCE_DISABLED">
            <summary>
             A resource required for this operation is disabled.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_CLEANER">
            <summary>
             The media identifier does not represent a valid cleaner.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_UNABLE_TO_CLEAN">
            <summary>
             The drive cannot be cleaned or does not support cleaning.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_OBJECT_NOT_FOUND">
            <summary>
             The object identifier does not represent a valid object.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DATABASE_FAILURE">
            <summary>
             Unable to read from or write to the database.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DATABASE_FULL">
            <summary>
             The database is full.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_MEDIA_INCOMPATIBLE">
            <summary>
             The medium is not compatible with the device or media pool.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_RESOURCE_NOT_PRESENT">
            <summary>
             The resource required for this operation does not exist.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_OPERATION">
            <summary>
             The operation identifier is not valid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_MEDIA_NOT_AVAILABLE">
            <summary>
             The media is not mounted or ready for use.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DEVICE_NOT_AVAILABLE">
            <summary>
             The device is not ready for use.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_REQUEST_REFUSED">
            <summary>
             The operator or administrator has refused the request.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_DRIVE_OBJECT">
            <summary>
             The drive identifier does not represent a valid drive.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_LIBRARY_FULL">
            <summary>
             Library is full.  No slot is available for use.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_MEDIUM_NOT_ACCESSIBLE">
            <summary>
             The transport cannot access the medium.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_UNABLE_TO_LOAD_MEDIUM">
            <summary>
             Unable to load the medium into the drive.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_UNABLE_TO_INVENTORY_DRIVE">
            <summary>
             Unable to retrieve the drive status.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_UNABLE_TO_INVENTORY_SLOT">
            <summary>
             Unable to retrieve the slot status.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_UNABLE_TO_INVENTORY_TRANSPORT">
            <summary>
             Unable to retrieve status about the transport.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_TRANSPORT_FULL">
            <summary>
             Cannot use the transport because it is already in use.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CONTROLLING_IEPORT">
            <summary>
             Unable to open or close the inject/eject port.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_UNABLE_TO_EJECT_MOUNTED_MEDIA">
            <summary>
             Unable to eject the medium because it is in a drive.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLEANER_SLOT_SET">
            <summary>
             A cleaner slot is already reserved.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLEANER_SLOT_NOT_SET">
            <summary>
             A cleaner slot is not reserved.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLEANER_CARTRIDGE_SPENT">
            <summary>
             The cleaner cartridge has performed the maximum number of drive cleanings.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_UNEXPECTED_OMID">
            <summary>
             Unexpected on-medium identifier.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CANT_DELETE_LAST_ITEM">
            <summary>
             The last remaining item in this group or resource cannot be deleted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_MESSAGE_EXCEEDS_MAX_SIZE">
            <summary>
             The message provided exceeds the maximum size allowed for this parameter.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_VOLUME_CONTAINS_SYS_FILES">
            <summary>
             The volume contains system or paging files.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INDIGENOUS_TYPE">
            <summary>
             The media type cannot be removed from this library since at least one drive in the library reports it can support this media type.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_SUPPORTING_DRIVES">
            <summary>
             This offline media cannot be mounted on this system since no enabled drives are present which can be used.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLEANER_CARTRIDGE_INSTALLED">
            <summary>
             A cleaner cartridge is present in the tape library.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IEPORT_FULL">
            <summary>
             Cannot use the ieport because it is not empty.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_FILE_OFFLINE">
            <summary>
             The remote storage service was not able to recall the file.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_REMOTE_STORAGE_NOT_ACTIVE">
            <summary>
             The remote storage service is not operational at this time.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_REMOTE_STORAGE_MEDIA_ERROR">
            <summary>
             The remote storage service encountered a media error.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_A_REPARSE_POINT">
            <summary>
             The file or directory is not a reparse point.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_REPARSE_ATTRIBUTE_CONFLICT">
            <summary>
             The reparse point attribute cannot be set because it conflicts with an existing attribute.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_REPARSE_DATA">
            <summary>
             The data present in the reparse point buffer is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_REPARSE_TAG_INVALID">
            <summary>
             The tag present in the reparse point buffer is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_REPARSE_TAG_MISMATCH">
            <summary>
             There is a mismatch between the tag specified in the request and the tag present in the reparse point.
             
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_VOLUME_NOT_SIS_ENABLED">
            <summary>
             Single Instance Storage is not available on this volume.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DEPENDENT_RESOURCE_EXISTS">
            <summary>
             The cluster resource cannot be moved to another group because other resources are dependent on it.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DEPENDENCY_NOT_FOUND">
            <summary>
             The cluster resource dependency cannot be found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DEPENDENCY_ALREADY_EXISTS">
            <summary>
             The cluster resource cannot be made dependent on the specified resource because it is already dependent.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_RESOURCE_NOT_ONLINE">
            <summary>
             The cluster resource is not online.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_HOST_NODE_NOT_AVAILABLE">
            <summary>
             A cluster node is not available for this operation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_RESOURCE_NOT_AVAILABLE">
            <summary>
             The cluster resource is not available.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_RESOURCE_NOT_FOUND">
            <summary>
             The cluster resource could not be found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SHUTDOWN_CLUSTER">
            <summary>
             The cluster is being shut down.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CANT_EVICT_ACTIVE_NODE">
            <summary>
             A cluster node cannot be evicted from the cluster unless the node is down or it is the last node.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_OBJECT_ALREADY_EXISTS">
            <summary>
             The object already exists.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_OBJECT_IN_LIST">
            <summary>
             The object is already in the list.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_GROUP_NOT_AVAILABLE">
            <summary>
             The cluster group is not available for any new requests.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_GROUP_NOT_FOUND">
            <summary>
             The cluster group could not be found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_GROUP_NOT_ONLINE">
            <summary>
             The operation could not be completed because the cluster group is not online.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_HOST_NODE_NOT_RESOURCE_OWNER">
            <summary>
             The cluster node is not the owner of the resource.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_HOST_NODE_NOT_GROUP_OWNER">
            <summary>
             The cluster node is not the owner of the group.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_RESMON_CREATE_FAILED">
            <summary>
             The cluster resource could not be created in the specified resource monitor.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_RESMON_ONLINE_FAILED">
            <summary>
             The cluster resource could not be brought online by the resource monitor.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_RESOURCE_ONLINE">
            <summary>
             The operation could not be completed because the cluster resource is online.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_QUORUM_RESOURCE">
            <summary>
             The cluster resource could not be deleted or brought offline because it is the quorum resource.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_QUORUM_CAPABLE">
            <summary>
             The cluster could not make the specified resource a quorum resource because it is not capable of being a quorum resource.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_SHUTTING_DOWN">
            <summary>
             The cluster software is shutting down.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_STATE">
            <summary>
             The group or resource is not in the correct state to perform the requested operation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_RESOURCE_PROPERTIES_STORED">
            <summary>
             The properties were stored but not all changes will take effect until the next time the resource is brought online.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_QUORUM_CLASS">
            <summary>
             The cluster could not make the specified resource a quorum resource because it does not belong to a shared storage class.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CORE_RESOURCE">
            <summary>
             The cluster resource could not be deleted since it is a core resource.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_QUORUM_RESOURCE_ONLINE_FAILED">
            <summary>
             The quorum resource failed to come online.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_QUORUMLOG_OPEN_FAILED">
            <summary>
             The quorum log could not be created or mounted successfully.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTERLOG_CORRUPT">
            <summary>
             The cluster log is corrupt.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTERLOG_RECORD_EXCEEDS_MAXSIZE">
            <summary>
             The record could not be written to the cluster log since it exceeds the maximum size.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTERLOG_EXCEEDS_MAXSIZE">
            <summary>
             The cluster log exceeds its maximum size.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTERLOG_CHKPOINT_NOT_FOUND">
            <summary>
             No checkpoint record was found in the cluster log.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTERLOG_NOT_ENOUGH_SPACE">
            <summary>
             The minimum required disk space needed for logging is not available.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_QUORUM_OWNER_ALIVE">
            <summary>
             The cluster node failed to take control of the quorum resource because the resource is owned by another active node.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NETWORK_NOT_AVAILABLE">
            <summary>
             A cluster network is not available for this operation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NODE_NOT_AVAILABLE">
            <summary>
             A cluster node is not available for this operation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_ALL_NODES_NOT_AVAILABLE">
            <summary>
             All cluster nodes must be running to perform this operation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_RESOURCE_FAILED">
            <summary>
             A cluster resource failed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_INVALID_NODE">
            <summary>
             The cluster node is not valid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_NODE_EXISTS">
            <summary>
             The cluster node already exists.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_JOIN_IN_PROGRESS">
            <summary>
             A node is in the process of joining the cluster.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_NODE_NOT_FOUND">
            <summary>
             The cluster node was not found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_LOCAL_NODE_NOT_FOUND">
            <summary>
             The cluster local node information was not found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_NETWORK_EXISTS">
            <summary>
             The cluster network already exists.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_NETWORK_NOT_FOUND">
            <summary>
             The cluster network was not found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_NETINTERFACE_EXISTS">
            <summary>
             The cluster network interface already exists.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_NETINTERFACE_NOT_FOUND">
            <summary>
             The cluster network interface was not found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_INVALID_REQUEST">
            <summary>
             The cluster request is not valid for this object.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_INVALID_NETWORK_PROVIDER">
            <summary>
             The cluster network provider is not valid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_NODE_DOWN">
            <summary>
             The cluster node is down.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_NODE_UNREACHABLE">
            <summary>
             The cluster node is not reachable.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_NODE_NOT_MEMBER">
            <summary>
             The cluster node is not a member of the cluster.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_JOIN_NOT_IN_PROGRESS">
            <summary>
             A cluster join operation is not in progress.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_INVALID_NETWORK">
            <summary>
             The cluster network is not valid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_NODE_UP">
            <summary>
             The cluster node is up.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_IPADDR_IN_USE">
            <summary>
             The cluster IP address is already in use.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_NODE_NOT_PAUSED">
            <summary>
             The cluster node is not paused.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_NO_SECURITY_CONTEXT">
            <summary>
             No cluster security context is available.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_NETWORK_NOT_INTERNAL">
            <summary>
             The cluster network is not configured for internal cluster communication.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_NODE_ALREADY_UP">
            <summary>
             The cluster node is already up.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_NODE_ALREADY_DOWN">
            <summary>
             The cluster node is already down.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_NETWORK_ALREADY_ONLINE">
            <summary>
             The cluster network is already online.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_NETWORK_ALREADY_OFFLINE">
            <summary>
             The cluster network is already offline.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_NODE_ALREADY_MEMBER">
            <summary>
             The cluster node is already a member of the cluster.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_LAST_INTERNAL_NETWORK">
            <summary>
             The cluster network is the only one configured for internal cluster communication between two or more active cluster nodes. The internal communication capability cannot be removed from the network.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_NETWORK_HAS_DEPENDENTS">
            <summary>
             One or more cluster resources depend on the network to provide service to clients. The client access capability cannot be removed from the network.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_INVALID_OPERATION_ON_QUORUM">
            <summary>
             This operation cannot be performed on the cluster resource as it the quorum resource. You may not bring the quorum resource offline or modify its possible owners list.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DEPENDENCY_NOT_ALLOWED">
            <summary>
             The cluster quorum resource is not allowed to have any dependencies.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_NODE_PAUSED">
            <summary>
             The cluster node is paused.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NODE_CANT_HOST_RESOURCE">
            <summary>
             The cluster resource cannot be brought online. The owner node cannot run this resource.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_NODE_NOT_READY">
            <summary>
             The cluster node is not ready to perform the requested operation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_NODE_SHUTTING_DOWN">
            <summary>
             The cluster node is shutting down.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_JOIN_ABORTED">
            <summary>
             The cluster join operation was aborted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_INCOMPATIBLE_VERSIONS">
            <summary>
             The cluster join operation failed due to incompatible software versions between the joining node and its sponsor.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_MAXNUM_OF_RESOURCES_EXCEEDED">
            <summary>
             This resource cannot be created because the cluster has reached the limit on the number of resources it can monitor.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_SYSTEM_CONFIG_CHANGED">
            <summary>
             The system configuration changed during the cluster join or form operation. The join or form operation was aborted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_RESOURCE_TYPE_NOT_FOUND">
            <summary>
             The specified resource type was not found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_RESTYPE_NOT_SUPPORTED">
            <summary>
             The specified node does not support a resource of this type.  This may be due to version inconsistencies or due to the absence of the resource DLL on this node.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_RESNAME_NOT_FOUND">
            <summary>
             The specified resource name is not supported by this resource DLL. This may be due to a bad (or changed) name supplied to the resource DLL.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_NO_RPC_PACKAGES_REGISTERED">
            <summary>
             No authentication package could be registered with the RPC server.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_OWNER_NOT_IN_PREFLIST">
            <summary>
             You cannot bring the group online because the owner of the group is not in the preferred list for the group. To change the owner node for the group, move the group.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_DATABASE_SEQMISMATCH">
            <summary>
             The join operation failed because the cluster database sequence number has changed or is incompatible with the locker node. This may happen during a join operation if the cluster database was changing during the join.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_RESMON_INVALID_STATE">
            <summary>
             The resource monitor will not allow the fail operation to be performed while the resource is in its current state. This may happen if the resource is in a pending state.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_GUM_NOT_LOCKER">
            <summary>
             A non locker code got a request to reserve the lock for making global updates.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_QUORUM_DISK_NOT_FOUND">
            <summary>
             The quorum disk could not be located by the cluster service.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DATABASE_BACKUP_CORRUPT">
            <summary>
             The backed up cluster database is possibly corrupt.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_NODE_ALREADY_HAS_DFS_ROOT">
            <summary>
             A DFS root already exists in this cluster node.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_RESOURCE_PROPERTY_UNCHANGEABLE">
            <summary>
             An attempt to modify a resource property failed because it conflicts with another existing property.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_MEMBERSHIP_INVALID_STATE">
            <summary>
             An operation was attempted that is incompatible with the current membership state of the node.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_QUORUMLOG_NOT_FOUND">
            <summary>
             The quorum resource does not contain the quorum log.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_MEMBERSHIP_HALT">
            <summary>
             The membership engine requested shutdown of the cluster service on this node.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_INSTANCE_ID_MISMATCH">
            <summary>
             The join operation failed because the cluster instance ID of the joining node does not match the cluster instance ID of the sponsor node.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_NETWORK_NOT_FOUND_FOR_IP">
            <summary>
             A matching network for the specified IP address could not be found. Please also specify a subnet mask and a cluster network.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_PROPERTY_DATA_TYPE_MISMATCH">
            <summary>
             The actual data type of the property did not match the expected data type of the property.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_EVICT_WITHOUT_CLEANUP">
            <summary>
             The cluster node was evicted from the cluster successfully, but the node was not cleaned up.  Extended status information explaining why the node was not cleaned up is available.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_PARAMETER_MISMATCH">
            <summary>
             Two or more parameter values specified for a resource's properties are in conflict.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NODE_CANNOT_BE_CLUSTERED">
            <summary>
             This computer cannot be made a member of a cluster.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_WRONG_OS_VERSION">
            <summary>
             This computer cannot be made a member of a cluster because it does not have the correct version of Windows installed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_CANT_CREATE_DUP_CLUSTER_NAME">
            <summary>
             A cluster cannot be created with the specified cluster name because that cluster name is already in use. Specify a different name for the cluster.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSCFG_ALREADY_COMMITTED">
            <summary>
             The cluster configuration action has already been committed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSCFG_ROLLBACK_FAILED">
            <summary>
             The cluster configuration action could not be rolled back.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSCFG_SYSTEM_DISK_DRIVE_LETTER_CONFLICT">
            <summary>
             The drive letter assigned to a system disk on one node conflicted with the drive letter assigned to a disk on another node.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_OLD_VERSION">
            <summary>
             One or more nodes in the cluster are running a version of Windows that does not support this operation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CLUSTER_MISMATCHED_COMPUTER_ACCT_NAME">
            <summary>
             The name of the corresponding computer account doesn't match the Network Name for this resource.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_ENCRYPTION_FAILED">
            <summary>
             The specified file could not be encrypted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DECRYPTION_FAILED">
            <summary>
             The specified file could not be decrypted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_FILE_ENCRYPTED">
            <summary>
             The specified file is encrypted and the user does not have the ability to decrypt it.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_RECOVERY_POLICY">
            <summary>
             There is no valid encryption recovery policy configured for this system.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_EFS">
            <summary>
             The required encryption driver is not loaded for this system.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_WRONG_EFS">
            <summary>
             The file was encrypted with a different encryption driver than is currently loaded.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_USER_KEYS">
            <summary>
             There are no EFS keys defined for the user.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_FILE_NOT_ENCRYPTED">
            <summary>
             The specified file is not encrypted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_EXPORT_FORMAT">
            <summary>
             The specified file is not in the defined EFS export format.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_FILE_READ_ONLY">
            <summary>
             The specified file is read only.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DIR_EFS_DISALLOWED">
            <summary>
             The directory has been disabled for encryption.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_EFS_SERVER_NOT_TRUSTED">
            <summary>
             The server is not trusted for remote encryption operation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_BAD_RECOVERY_POLICY">
            <summary>
             Recovery policy configured for this system contains invalid recovery certificate.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_EFS_ALG_BLOB_TOO_BIG">
            <summary>
             The encryption algorithm used on the source file needs a bigger key buffer than the one on the destination file.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_VOLUME_NOT_SUPPORT_EFS">
            <summary>
             The disk partition does not support file encryption.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_EFS_DISABLED">
            <summary>
             This machine is disabled for file encryption.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_EFS_VERSION_NOT_SUPPORT">
            <summary>
             A newer system is required to decrypt this encrypted file.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_BROWSER_SERVERS_FOUND">
            <summary>
             The list of servers for this workgroup is not currently available
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.SCHED_E_SERVICE_NOT_LOCALSYSTEM">
            <summary>
             The Task Scheduler service must be configured to run in the System account to function properly.  Individual tasks may be configured to run in other accounts.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_WINSTATION_NAME_INVALID">
            <summary>
             The specified session name is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_INVALID_PD">
            <summary>
             The specified protocol driver is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_PD_NOT_FOUND">
            <summary>
             The specified protocol driver was not found in the system path.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_WD_NOT_FOUND">
            <summary>
             The specified terminal connection driver was not found in the system path.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_CANNOT_MAKE_EVENTLOG_ENTRY">
            <summary>
             A registry key for event logging could not be created for this session.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_SERVICE_NAME_COLLISION">
            <summary>
             A service with the same name already exists on the system.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_CLOSE_PENDING">
            <summary>
             A close operation is pending on the session.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_NO_OUTBUF">
            <summary>
             There are no free output buffers available.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_MODEM_INF_NOT_FOUND">
            <summary>
             The MODEM.INF file was not found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_INVALID_MODEMNAME">
            <summary>
             The modem name was not found in MODEM.INF.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_MODEM_RESPONSE_ERROR">
            <summary>
             The modem did not accept the command sent to it. Verify that the configured modem name matches the attached modem.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_MODEM_RESPONSE_TIMEOUT">
            <summary>
             The modem did not respond to the command sent to it. Verify that the modem is properly cabled and powered on.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_MODEM_RESPONSE_NO_CARRIER">
            <summary>
             Carrier detect has failed or carrier has been dropped due to disconnect.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_MODEM_RESPONSE_NO_DIALTONE">
            <summary>
             Dial tone not detected within the required time. Verify that the phone cable is properly attached and functional.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_MODEM_RESPONSE_BUSY">
            <summary>
             Busy signal detected at remote site on callback.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_MODEM_RESPONSE_VOICE">
            <summary>
             Voice detected at remote site on callback.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_TD_ERROR">
            <summary>
             Transport driver error
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_WINSTATION_NOT_FOUND">
            <summary>
             The specified session cannot be found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_WINSTATION_ALREADY_EXISTS">
            <summary>
             The specified session name is already in use.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_WINSTATION_BUSY">
            <summary>
             The requested operation cannot be completed because the terminal connection is currently busy processing a connect, disconnect, reset, or delete operation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_BAD_VIDEO_MODE">
            <summary>
             An attempt has been made to connect to a session whose video mode is not supported by the current client.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_GRAPHICS_INVALID">
            <summary>
             The application attempted to enable DOS graphics mode.
             DOS graphics mode is not supported.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_LOGON_DISABLED">
            <summary>
             Your interactive logon privilege has been disabled.
             Please contact your administrator.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_NOT_CONSOLE">
            <summary>
             The requested operation can be performed only on the system console.
             This is most often the result of a driver or system DLL requiring direct console access.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_CLIENT_QUERY_TIMEOUT">
            <summary>
             The client failed to respond to the server connect message.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_CONSOLE_DISCONNECT">
            <summary>
             Disconnecting the console session is not supported.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_CONSOLE_CONNECT">
            <summary>
             Reconnecting a disconnected session to the console is not supported.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_SHADOW_DENIED">
            <summary>
             The request to control another session remotely was denied.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_WINSTATION_ACCESS_DENIED">
            <summary>
             The requested session access is denied.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_INVALID_WD">
            <summary>
             The specified terminal connection driver is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_SHADOW_INVALID">
            <summary>
             The requested session cannot be controlled remotely.
             This may be because the session is disconnected or does not currently have a user logged on.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_SHADOW_DISABLED">
            <summary>
             The requested session is not configured to allow remote control.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_CLIENT_LICENSE_IN_USE">
            <summary>
             Your request to connect to this Terminal Server has been rejected. Your Terminal Server client license number is currently being used by another user.
             Please call your system administrator to obtain a unique license number.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_CLIENT_LICENSE_NOT_SET">
            <summary>
             Your request to connect to this Terminal Server has been rejected. Your Terminal Server client license number has not been entered for this copy of the Terminal Server client.
             Please contact your system administrator.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_LICENSE_NOT_AVAILABLE">
            <summary>
             The system has reached its licensed logon limit.
             Please try again later.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_LICENSE_CLIENT_INVALID">
            <summary>
             The client you are using is not licensed to use this system.  Your logon request is denied.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_LICENSE_EXPIRED">
            <summary>
             The system license has expired.  Your logon request is denied.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_SHADOW_NOT_RUNNING">
            <summary>
             Remote control could not be terminated because the specified session is not currently being remotely controlled.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_CTX_SHADOW_ENDED_BY_MODE_CHANGE">
            <summary>
             The remote control of the console was terminated because the display mode was changed. Changing the display mode in a remote control session is not supported.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_ACTIVATION_COUNT_EXCEEDED">
            <summary>
             Activation has already been reset the maximum number of times for this installation. Your activation timer will not be cleared.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.FRS_ERR_INVALID_API_SEQUENCE">
            <summary>
             The file replication service API was called incorrectly.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.FRS_ERR_STARTING_SERVICE">
            <summary>
             The file replication service cannot be started.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.FRS_ERR_STOPPING_SERVICE">
            <summary>
             The file replication service cannot be stopped.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.FRS_ERR_INTERNAL_API">
            <summary>
             The file replication service API terminated the request.
             The event log may have more information.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.FRS_ERR_INTERNAL">
            <summary>
             The file replication service terminated the request.
             The event log may have more information.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.FRS_ERR_SERVICE_COMM">
            <summary>
             The file replication service cannot be contacted.
             The event log may have more information.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.FRS_ERR_INSUFFICIENT_PRIV">
            <summary>
             The file replication service cannot satisfy the request because the user has insufficient privileges.
             The event log may have more information.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.FRS_ERR_AUTHENTICATION">
            <summary>
             The file replication service cannot satisfy the request because authenticated RPC is not available.
             The event log may have more information.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.FRS_ERR_PARENT_INSUFFICIENT_PRIV">
            <summary>
             The file replication service cannot satisfy the request because the user has insufficient privileges on the domain controller.
             The event log may have more information.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.FRS_ERR_PARENT_AUTHENTICATION">
            <summary>
             The file replication service cannot satisfy the request because authenticated RPC is not available on the domain controller.
             The event log may have more information.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.FRS_ERR_CHILD_TO_PARENT_COMM">
            <summary>
             The file replication service cannot communicate with the file replication service on the domain controller.
             The event log may have more information.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.FRS_ERR_PARENT_TO_CHILD_COMM">
            <summary>
             The file replication service on the domain controller cannot communicate with the file replication service on this computer.
             The event log may have more information.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.FRS_ERR_SYSVOL_POPULATE">
            <summary>
             The file replication service cannot populate the system volume because of an internal error.
             The event log may have more information.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.FRS_ERR_SYSVOL_POPULATE_TIMEOUT">
            <summary>
             The file replication service cannot populate the system volume because of an internal timeout.
             The event log may have more information.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.FRS_ERR_SYSVOL_IS_BUSY">
            <summary>
             The file replication service cannot process the request. The system volume is busy with a previous request.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.FRS_ERR_SYSVOL_DEMOTE">
            <summary>
             The file replication service cannot stop replicating the system volume because of an internal error.
             The event log may have more information.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.FRS_ERR_INVALID_SERVICE_PARAMETER">
            <summary>
             The file replication service detected an invalid parameter.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NOT_INSTALLED">
            <summary>
             An error occurred while installing the directory service. For more information, see the event log.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_MEMBERSHIP_EVALUATED_LOCALLY">
            <summary>
             The directory service evaluated group memberships locally.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NO_ATTRIBUTE_OR_VALUE">
            <summary>
             The specified directory service attribute or value does not exist.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_INVALID_ATTRIBUTE_SYNTAX">
            <summary>
             The attribute syntax specified to the directory service is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_ATTRIBUTE_TYPE_UNDEFINED">
            <summary>
             The attribute type specified to the directory service is not defined.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_ATTRIBUTE_OR_VALUE_EXISTS">
            <summary>
             The specified directory service attribute or value already exists.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_BUSY">
            <summary>
             The directory service is busy.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_UNAVAILABLE">
            <summary>
             The directory service is unavailable.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NO_RIDS_ALLOCATED">
            <summary>
             The directory service was unable to allocate a relative identifier.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NO_MORE_RIDS">
            <summary>
             The directory service has exhausted the pool of relative identifiers.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_INCORRECT_ROLE_OWNER">
            <summary>
             The requested operation could not be performed because the directory service is not the master for that type of operation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_RIDMGR_INIT_ERROR">
            <summary>
             The directory service was unable to initialize the subsystem that allocates relative identifiers.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_OBJ_CLASS_VIOLATION">
            <summary>
             The requested operation did not satisfy one or more constraints associated with the class of the object.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_ON_NON_LEAF">
            <summary>
             The directory service can perform the requested operation only on a leaf object.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_ON_RDN">
            <summary>
             The directory service cannot perform the requested operation on the RDN attribute of an object.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_MOD_OBJ_CLASS">
            <summary>
             The directory service detected an attempt to modify the object class of an object.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CROSS_DOM_MOVE_ERROR">
            <summary>
             The requested cross-domain move operation could not be performed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_GC_NOT_AVAILABLE">
            <summary>
             Unable to contact the global catalog server.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SHARED_POLICY">
            <summary>
             The policy object is shared and can only be modified at the root.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_POLICY_OBJECT_NOT_FOUND">
            <summary>
             The policy object does not exist.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_POLICY_ONLY_IN_DS">
            <summary>
             The requested policy information is only in the directory service.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_PROMOTION_ACTIVE">
            <summary>
             A domain controller promotion is currently active.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NO_PROMOTION_ACTIVE">
            <summary>
             A domain controller promotion is not currently active
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_OPERATIONS_ERROR">
            <summary>
             An operations error occurred.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_PROTOCOL_ERROR">
            <summary>
             A protocol error occurred.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_TIMELIMIT_EXCEEDED">
            <summary>
             The time limit for this request was exceeded.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SIZELIMIT_EXCEEDED">
            <summary>
             The size limit for this request was exceeded.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_ADMIN_LIMIT_EXCEEDED">
            <summary>
             The administrative limit for this request was exceeded.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_COMPARE_FALSE">
            <summary>
             The compare response was false.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_COMPARE_TRUE">
            <summary>
             The compare response was true.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_AUTH_METHOD_NOT_SUPPORTED">
            <summary>
             The requested authentication method is not supported by the server.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_STRONG_AUTH_REQUIRED">
            <summary>
             A more secure authentication method is required for this server.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_INAPPROPRIATE_AUTH">
            <summary>
             Inappropriate authentication.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_AUTH_UNKNOWN">
            <summary>
             The authentication mechanism is unknown.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_REFERRAL">
            <summary>
             A referral was returned from the server.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_UNAVAILABLE_CRIT_EXTENSION">
            <summary>
             The server does not support the requested critical extension.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CONFIDENTIALITY_REQUIRED">
            <summary>
             This request requires a secure connection.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_INAPPROPRIATE_MATCHING">
            <summary>
             Inappropriate matching.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CONSTRAINT_VIOLATION">
            <summary>
             A constraint violation occurred.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NO_SUCH_OBJECT">
            <summary>
             There is no such object on the server.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_ALIAS_PROBLEM">
            <summary>
             There is an alias problem.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_INVALID_DN_SYNTAX">
            <summary>
             An invalid dn syntax has been specified.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_IS_LEAF">
            <summary>
             The object is a leaf object.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_ALIAS_DEREF_PROBLEM">
            <summary>
             There is an alias dereferencing problem.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_UNWILLING_TO_PERFORM">
            <summary>
             The server is unwilling to process the request.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_LOOP_DETECT">
            <summary>
             A loop has been detected.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NAMING_VIOLATION">
            <summary>
             There is a naming violation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_OBJECT_RESULTS_TOO_LARGE">
            <summary>
             The result set is too large.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_AFFECTS_MULTIPLE_DSAS">
            <summary>
             The operation affects multiple DSAs
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SERVER_DOWN">
            <summary>
             The server is not operational.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_LOCAL_ERROR">
            <summary>
             A local error has occurred.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_ENCODING_ERROR">
            <summary>
             An encoding error has occurred.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DECODING_ERROR">
            <summary>
             A decoding error has occurred.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_FILTER_UNKNOWN">
            <summary>
             The search filter cannot be recognized.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_PARAM_ERROR">
            <summary>
             One or more parameters are illegal.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NOT_SUPPORTED">
            <summary>
             The specified method is not supported.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NO_RESULTS_RETURNED">
            <summary>
             No results were returned.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CONTROL_NOT_FOUND">
            <summary>
             The specified control is not supported by the server.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CLIENT_LOOP">
            <summary>
             A referral loop was detected by the client.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_REFERRAL_LIMIT_EXCEEDED">
            <summary>
             The preset referral limit was exceeded.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SORT_CONTROL_MISSING">
            <summary>
             The search requires a SORT control.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_OFFSET_RANGE_ERROR">
            <summary>
             The search results exceed the offset range specified.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_ROOT_MUST_BE_NC">
            <summary>
             The root object must be the head of a naming context. The root object cannot have an instantiated parent.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_ADD_REPLICA_INHIBITED">
            <summary>
             The add replica operation cannot be performed. The naming context must be writeable in order to create the replica.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_ATT_NOT_DEF_IN_SCHEMA">
            <summary>
             A reference to an attribute that is not defined in the schema occurred.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_MAX_OBJ_SIZE_EXCEEDED">
            <summary>
             The maximum size of an object has been exceeded.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_OBJ_STRING_NAME_EXISTS">
            <summary>
             An attempt was made to add an object to the directory with a name that is already in use.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NO_RDN_DEFINED_IN_SCHEMA">
            <summary>
             An attempt was made to add an object of a class that does not have an RDN defined in the schema.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_RDN_DOESNT_MATCH_SCHEMA">
            <summary>
             An attempt was made to add an object using an RDN that is not the RDN defined in the schema.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NO_REQUESTED_ATTS_FOUND">
            <summary>
             None of the requested attributes were found on the objects.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_USER_BUFFER_TO_SMALL">
            <summary>
             The user buffer is too small.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_ATT_IS_NOT_ON_OBJ">
            <summary>
             The attribute specified in the operation is not present on the object.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_ILLEGAL_MOD_OPERATION">
            <summary>
             Illegal modify operation. Some aspect of the modification is not permitted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_OBJ_TOO_LARGE">
            <summary>
             The specified object is too large.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_BAD_INSTANCE_TYPE">
            <summary>
             The specified instance type is not valid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_MASTERDSA_REQUIRED">
            <summary>
             The operation must be performed at a master DSA.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_OBJECT_CLASS_REQUIRED">
            <summary>
             The object class attribute must be specified.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_MISSING_REQUIRED_ATT">
            <summary>
             A required attribute is missing.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_ATT_NOT_DEF_FOR_CLASS">
            <summary>
             An attempt was made to modify an object to include an attribute that is not legal for its class.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_ATT_ALREADY_EXISTS">
            <summary>
             The specified attribute is already present on the object.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_ADD_ATT_VALUES">
            <summary>
             The specified attribute is not present, or has no values.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SINGLE_VALUE_CONSTRAINT">
            <summary>
             Multiple values were specified for an attribute that can have only one value.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_RANGE_CONSTRAINT">
            <summary>
             A value for the attribute was not in the acceptable range of values.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_ATT_VAL_ALREADY_EXISTS">
            <summary>
             The specified value already exists.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_REM_MISSING_ATT">
            <summary>
             The attribute cannot be removed because it is not present on the object.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_REM_MISSING_ATT_VAL">
            <summary>
             The attribute value cannot be removed because it is not present on the object.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_ROOT_CANT_BE_SUBREF">
            <summary>
             The specified root object cannot be a subref.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NO_CHAINING">
            <summary>
             Chaining is not permitted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NO_CHAINED_EVAL">
            <summary>
             Chained evaluation is not permitted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NO_PARENT_OBJECT">
            <summary>
             The operation could not be performed because the object's parent is either uninstantiated or deleted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_PARENT_IS_AN_ALIAS">
            <summary>
             Having a parent that is an alias is not permitted. Aliases are leaf objects.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_MIX_MASTER_AND_REPS">
            <summary>
             The object and parent must be of the same type, either both masters or both replicas.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CHILDREN_EXIST">
            <summary>
             The operation cannot be performed because child objects exist. This operation can only be performed on a leaf object.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_OBJ_NOT_FOUND">
            <summary>
             Directory object not found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_ALIASED_OBJ_MISSING">
            <summary>
             The aliased object is missing.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_BAD_NAME_SYNTAX">
            <summary>
             The object name has bad syntax.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_ALIAS_POINTS_TO_ALIAS">
            <summary>
             It is not permitted for an alias to refer to another alias.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_DEREF_ALIAS">
            <summary>
             The alias cannot be dereferenced.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_OUT_OF_SCOPE">
            <summary>
             The operation is out of scope.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_OBJECT_BEING_REMOVED">
            <summary>
             The operation cannot continue because the object is in the process of being removed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_DELETE_DSA_OBJ">
            <summary>
             The DSA object cannot be deleted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_GENERIC_ERROR">
            <summary>
             A directory service error has occurred.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DSA_MUST_BE_INT_MASTER">
            <summary>
             The operation can only be performed on an internal master DSA object.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CLASS_NOT_DSA">
            <summary>
             The object must be of class DSA.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_INSUFF_ACCESS_RIGHTS">
            <summary>
             Insufficient access rights to perform the operation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_ILLEGAL_SUPERIOR">
            <summary>
             The object cannot be added because the parent is not on the list of possible superiors.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_ATTRIBUTE_OWNED_BY_SAM">
            <summary>
             Access to the attribute is not permitted because the attribute is owned by the Security Accounts Manager (SAM).
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NAME_TOO_MANY_PARTS">
            <summary>
             The name has too many parts.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NAME_TOO_LONG">
            <summary>
             The name is too long.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NAME_VALUE_TOO_LONG">
            <summary>
             The name value is too long.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NAME_UNPARSEABLE">
            <summary>
             The directory service encountered an error parsing a name.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NAME_TYPE_UNKNOWN">
            <summary>
             The directory service cannot get the attribute type for a name.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NOT_AN_OBJECT">
            <summary>
             The name does not identify an object; the name identifies a phantom.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SEC_DESC_TOO_SHORT">
            <summary>
             The security descriptor is too short.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SEC_DESC_INVALID">
            <summary>
             The security descriptor is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NO_DELETED_NAME">
            <summary>
             Failed to create name for deleted object.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SUBREF_MUST_HAVE_PARENT">
            <summary>
             The parent of a new subref must exist.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NCNAME_MUST_BE_NC">
            <summary>
             The object must be a naming context.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_ADD_SYSTEM_ONLY">
            <summary>
             It is not permitted to add an attribute which is owned by the system.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CLASS_MUST_BE_CONCRETE">
            <summary>
             The class of the object must be structural; you cannot instantiate an abstract class.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_INVALID_DMD">
            <summary>
             The schema object could not be found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_OBJ_GUID_EXISTS">
            <summary>
             A local object with this GUID (dead or alive) already exists.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NOT_ON_BACKLINK">
            <summary>
             The operation cannot be performed on a back link.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NO_CROSSREF_FOR_NC">
            <summary>
             The cross reference for the specified naming context could not be found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SHUTTING_DOWN">
            <summary>
             The operation could not be performed because the directory service is shutting down.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_UNKNOWN_OPERATION">
            <summary>
             The directory service request is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_INVALID_ROLE_OWNER">
            <summary>
             The role owner attribute could not be read.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_COULDNT_CONTACT_FSMO">
            <summary>
             The requested FSMO operation failed. The current FSMO holder could not be contacted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CROSS_NC_DN_RENAME">
            <summary>
             Modification of a DN across a naming context is not permitted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_MOD_SYSTEM_ONLY">
            <summary>
             The attribute cannot be modified because it is owned by the system.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_REPLICATOR_ONLY">
            <summary>
             Only the replicator can perform this function.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_OBJ_CLASS_NOT_DEFINED">
            <summary>
             The specified class is not defined.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_OBJ_CLASS_NOT_SUBCLASS">
            <summary>
             The specified class is not a subclass.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NAME_REFERENCE_INVALID">
            <summary>
             The name reference is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CROSS_REF_EXISTS">
            <summary>
             A cross reference already exists.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_DEL_MASTER_CROSSREF">
            <summary>
             It is not permitted to delete a master cross reference.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SUBTREE_NOTIFY_NOT_NC_HEAD">
            <summary>
             Subtree notifications are only supported on NC heads.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NOTIFY_FILTER_TOO_COMPLEX">
            <summary>
             Notification filter is too complex.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DUP_RDN">
            <summary>
             Schema update failed: duplicate RDN.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DUP_OID">
            <summary>
             Schema update failed: duplicate OID.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DUP_MAPI_ID">
            <summary>
             Schema update failed: duplicate MAPI identifier.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DUP_SCHEMA_ID_GUID">
            <summary>
             Schema update failed: duplicate schema-id GUID.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DUP_LDAP_DISPLAY_NAME">
            <summary>
             Schema update failed: duplicate LDAP display name.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SEMANTIC_ATT_TEST">
            <summary>
             Schema update failed: range-lower less than range upper.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SYNTAX_MISMATCH">
            <summary>
             Schema update failed: syntax mismatch.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_EXISTS_IN_MUST_HAVE">
            <summary>
             Schema deletion failed: attribute is used in must-contain.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_EXISTS_IN_MAY_HAVE">
            <summary>
             Schema deletion failed: attribute is used in may-contain.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NONEXISTENT_MAY_HAVE">
            <summary>
             Schema update failed: attribute in may-contain does not exist.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NONEXISTENT_MUST_HAVE">
            <summary>
             Schema update failed: attribute in must-contain does not exist.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_AUX_CLS_TEST_FAIL">
            <summary>
             Schema update failed: class in aux-class list does not exist or is not an auxiliary class.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NONEXISTENT_POSS_SUP">
            <summary>
             Schema update failed: class in poss-superiors does not exist.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SUB_CLS_TEST_FAIL">
            <summary>
             Schema update failed: class in subclassof list does not exist or does not satisfy hierarchy rules.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_BAD_RDN_ATT_ID_SYNTAX">
            <summary>
             Schema update failed: Rdn-Att-Id has wrong syntax.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_EXISTS_IN_AUX_CLS">
            <summary>
             Schema deletion failed: class is used as auxiliary class.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_EXISTS_IN_SUB_CLS">
            <summary>
             Schema deletion failed: class is used as sub class.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_EXISTS_IN_POSS_SUP">
            <summary>
             Schema deletion failed: class is used as poss superior.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_RECALCSCHEMA_FAILED">
            <summary>
             Schema update failed in recalculating validation cache.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_TREE_DELETE_NOT_FINISHED">
            <summary>
             The tree deletion is not finished.  The request must be made again to continue deleting the tree.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_DELETE">
            <summary>
             The requested delete operation could not be performed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_ATT_SCHEMA_REQ_ID">
            <summary>
             Cannot read the governs class identifier for the schema record.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_BAD_ATT_SCHEMA_SYNTAX">
            <summary>
             The attribute schema has bad syntax.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_CACHE_ATT">
            <summary>
             The attribute could not be cached.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_CACHE_CLASS">
            <summary>
             The class could not be cached.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_REMOVE_ATT_CACHE">
            <summary>
             The attribute could not be removed from the cache.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_REMOVE_CLASS_CACHE">
            <summary>
             The class could not be removed from the cache.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_RETRIEVE_DN">
            <summary>
             The distinguished name attribute could not be read.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_MISSING_SUPREF">
            <summary>
             No superior reference has been configured for the directory service. The directory service is therefore unable to issue referrals to objects outside this forest.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_RETRIEVE_INSTANCE">
            <summary>
             The instance type attribute could not be retrieved.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CODE_INCONSISTENCY">
            <summary>
             An internal error has occurred.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DATABASE_ERROR">
            <summary>
             A database error has occurred.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_GOVERNSID_MISSING">
            <summary>
             The attribute GOVERNSID is missing.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_MISSING_EXPECTED_ATT">
            <summary>
             An expected attribute is missing.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NCNAME_MISSING_CR_REF">
            <summary>
             The specified naming context is missing a cross reference.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SECURITY_CHECKING_ERROR">
            <summary>
             A security checking error has occurred.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SCHEMA_NOT_LOADED">
            <summary>
             The schema is not loaded.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SCHEMA_ALLOC_FAILED">
            <summary>
             Schema allocation failed. Please check if the machine is running low on memory.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_ATT_SCHEMA_REQ_SYNTAX">
            <summary>
             Failed to obtain the required syntax for the attribute schema.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_GCVERIFY_ERROR">
            <summary>
             The global catalog verification failed. The global catalog is not available or does not support the operation. Some part of the directory is currently not available.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_SCHEMA_MISMATCH">
            <summary>
             The replication operation failed because of a schema mismatch between the servers involved.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_FIND_DSA_OBJ">
            <summary>
             The DSA object could not be found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_FIND_EXPECTED_NC">
            <summary>
             The naming context could not be found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_FIND_NC_IN_CACHE">
            <summary>
             The naming context could not be found in the cache.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_RETRIEVE_CHILD">
            <summary>
             The child object could not be retrieved.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SECURITY_ILLEGAL_MODIFY">
            <summary>
             The modification was not permitted for security reasons.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_REPLACE_HIDDEN_REC">
            <summary>
             The operation cannot replace the hidden record.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_BAD_HIERARCHY_FILE">
            <summary>
             The hierarchy file is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_BUILD_HIERARCHY_TABLE_FAILED">
            <summary>
             The attempt to build the hierarchy table failed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CONFIG_PARAM_MISSING">
            <summary>
             The directory configuration parameter is missing from the registry.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_COUNTING_AB_INDICES_FAILED">
            <summary>
             The attempt to count the address book indices failed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_HIERARCHY_TABLE_MALLOC_FAILED">
            <summary>
             The allocation of the hierarchy table failed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_INTERNAL_FAILURE">
            <summary>
             The directory service encountered an internal failure.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_UNKNOWN_ERROR">
            <summary>
             The directory service encountered an unknown failure.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_ROOT_REQUIRES_CLASS_TOP">
            <summary>
             A root object requires a class of 'top'.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_REFUSING_FSMO_ROLES">
            <summary>
             This directory server is shutting down, and cannot take ownership of new floating single-master operation roles.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_MISSING_FSMO_SETTINGS">
            <summary>
             The directory service is missing mandatory configuration information, and is unable to determine the ownership of floating single-master operation roles.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_UNABLE_TO_SURRENDER_ROLES">
            <summary>
             The directory service was unable to transfer ownership of one or more floating single-master operation roles to other servers.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_GENERIC">
            <summary>
             The replication operation failed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_INVALID_PARAMETER">
            <summary>
             An invalid parameter was specified for this replication operation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_BUSY">
            <summary>
             The directory service is too busy to complete the replication operation at this time.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_BAD_DN">
            <summary>
             The distinguished name specified for this replication operation is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_BAD_NC">
            <summary>
             The naming context specified for this replication operation is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_DN_EXISTS">
            <summary>
             The distinguished name specified for this replication operation already exists.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_INTERNAL_ERROR">
            <summary>
             The replication system encountered an internal error.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_INCONSISTENT_DIT">
            <summary>
             The replication operation encountered a database inconsistency.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_CONNECTION_FAILED">
            <summary>
             The server specified for this replication operation could not be contacted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_BAD_INSTANCE_TYPE">
            <summary>
             The replication operation encountered an object with an invalid instance type.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_OUT_OF_MEM">
            <summary>
             The replication operation failed to allocate memory.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_MAIL_PROBLEM">
            <summary>
             The replication operation encountered an error with the mail system.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_REF_ALREADY_EXISTS">
            <summary>
             The replication reference information for the target server already exists.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_REF_NOT_FOUND">
            <summary>
             The replication reference information for the target server does not exist.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_OBJ_IS_REP_SOURCE">
            <summary>
             The naming context cannot be removed because it is replicated to another server.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_DB_ERROR">
            <summary>
             The replication operation encountered a database error.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_NO_REPLICA">
            <summary>
             The naming context is in the process of being removed or is not replicated from the specified server.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_ACCESS_DENIED">
            <summary>
             Replication access was denied.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_NOT_SUPPORTED">
            <summary>
             The requested operation is not supported by this version of the directory service.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_RPC_CANCELLED">
            <summary>
             The replication remote procedure call was cancelled.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_SOURCE_DISABLED">
            <summary>
             The source server is currently rejecting replication requests.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_SINK_DISABLED">
            <summary>
             The destination server is currently rejecting replication requests.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_NAME_COLLISION">
            <summary>
             The replication operation failed due to a collision of object names.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_SOURCE_REINSTALLED">
            <summary>
             The replication source has been reinstalled.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_MISSING_PARENT">
            <summary>
             The replication operation failed because a required parent object is missing.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_PREEMPTED">
            <summary>
             The replication operation was preempted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_ABANDON_SYNC">
            <summary>
             The replication synchronization attempt was abandoned because of a lack of updates.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_SHUTDOWN">
            <summary>
             The replication operation was terminated because the system is shutting down.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_INCOMPATIBLE_PARTIAL_SET">
            <summary>
             Synchronization attempt failed because the destination DC is currently waiting to synchronize new partial attributes from source. This condition is normal if a recent schema change modified the partial attribute set. The destination partial attribute set is not a subset of source partial attribute set.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_SOURCE_IS_PARTIAL_REPLICA">
            <summary>
             The replication synchronization attempt failed because a master replica attempted to sync from a partial replica.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_EXTN_CONNECTION_FAILED">
            <summary>
             The server specified for this replication operation was contacted, but that server was unable to contact an additional server needed to complete the operation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_INSTALL_SCHEMA_MISMATCH">
            <summary>
             The version of the Active Directory schema of the source forest is not compatible with the version of Active Directory on this computer.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DUP_LINK_ID">
            <summary>
             Schema update failed: An attribute with the same link identifier already exists.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NAME_ERROR_RESOLVING">
            <summary>
             Name translation: Generic processing error.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NAME_ERROR_NOT_FOUND">
            <summary>
             Name translation: Could not find the name or insufficient right to see name.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NAME_ERROR_NOT_UNIQUE">
            <summary>
             Name translation: Input name mapped to more than one output name.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NAME_ERROR_NO_MAPPING">
            <summary>
             Name translation: Input name found, but not the associated output format.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NAME_ERROR_DOMAIN_ONLY">
            <summary>
             Name translation: Unable to resolve completely, only the domain was found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NAME_ERROR_NO_SYNTACTICAL_MAPPING">
            <summary>
             Name translation: Unable to perform purely syntactical mapping at the client without going out to the wire.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CONSTRUCTED_ATT_MOD">
            <summary>
             Modification of a constructed attribute is not allowed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_WRONG_OM_OBJ_CLASS">
            <summary>
             The OM-Object-Class specified is incorrect for an attribute with the specified syntax.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_REPL_PENDING">
            <summary>
             The replication request has been posted; waiting for reply.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DS_REQUIRED">
            <summary>
             The requested operation requires a directory service, and none was available.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_INVALID_LDAP_DISPLAY_NAME">
            <summary>
             The LDAP display name of the class or attribute contains non-ASCII characters.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NON_BASE_SEARCH">
            <summary>
             The requested search operation is only supported for base searches.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_RETRIEVE_ATTS">
            <summary>
             The search failed to retrieve attributes from the database.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_BACKLINK_WITHOUT_LINK">
            <summary>
             The schema update operation tried to add a backward link attribute that has no corresponding forward link.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_EPOCH_MISMATCH">
            <summary>
             Source and destination of a cross-domain move do not agree on the object's epoch number.  Either source or destination does not have the latest version of the object.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SRC_NAME_MISMATCH">
            <summary>
             Source and destination of a cross-domain move do not agree on the object's current name.  Either source or destination does not have the latest version of the object.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SRC_AND_DST_NC_IDENTICAL">
            <summary>
             Source and destination for the cross-domain move operation are identical.  Caller should use local move operation instead of cross-domain move operation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DST_NC_MISMATCH">
            <summary>
             Source and destination for a cross-domain move are not in agreement on the naming contexts in the forest.  Either source or destination does not have the latest version of the Partitions container.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NOT_AUTHORITIVE_FOR_DST_NC">
            <summary>
             Destination of a cross-domain move is not authoritative for the destination naming context.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SRC_GUID_MISMATCH">
            <summary>
             Source and destination of a cross-domain move do not agree on the identity of the source object.  Either source or destination does not have the latest version of the source object.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_MOVE_DELETED_OBJECT">
            <summary>
             Object being moved across-domains is already known to be deleted by the destination server.  The source server does not have the latest version of the source object.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_PDC_OPERATION_IN_PROGRESS">
            <summary>
             Another operation which requires exclusive access to the PDC FSMO is already in progress.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CROSS_DOMAIN_CLEANUP_REQD">
            <summary>
             A cross-domain move operation failed such that two versions of the moved object exist - one each in the source and destination domains.  The destination object needs to be removed to restore the system to a consistent state.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_ILLEGAL_XDOM_MOVE_OPERATION">
            <summary>
             This object may not be moved across domain boundaries either because cross-domain moves for this class are disallowed, or the object has some special characteristics, e.g.: trust account or restricted RID, which prevent its move.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_WITH_ACCT_GROUP_MEMBERSHPS">
            <summary>
             Can't move objects with memberships across domain boundaries as once moved, this would violate the membership conditions of the account group.  Remove the object from any account group memberships and retry.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NC_MUST_HAVE_NC_PARENT">
            <summary>
             A naming context head must be the immediate child of another naming context head, not of an interior node.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE">
            <summary>
             The directory cannot validate the proposed naming context name because it does not hold a replica of the naming context above the proposed naming context.  Please ensure that the domain naming master role is held by a server that is configured as a global catalog server, and that the server is up to date with its replication partners. (Applies only to Windows 2000 Domain Naming masters)
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DST_DOMAIN_NOT_NATIVE">
            <summary>
             Destination domain must be in native mode.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_MISSING_INFRASTRUCTURE_CONTAINER">
            <summary>
             The operation cannot be performed because the server does not have an infrastructure container in the domain of interest.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_MOVE_ACCOUNT_GROUP">
            <summary>
             Cross-domain move of non-empty account groups is not allowed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_MOVE_RESOURCE_GROUP">
            <summary>
             Cross-domain move of non-empty resource groups is not allowed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_INVALID_SEARCH_FLAG">
            <summary>
             The search flags for the attribute are invalid. The ANR bit is valid only on attributes of Unicode or Teletex strings.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NO_TREE_DELETE_ABOVE_NC">
            <summary>
             Tree deletions starting at an object which has an NC head as a descendant are not allowed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_COULDNT_LOCK_TREE_FOR_DELETE">
            <summary>
             The directory service failed to lock a tree in preparation for a tree deletion because the tree was in use.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_COULDNT_IDENTIFY_OBJECTS_FOR_TREE_DELETE">
            <summary>
             The directory service failed to identify the list of objects to delete while attempting a tree deletion.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SAM_INIT_FAILURE">
            <summary>
             Security Accounts Manager initialization failed because of the following error: %1.
             Error Status: 0x%2. Click OK to shut down the system and reboot into Directory Services Restore Mode. Check the event log for detailed information.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SENSITIVE_GROUP_VIOLATION">
            <summary>
             Only an administrator can modify the membership list of an administrative group.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_MOD_PRIMARYGROUPID">
            <summary>
             Cannot change the primary group ID of a domain controller account.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_ILLEGAL_BASE_SCHEMA_MOD">
            <summary>
             An attempt is made to modify the base schema.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NONSAFE_SCHEMA_CHANGE">
            <summary>
             Adding a new mandatory attribute to an existing class, deleting a mandatory attribute from an existing class, or adding an optional attribute to the special class Top that is not a backlink attribute (directly or through inheritance, for example, by adding or deleting an auxiliary class) is not allowed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SCHEMA_UPDATE_DISALLOWED">
            <summary>
             Schema update is not allowed on this DC because the DC is not the schema FSMO Role Owner.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_CREATE_UNDER_SCHEMA">
            <summary>
             An object of this class cannot be created under the schema container. You can only create attribute-schema and class-schema objects under the schema container.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_INSTALL_NO_SRC_SCH_VERSION">
            <summary>
             The replica/child install failed to get the objectVersion attribute on the schema container on the source DC. Either the attribute is missing on the schema container or the credentials supplied do not have permission to read it.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_INSTALL_NO_SCH_VERSION_IN_INIFILE">
            <summary>
             The replica/child install failed to read the objectVersion attribute in the SCHEMA section of the file schema.ini in the system32 directory.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_INVALID_GROUP_TYPE">
            <summary>
             The specified group type is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NO_NEST_GLOBALGROUP_IN_MIXEDDOMAIN">
            <summary>
             You cannot nest global groups in a mixed domain if the group is security-enabled.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NO_NEST_LOCALGROUP_IN_MIXEDDOMAIN">
            <summary>
             You cannot nest local groups in a mixed domain if the group is security-enabled.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_GLOBAL_CANT_HAVE_LOCAL_MEMBER">
            <summary>
             A global group cannot have a local group as a member.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_GLOBAL_CANT_HAVE_UNIVERSAL_MEMBER">
            <summary>
             A global group cannot have a universal group as a member.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_UNIVERSAL_CANT_HAVE_LOCAL_MEMBER">
            <summary>
             A universal group cannot have a local group as a member.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_GLOBAL_CANT_HAVE_CROSSDOMAIN_MEMBER">
            <summary>
             A global group cannot have a cross-domain member.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_LOCAL_CANT_HAVE_CROSSDOMAIN_LOCAL_MEMBER">
            <summary>
             A local group cannot have another cross domain local group as a member.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_HAVE_PRIMARY_MEMBERS">
            <summary>
             A group with primary members cannot change to a security-disabled group.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_STRING_SD_CONVERSION_FAILED">
            <summary>
             The schema cache load failed to convert the string default SD on a class-schema object.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NAMING_MASTER_GC">
            <summary>
             Only DSAs configured to be Global Catalog servers should be allowed to hold the Domain Naming Master FSMO role. (Applies only to Windows 2000 servers)
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DNS_LOOKUP_FAILURE">
            <summary>
             The DSA operation is unable to proceed because of a DNS lookup failure.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_COULDNT_UPDATE_SPNS">
            <summary>
             While processing a change to the DNS Host Name for an object, the Service Principal Name values could not be kept in sync.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_RETRIEVE_SD">
            <summary>
             The Security Descriptor attribute could not be read.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_KEY_NOT_UNIQUE">
            <summary>
             The object requested was not found, but an object with that key was found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_WRONG_LINKED_ATT_SYNTAX">
            <summary>
             The syntax of the linked attribute being added is incorrect. Forward links can only have syntax 2.5.5.1, 2.5.5.7, and 2.5.5.14, and backlinks can only have syntax 2.5.5.1
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SAM_NEED_BOOTKEY_PASSWORD">
            <summary>
             Security Account Manager needs to get the boot password.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SAM_NEED_BOOTKEY_FLOPPY">
            <summary>
             Security Account Manager needs to get the boot key from floppy disk.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_START">
            <summary>
             Directory Service cannot start.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_INIT_FAILURE">
            <summary>
             Directory Services could not start.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NO_PKT_PRIVACY_ON_CONNECTION">
            <summary>
             The connection between client and server requires packet privacy or better.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SOURCE_DOMAIN_IN_FOREST">
            <summary>
             The source domain may not be in the same forest as destination.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DESTINATION_DOMAIN_NOT_IN_FOREST">
            <summary>
             The destination domain must be in the forest.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DESTINATION_AUDITING_NOT_ENABLED">
            <summary>
             The operation requires that destination domain auditing be enabled.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_FIND_DC_FOR_SRC_DOMAIN">
            <summary>
             The operation couldn't locate a DC for the source domain.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SRC_OBJ_NOT_GROUP_OR_USER">
            <summary>
             The source object must be a group or user.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SRC_SID_EXISTS_IN_FOREST">
            <summary>
             The source object's SID already exists in destination forest.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SRC_AND_DST_OBJECT_CLASS_MISMATCH">
            <summary>
             The source and destination object must be of the same type.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SAM_INIT_FAILURE">
            <summary>
             Security Accounts Manager initialization failed because of the following error: %1.
             Error Status: 0x%2. Click OK to shut down the system and reboot into Safe Mode. Check the event log for detailed information.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_SCHEMA_INFO_SHIP">
            <summary>
             Schema information could not be included in the replication request.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_SCHEMA_CONFLICT">
            <summary>
             The replication operation could not be completed due to a schema incompatibility.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_EARLIER_SCHEMA_CONFLICT">
            <summary>
             The replication operation could not be completed due to a previous schema incompatibility.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_OBJ_NC_MISMATCH">
            <summary>
             The replication update could not be applied because either the source or the destination has not yet received information regarding a recent cross-domain move operation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NC_STILL_HAS_DSAS">
            <summary>
             The requested domain could not be deleted because there exist domain controllers that still host this domain.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_GC_REQUIRED">
            <summary>
             The requested operation can be performed only on a global catalog server.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_LOCAL_MEMBER_OF_LOCAL_ONLY">
            <summary>
             A local group can only be a member of other local groups in the same domain.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NO_FPO_IN_UNIVERSAL_GROUPS">
            <summary>
             Foreign security principals cannot be members of universal groups.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_ADD_TO_GC">
            <summary>
             The attribute is not allowed to be replicated to the GC because of security reasons.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NO_CHECKPOINT_WITH_PDC">
            <summary>
             The checkpoint with the PDC could not be taken because there too many modifications being processed currently.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SOURCE_AUDITING_NOT_ENABLED">
            <summary>
             The operation requires that source domain auditing be enabled.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_CREATE_IN_NONDOMAIN_NC">
            <summary>
             Security principal objects can only be created inside domain naming contexts.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_INVALID_NAME_FOR_SPN">
            <summary>
             A Service Principal Name (SPN) could not be constructed because the provided hostname is not in the necessary format.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_FILTER_USES_CONTRUCTED_ATTRS">
            <summary>
             A Filter was passed that uses constructed attributes.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_UNICODEPWD_NOT_IN_QUOTES">
            <summary>
             The unicodePwd attribute value must be enclosed in double quotes.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_MACHINE_ACCOUNT_QUOTA_EXCEEDED">
            <summary>
             Your computer could not be joined to the domain. You have exceeded the maximum number of computer accounts you are allowed to create in this domain. Contact your system administrator to have this limit reset or increased.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_MUST_BE_RUN_ON_DST_DC">
            <summary>
             For security reasons, the operation must be run on the destination DC.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SRC_DC_MUST_BE_SP4_OR_GREATER">
            <summary>
             For security reasons, the source DC must be NT4SP4 or greater.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_TREE_DELETE_CRITICAL_OBJ">
            <summary>
             Critical Directory Service System objects cannot be deleted during tree delete operations.  The tree delete may have been partially performed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_INIT_FAILURE_CONSOLE">
            <summary>
             Directory Services could not start because of the following error: %1.
             Error Status: 0x%2. Please click OK to shutdown the system. You can use the recovery console to diagnose the system further.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SAM_INIT_FAILURE_CONSOLE">
            <summary>
             Security Accounts Manager initialization failed because of the following error: %1.
             Error Status: 0x%2. Please click OK to shutdown the system. You can use the recovery console to diagnose the system further.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_FOREST_VERSION_TOO_HIGH">
            <summary>
             The version of the operating system installed is incompatible with the current forest functional level. You must upgrade to a new version of the operating system before this server can become a domain controller in this forest.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DOMAIN_VERSION_TOO_HIGH">
            <summary>
             The version of the operating system installed is incompatible with the current domain functional level. You must upgrade to a new version of the operating system before this server can become a domain controller in this domain.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_FOREST_VERSION_TOO_LOW">
            <summary>
             The version of the operating system installed on this server no longer supports the current forest functional level. You must raise the forest functional level before this server can become a domain controller in this forest.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DOMAIN_VERSION_TOO_LOW">
            <summary>
             The version of the operating system installed on this server no longer supports the current domain functional level. You must raise the domain functional level before this server can become a domain controller in this domain.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_INCOMPATIBLE_VERSION">
            <summary>
             The version of the operating system installed on this server is incompatible with the functional level of the domain or forest.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_LOW_DSA_VERSION">
            <summary>
             The functional level of the domain (or forest) cannot be raised to the requested value, because there exist one or more domain controllers in the domain (or forest) that are at a lower incompatible functional level.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NO_BEHAVIOR_VERSION_IN_MIXEDDOMAIN">
            <summary>
             The forest functional level cannot be raised to the requested value since one or more domains are still in mixed domain mode. All domains in the forest must be in native mode, for you to raise the forest functional level.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NOT_SUPPORTED_SORT_ORDER">
            <summary>
             The sort order requested is not supported.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NAME_NOT_UNIQUE">
            <summary>
             The requested name already exists as a unique identifier.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_MACHINE_ACCOUNT_CREATED_PRENT4">
            <summary>
             The machine account was created pre-NT4.  The account needs to be recreated.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_OUT_OF_VERSION_STORE">
            <summary>
             The database is out of version store.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_INCOMPATIBLE_CONTROLS_USED">
            <summary>
             Unable to continue operation because multiple conflicting controls were used.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NO_REF_DOMAIN">
            <summary>
             Unable to find a valid security descriptor reference domain for this partition.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_RESERVED_LINK_ID">
            <summary>
             Schema update failed: The link identifier is reserved.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_LINK_ID_NOT_AVAILABLE">
            <summary>
             Schema update failed: There are no link identifiers available.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_AG_CANT_HAVE_UNIVERSAL_MEMBER">
            <summary>
             An account group cannot have a universal group as a member.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_MODIFYDN_DISALLOWED_BY_INSTANCE_TYPE">
            <summary>
             Rename or move operations on naming context heads or read-only objects are not allowed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NO_OBJECT_MOVE_IN_SCHEMA_NC">
            <summary>
             Move operations on objects in the schema naming context are not allowed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_MODIFYDN_DISALLOWED_BY_FLAG">
            <summary>
             A system flag has been set on the object and does not allow the object to be moved or renamed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_MODIFYDN_WRONG_GRANDPARENT">
            <summary>
             This object is not allowed to change its grandparent container. Moves are not forbidden on this object, but are restricted to sibling containers.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NAME_ERROR_TRUST_REFERRAL">
            <summary>
             Unable to resolve completely, a referral to another forest is generated.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_NOT_SUPPORTED_ON_STANDARD_SERVER">
            <summary>
             The requested action is not supported on standard server.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_ACCESS_REMOTE_PART_OF_AD">
            <summary>
             Could not access a partition of the Active Directory located on a remote server.  Make sure at least one server is running for the partition in question.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CR_IMPOSSIBLE_TO_VALIDATE_V2">
            <summary>
             The directory cannot validate the proposed naming context (or partition) name because it does not hold a replica nor can it contact a replica of the naming context above the proposed naming context.  Please ensure that the parent naming context is properly registered in DNS, and at least one replica of this naming context is reachable by the Domain Naming master.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_THREAD_LIMIT_EXCEEDED">
            <summary>
             The thread limit for this request was exceeded.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NOT_CLOSEST">
            <summary>
             The Global catalog server is not in the closest site.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_DERIVE_SPN_WITHOUT_SERVER_REF">
            <summary>
             The DS cannot derive a service principal name (SPN) with which to mutually authenticate the target server because the corresponding server object in the local DS database has no serverReference attribute.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_SINGLE_USER_MODE_FAILED">
            <summary>
             The Directory Service failed to enter single user mode.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NTDSCRIPT_SYNTAX_ERROR">
            <summary>
             The Directory Service cannot parse the script because of a syntax error.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NTDSCRIPT_PROCESS_ERROR">
            <summary>
             The Directory Service cannot process the script because of an error.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DIFFERENT_REPL_EPOCHS">
            <summary>
             The directory service cannot perform the requested operation because the servers
             involved are of different replication epochs (which is usually related to a
             domain rename that is in progress).
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRS_EXTENSIONS_CHANGED">
            <summary>
             The directory service binding must be renegotiated due to a change in the server
             extensions information.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_REPLICA_SET_CHANGE_NOT_ALLOWED_ON_DISABLED_CR">
            <summary>
             Operation not allowed on a disabled cross ref.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_NO_MSDS_INTID">
            <summary>
             Schema update failed: No values for msDS-IntId are available.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DUP_MSDS_INTID">
            <summary>
             Schema update failed: Duplicate msDS-INtId. Retry the operation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_EXISTS_IN_RDNATTID">
            <summary>
             Schema deletion failed: attribute is used in rDNAttID.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_AUTHORIZATION_FAILED">
            <summary>
             The directory service failed to authorize the request.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_INVALID_SCRIPT">
            <summary>
             The Directory Service cannot process the script because it is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_REMOTE_CROSSREF_OP_FAILED">
            <summary>
             The remote create cross reference operation failed on the Domain Naming Master FSMO.  The operation's error is in the extended data.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CROSS_REF_BUSY">
            <summary>
             A cross reference is in use locally with the same name.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_DERIVE_SPN_FOR_DELETED_DOMAIN">
            <summary>
             The DS cannot derive a service principal name (SPN) with which to mutually authenticate the target server because the server's domain has been deleted from the forest.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_DEMOTE_WITH_WRITEABLE_NC">
            <summary>
             Writeable NCs prevent this DC from demoting.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DUPLICATE_ID_FOUND">
            <summary>
             The requested object has a non-unique identifier and cannot be retrieved.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_INSUFFICIENT_ATTR_TO_CREATE_OBJECT">
            <summary>
             Insufficient attributes were given to create an object.  This object may not exist because it may have been deleted and already garbage collected.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_GROUP_CONVERSION_ERROR">
            <summary>
             The group cannot be converted due to attribute restrictions on the requested group type.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_MOVE_APP_BASIC_GROUP">
            <summary>
             Cross-domain move of non-empty basic application groups is not allowed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_CANT_MOVE_APP_QUERY_GROUP">
            <summary>
             Cross-domain move of non-empty query based application groups is not allowed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_ROLE_NOT_VERIFIED">
            <summary>
             The FSMO role ownership could not be verified because its directory partition has not replicated successfully with atleast one replication partner.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_WKO_CONTAINER_CANNOT_BE_SPECIAL">
            <summary>
             The target container for a redirection of a well known object container cannot already be a special container.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DOMAIN_RENAME_IN_PROGRESS">
            <summary>
             The Directory Service cannot perform the requested operation because a domain rename operation is in progress.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_EXISTING_AD_CHILD_NC">
            <summary>
             The Active Directory detected an Active Directory child partition below the
             requested new partition name.  The Active Directory's partition heiarchy must
             be created in a top down method.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_REPL_LIFETIME_EXCEEDED">
            <summary>
             The Active Directory cannot replicate with this server because the time since the last replication with this server has exceeded the tombstone lifetime.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DISALLOWED_IN_SYSTEM_CONTAINER">
            <summary>
             The requested operation is not allowed on an object under the system container.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_LDAP_SEND_QUEUE_FULL">
            <summary>
             The LDAP servers network send queue has filled up because the client is not
             processing the results of it's requests fast enough.  No more requests will
             be processed until the client catches up.  If the client does not catch up
             then it will be disconnected.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_DS_DRA_OUT_SCHEDULE_WINDOW">
            <summary>
             The scheduled replication did not take place because the system was too busy to execute the request within the schedule window.  The replication queue is overloaded. Consider reducing the number of partners or decreasing the scheduled replication frequency.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_RCODE_FORMAT_ERROR">
            <summary>
             DNS server unable to interpret format.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_RCODE_SERVER_FAILURE">
            <summary>
             DNS server failure.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_RCODE_NAME_ERROR">
            <summary>
             DNS name does not exist.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_RCODE_NOT_IMPLEMENTED">
            <summary>
             DNS request not supported by name server.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_RCODE_REFUSED">
            <summary>
             DNS operation refused.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_RCODE_YXDOMAIN">
            <summary>
             DNS name that ought not exist, does exist.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_RCODE_YXRRSET">
            <summary>
             DNS RR set that ought not exist, does exist.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_RCODE_NXRRSET">
            <summary>
             DNS RR set that ought to exist, does not exist.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_RCODE_NOTAUTH">
            <summary>
             DNS server not authoritative for zone.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_RCODE_NOTZONE">
            <summary>
             DNS name in update or prereq is not in zone.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_RCODE_BADSIG">
            <summary>
             DNS signature failed to verify.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_RCODE_BADKEY">
            <summary>
             DNS bad key.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_RCODE_BADTIME">
            <summary>
             DNS signature validity expired.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_PACKET_FMT_BASE">
            <summary>
             Packet format
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_INFO_NO_RECORDS">
            <summary>
             No records found for given DNS query.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_BAD_PACKET">
            <summary>
             Bad DNS packet.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_NO_PACKET">
            <summary>
             No DNS packet.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_RCODE">
            <summary>
             DNS error, check rcode.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_UNSECURE_PACKET">
            <summary>
             Unsecured DNS packet.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_INVALID_TYPE">
            <summary>
             Invalid DNS type.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_INVALID_IP_ADDRESS">
            <summary>
             Invalid IP address.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_INVALID_PROPERTY">
            <summary>
             Invalid property.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_TRY_AGAIN_LATER">
            <summary>
             Try DNS operation again later.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_NOT_UNIQUE">
            <summary>
             Record for given name and type is not unique.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_NON_RFC_NAME">
            <summary>
             DNS name does not comply with RFC specifications.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_STATUS_FQDN">
            <summary>
             DNS name is a fully-qualified DNS name.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_STATUS_DOTTED_NAME">
            <summary>
             DNS name is dotted (multi-label).
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_STATUS_SINGLE_PART_NAME">
            <summary>
             DNS name is a single-part name.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_INVALID_NAME_CHAR">
            <summary>
             DNS name contains an invalid character.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_NUMERIC_NAME">
            <summary>
             DNS name is entirely numeric.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_NOT_ALLOWED_ON_ROOT_SERVER">
            <summary>
             The operation requested is not permitted on a DNS root server.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_NOT_ALLOWED_UNDER_DELEGATION">
            <summary>
             The record could not be created because this part of the DNS namespace has
             been delegated to another server.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_CANNOT_FIND_ROOT_HINTS">
            <summary>
             The DNS server could not find a set of root hints.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_INCONSISTENT_ROOT_HINTS">
            <summary>
             The DNS server found root hints but they were not consistent across
             all adapters.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_ZONE_BASE">
            <summary>
             Zone errors
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_ZONE_DOES_NOT_EXIST">
            <summary>
             DNS zone does not exist.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_NO_ZONE_INFO">
            <summary>
             DNS zone information not available.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_INVALID_ZONE_OPERATION">
            <summary>
             Invalid operation for DNS zone.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_ZONE_CONFIGURATION_ERROR">
            <summary>
             Invalid DNS zone configuration.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_ZONE_HAS_NO_SOA_RECORD">
            <summary>
             DNS zone has no start of authority (SOA) record.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_ZONE_HAS_NO_NS_RECORDS">
            <summary>
             DNS zone has no Name Server (NS) record.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_ZONE_LOCKED">
            <summary>
             DNS zone is locked.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_ZONE_CREATION_FAILED">
            <summary>
             DNS zone creation failed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_ZONE_ALREADY_EXISTS">
            <summary>
             DNS zone already exists.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_AUTOZONE_ALREADY_EXISTS">
            <summary>
             DNS automatic zone already exists.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_INVALID_ZONE_TYPE">
            <summary>
             Invalid DNS zone type.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_SECONDARY_REQUIRES_MASTER_IP">
            <summary>
             Secondary DNS zone requires master IP address.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_ZONE_NOT_SECONDARY">
            <summary>
             DNS zone not secondary.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_NEED_SECONDARY_ADDRESSES">
            <summary>
             Need secondary IP address.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_WINS_INIT_FAILED">
            <summary>
             WINS initialization failed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_NEED_WINS_SERVERS">
            <summary>
             Need WINS servers.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_NBSTAT_INIT_FAILED">
            <summary>
             NBTSTAT initialization call failed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_SOA_DELETE_INVALID">
            <summary>
             Invalid delete of start of authority (SOA)
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_FORWARDER_ALREADY_EXISTS">
            <summary>
             A conditional forwarding zone already exists for that name.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_ZONE_REQUIRES_MASTER_IP">
            <summary>
             This zone must be configured with one or more master DNS server IP addresses.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_ZONE_IS_SHUTDOWN">
            <summary>
             The operation cannot be performed because this zone is shutdown.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_DATAFILE_BASE">
            <summary>
             Datafile errors
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_PRIMARY_REQUIRES_DATAFILE">
            <summary>
             Primary DNS zone requires datafile.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_INVALID_DATAFILE_NAME">
            <summary>
             Invalid datafile name for DNS zone.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_DATAFILE_OPEN_FAILURE">
            <summary>
             Failed to open datafile for DNS zone.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_FILE_WRITEBACK_FAILED">
            <summary>
             Failed to write datafile for DNS zone.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_DATAFILE_PARSING">
            <summary>
             Failure while reading datafile for DNS zone.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_DATABASE_BASE">
            <summary>
             Database errors
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_RECORD_DOES_NOT_EXIST">
            <summary>
             DNS record does not exist.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_RECORD_FORMAT">
            <summary>
             DNS record format error.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_NODE_CREATION_FAILED">
            <summary>
             Node creation failure in DNS.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_UNKNOWN_RECORD_TYPE">
            <summary>
             Unknown DNS record type.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_RECORD_TIMED_OUT">
            <summary>
             DNS record timed out.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_NAME_NOT_IN_ZONE">
            <summary>
             Name not in DNS zone.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_CNAME_LOOP">
            <summary>
             CNAME loop detected.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_NODE_IS_CNAME">
            <summary>
             Node is a CNAME DNS record.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_CNAME_COLLISION">
            <summary>
             A CNAME record already exists for given name.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_RECORD_ONLY_AT_ZONE_ROOT">
            <summary>
             Record only at DNS zone root.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_RECORD_ALREADY_EXISTS">
            <summary>
             DNS record already exists.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_SECONDARY_DATA">
            <summary>
             Secondary DNS zone data error.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_NO_CREATE_CACHE_DATA">
            <summary>
             Could not create DNS cache data.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_NAME_DOES_NOT_EXIST">
            <summary>
             DNS name does not exist.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_WARNING_PTR_CREATE_FAILED">
            <summary>
             Could not create pointer (PTR) record.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_WARNING_DOMAIN_UNDELETED">
            <summary>
             DNS domain was undeleted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_DS_UNAVAILABLE">
            <summary>
             The directory service is unavailable.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_DS_ZONE_ALREADY_EXISTS">
            <summary>
             DNS zone already exists in the directory service.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_NO_BOOTFILE_IF_DS_ZONE">
            <summary>
             DNS server not creating or reading the boot file for the directory service integrated DNS zone.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_OPERATION_BASE">
            <summary>
              Operation errors
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_INFO_AXFR_COMPLETE">
            <summary>
             DNS AXFR (zone transfer) complete.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_AXFR">
            <summary>
             DNS zone transfer failed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_INFO_ADDED_LOCAL_WINS">
            <summary>
             Added local WINS server.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_SECURE_BASE">
            <summary>
              Secure update
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_STATUS_CONTINUE_NEEDED">
            <summary>
             Secure update call needs to continue update request.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_SETUP_BASE">
            <summary>
              Setup errors
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_NO_TCPIP">
            <summary>
             TCP/IP network protocol not installed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_NO_DNS_SERVERS">
            <summary>
             No DNS servers configured for local system.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_DP_BASE">
            <summary>
              Directory partition (DP) errors
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_DP_DOES_NOT_EXIST">
            <summary>
             The specified directory partition does not exist.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_DP_ALREADY_EXISTS">
            <summary>
             The specified directory partition already exists.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_DP_NOT_ENLISTED">
            <summary>
             This DNS server is not enlisted in the specified directory partition.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_DP_ALREADY_ENLISTED">
            <summary>
             This DNS server is already enlisted in the specified directory partition.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_DP_NOT_AVAILABLE">
            <summary>
             The directory partition is not available at this time. Please wait
             a few minutes and try again.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.DNS_ERROR_DP_FSMO_ERROR">
            <summary>
             The application directory partition operation failed. The domain controller
             holding the domain naming master role is down or unable to service the
             request or is not running Windows Server 2003.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAEINTR">
            <summary>
             A blocking operation was interrupted by a call to WSACancelBlockingCall.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAEBADF">
            <summary>
             The file handle supplied is not valid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAEACCES">
            <summary>
             An attempt was made to access a socket in a way forbidden by its access permissions.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAEFAULT">
            <summary>
             The system detected an invalid pointer address in attempting to use a pointer argument in a call.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAEINVAL">
            <summary>
             An invalid argument was supplied.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAEMFILE">
            <summary>
             Too many open sockets.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAEWOULDBLOCK">
            <summary>
             A non-blocking socket operation could not be completed immediately.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAEINPROGRESS">
            <summary>
             A blocking operation is currently executing.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAEALREADY">
            <summary>
             An operation was attempted on a non-blocking socket that already had an operation in progress.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAENOTSOCK">
            <summary>
             An operation was attempted on something that is not a socket.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAEDESTADDRREQ">
            <summary>
             A required address was omitted from an operation on a socket.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAEMSGSIZE">
            <summary>
             A message sent on a datagram socket was larger than the internal message buffer or some other network limit, or the buffer used to receive a datagram into was smaller than the datagram itself.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAEPROTOTYPE">
            <summary>
             A protocol was specified in the socket function call that does not support the semantics of the socket type requested.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAENOPROTOOPT">
            <summary>
             An unknown, invalid, or unsupported option or level was specified in a getsockopt or setsockopt call.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAEPROTONOSUPPORT">
            <summary>
             The requested protocol has not been configured into the system, or no implementation for it exists.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAESOCKTNOSUPPORT">
            <summary>
             The support for the specified socket type does not exist in this address family.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAEOPNOTSUPP">
            <summary>
             The attempted operation is not supported for the type of object referenced.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAEPFNOSUPPORT">
            <summary>
             The protocol family has not been configured into the system or no implementation for it exists.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAEAFNOSUPPORT">
            <summary>
             An address incompatible with the requested protocol was used.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAEADDRINUSE">
            <summary>
             Only one usage of each socket address (protocol/network address/port) is normally permitted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAEADDRNOTAVAIL">
            <summary>
             The requested address is not valid in its context.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAENETDOWN">
            <summary>
             A socket operation encountered a dead network.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAENETUNREACH">
            <summary>
             A socket operation was attempted to an unreachable network.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAENETRESET">
            <summary>
             The connection has been broken due to keep-alive activity detecting a failure while the operation was in progress.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAECONNABORTED">
            <summary>
             An established connection was aborted by the software in your host machine.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAECONNRESET">
            <summary>
             An existing connection was forcibly closed by the remote host.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAENOBUFS">
            <summary>
             An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAEISCONN">
            <summary>
             A connect request was made on an already connected socket.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAENOTCONN">
            <summary>
             A request to send or receive data was disallowed because the socket is not connected and (when sending on a datagram socket using a sendto call) no address was supplied.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAESHUTDOWN">
            <summary>
             A request to send or receive data was disallowed because the socket had already been shut down in that direction with a previous shutdown call.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAETOOMANYREFS">
            <summary>
             Too many references to some kernel object.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAETIMEDOUT">
            <summary>
             A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAECONNREFUSED">
            <summary>
             No connection could be made because the target machine actively refused it.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAELOOP">
            <summary>
             Cannot translate name.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAENAMETOOLONG">
            <summary>
             Name component or name was too long.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAEHOSTDOWN">
            <summary>
             A socket operation failed because the destination host was down.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAEHOSTUNREACH">
            <summary>
             A socket operation was attempted to an unreachable host.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAENOTEMPTY">
            <summary>
             Cannot remove a directory that is not empty.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAEPROCLIM">
            <summary>
             A Windows Sockets implementation may have a limit on the number of applications that may use it simultaneously.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAEUSERS">
            <summary>
             Ran out of quota.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAEDQUOT">
            <summary>
             Ran out of disk quota.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAESTALE">
            <summary>
             File handle reference is no longer available.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAEREMOTE">
            <summary>
             Item is not available locally.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSASYSNOTREADY">
            <summary>
             WSAStartup cannot function at this time because the underlying system it uses to provide network services is currently unavailable.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAVERNOTSUPPORTED">
            <summary>
             The Windows Sockets version requested is not supported.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSANOTINITIALISED">
            <summary>
             Either the application has not called WSAStartup, or WSAStartup failed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAEDISCON">
            <summary>
             Returned by WSARecv or WSARecvFrom to indicate the remote party has initiated a graceful shutdown sequence.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAENOMORE">
            <summary>
             No more results can be returned by WSALookupServiceNext.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAECANCELLED">
            <summary>
             A call to WSALookupServiceEnd was made while this call was still processing. The call has been canceled.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAEINVALIDPROCTABLE">
            <summary>
             The procedure call table is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAEINVALIDPROVIDER">
            <summary>
             The requested service provider is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAEPROVIDERFAILEDINIT">
            <summary>
             The requested service provider could not be loaded or initialized.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSASYSCALLFAILURE">
            <summary>
             A system call that should never fail has failed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSASERVICE_NOT_FOUND">
            <summary>
             No such service is known. The service cannot be found in the specified name space.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSATYPE_NOT_FOUND">
            <summary>
             The specified class was not found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSA_E_NO_MORE">
            <summary>
             No more results can be returned by WSALookupServiceNext.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSA_E_CANCELLED">
            <summary>
             A call to WSALookupServiceEnd was made while this call was still processing. The call has been canceled.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAEREFUSED">
            <summary>
             A database query failed because it was actively refused.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSAHOST_NOT_FOUND">
            <summary>
             No such host is known.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSATRY_AGAIN">
            <summary>
             This is usually a temporary error during hostname resolution and means that the local server did not receive a response from an authoritative server.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSANO_RECOVERY">
            <summary>
             A non-recoverable error occurred during a database lookup.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSANO_DATA">
            <summary>
             The requested name is valid, but no data of the requested type was found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_RECEIVERS">
            <summary>
             At least one reserve has arrived.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_SENDERS">
            <summary>
             At least one path has arrived.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_NO_SENDERS">
            <summary>
             There are no senders.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_NO_RECEIVERS">
            <summary>
             There are no receivers.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_REQUEST_CONFIRMED">
            <summary>
             Reserve has been confirmed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_ADMISSION_FAILURE">
            <summary>
             Error due to lack of resources.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_POLICY_FAILURE">
            <summary>
             Rejected for administrative reasons - bad credentials.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_BAD_STYLE">
            <summary>
             Unknown or conflicting style.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_BAD_OBJECT">
            <summary>
             Problem with some part of the filterspec or providerspecific buffer in general.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_TRAFFIC_CTRL_ERROR">
            <summary>
             Problem with some part of the flowspec.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_GENERIC_ERROR">
            <summary>
             General QOS error.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_ESERVICETYPE">
            <summary>
             An invalid or unrecognized service type was found in the flowspec.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_EFLOWSPEC">
            <summary>
             An invalid or inconsistent flowspec was found in the QOS structure.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_EPROVSPECBUF">
            <summary>
             Invalid QOS provider-specific buffer.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_EFILTERSTYLE">
            <summary>
             An invalid QOS filter style was used.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_EFILTERTYPE">
            <summary>
             An invalid QOS filter type was used.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_EFILTERCOUNT">
            <summary>
             An incorrect number of QOS FILTERSPECs were specified in the FLOWDESCRIPTOR.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_EOBJLENGTH">
            <summary>
             An object with an invalid ObjectLength field was specified in the QOS provider-specific buffer.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_EFLOWCOUNT">
            <summary>
             An incorrect number of flow descriptors was specified in the QOS structure.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_EUNKOWNPSOBJ">
            <summary>
             An unrecognized object was found in the QOS provider-specific buffer.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_EPOLICYOBJ">
            <summary>
             An invalid policy object was found in the QOS provider-specific buffer.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_EFLOWDESC">
            <summary>
             An invalid QOS flow descriptor was found in the flow descriptor list.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_EPSFLOWSPEC">
            <summary>
             An invalid or inconsistent flowspec was found in the QOS provider specific buffer.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_EPSFILTERSPEC">
            <summary>
             An invalid FILTERSPEC was found in the QOS provider-specific buffer.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_ESDMODEOBJ">
            <summary>
             An invalid shape discard mode object was found in the QOS provider specific buffer.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_ESHAPERATEOBJ">
            <summary>
             An invalid shaping rate object was found in the QOS provider-specific buffer.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WSA_QOS_RESERVED_PETYPE">
            <summary>
             A reserved policy element was found in the QOS provider-specific buffer.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_SECTION_NOT_FOUND">
            <summary>
             The requested section was not present in the activation context.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_CANT_GEN_ACTCTX">
            <summary>
             This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_INVALID_ACTCTXDATA_FORMAT">
            <summary>
             The application binding data format is invalid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_ASSEMBLY_NOT_FOUND">
            <summary>
             The referenced assembly is not installed on your system.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_MANIFEST_FORMAT_ERROR">
            <summary>
             The manifest file does not begin with the required tag and format information.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_MANIFEST_PARSE_ERROR">
            <summary>
             The manifest file contains one or more syntax errors.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_ACTIVATION_CONTEXT_DISABLED">
            <summary>
             The application attempted to activate a disabled activation context.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_KEY_NOT_FOUND">
            <summary>
             The requested lookup key was not found in any active activation context.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_VERSION_CONFLICT">
            <summary>
             A component version required by the application conflicts with another component version already active.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_WRONG_SECTION_TYPE">
            <summary>
             The type requested activation context section does not match the query API used.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_THREAD_QUERIES_DISABLED">
            <summary>
             Lack of system resources has required isolated activation to be disabled for the current thread of execution.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_PROCESS_DEFAULT_ALREADY_SET">
            <summary>
             An attempt to set the process default activation context failed because the process default activation context was already set.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_UNKNOWN_ENCODING_GROUP">
            <summary>
             The encoding group identifier specified is not recognized.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_UNKNOWN_ENCODING">
            <summary>
             The encoding requested is not recognized.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_INVALID_XML_NAMESPACE_URI">
            <summary>
             The manifest contains a reference to an invalid URI.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_ROOT_MANIFEST_DEPENDENCY_NOT_INSTALLED">
            <summary>
             The application manifest contains a reference to a dependent assembly which is not installed
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_LEAF_MANIFEST_DEPENDENCY_NOT_INSTALLED">
            <summary>
             The manifest for an assembly used by the application has a reference to a dependent assembly which is not installed
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE">
            <summary>
             The manifest contains an attribute for the assembly identity which is not valid.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_MANIFEST_MISSING_REQUIRED_DEFAULT_NAMESPACE">
            <summary>
             The manifest is missing the required default namespace specification on the assembly element.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_MANIFEST_INVALID_REQUIRED_DEFAULT_NAMESPACE">
            <summary>
             The manifest has a default namespace specified on the assembly element but its value is not "urn:schemas-microsoft-com:asm.v1".
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_PRIVATE_MANIFEST_CROSS_PATH_WITH_REPARSE_POINT">
            <summary>
             The private manifest probed has crossed reparse-point-associated path
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_DUPLICATE_DLL_NAME">
            <summary>
             Two or more components referenced directly or indirectly by the application manifest have files by the same name.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_DUPLICATE_WINDOWCLASS_NAME">
            <summary>
             Two or more components referenced directly or indirectly by the application manifest have window classes with the same name.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_DUPLICATE_CLSID">
            <summary>
             Two or more components referenced directly or indirectly by the application manifest have the same COM server CLSIDs.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_DUPLICATE_IID">
            <summary>
             Two or more components referenced directly or indirectly by the application manifest have proxies for the same COM interface IIDs.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_DUPLICATE_TLBID">
            <summary>
             Two or more components referenced directly or indirectly by the application manifest have the same COM type library TLBIDs.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_DUPLICATE_PROGID">
            <summary>
             Two or more components referenced directly or indirectly by the application manifest have the same COM ProgIDs.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_DUPLICATE_ASSEMBLY_NAME">
            <summary>
             Two or more components referenced directly or indirectly by the application manifest are different versions of the same component which is not permitted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_FILE_HASH_MISMATCH">
            <summary>
             A component's file does not match the verification information present in the
             component manifest.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_POLICY_PARSE_ERROR">
            <summary>
             The policy manifest contains one or more syntax errors.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_MISSINGQUOTE">
            <summary>
             Manifest Parse Error : A string literal was expected, but no opening quote character was found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_COMMENTSYNTAX">
            <summary>
             Manifest Parse Error : Incorrect syntax was used in a comment.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_BADSTARTNAMECHAR">
            <summary>
             Manifest Parse Error : A name was started with an invalid character.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_BADNAMECHAR">
            <summary>
             Manifest Parse Error : A name contained an invalid character.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_BADCHARINSTRING">
            <summary>
             Manifest Parse Error : A string literal contained an invalid character.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_XMLDECLSYNTAX">
            <summary>
             Manifest Parse Error : Invalid syntax for an xml declaration.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_BADCHARDATA">
            <summary>
             Manifest Parse Error : An Invalid character was found in text content.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_MISSINGWHITESPACE">
            <summary>
             Manifest Parse Error : Required white space was missing.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_EXPECTINGTAGEND">
            <summary>
             Manifest Parse Error : The character '>' was expected.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_MISSINGSEMICOLON">
            <summary>
             Manifest Parse Error : A semi colon character was expected.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_UNBALANCEDPAREN">
            <summary>
             Manifest Parse Error : Unbalanced parentheses.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_INTERNALERROR">
            <summary>
             Manifest Parse Error : Internal error.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_UNEXPECTED_WHITESPACE">
            <summary>
             Manifest Parse Error : Whitespace is not allowed at this location.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_INCOMPLETE_ENCODING">
            <summary>
             Manifest Parse Error : End of file reached in invalid state for current encoding.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_MISSING_PAREN">
            <summary>
             Manifest Parse Error : Missing parenthesis.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_EXPECTINGCLOSEQUOTE">
            <summary>
             Manifest Parse Error : A single or double closing quote character (\' or \") is missing.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_MULTIPLE_COLONS">
            <summary>
             Manifest Parse Error : Multiple colons are not allowed in a name.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_INVALID_DECIMAL">
            <summary>
             Manifest Parse Error : Invalid character for decimal digit.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_INVALID_HEXIDECIMAL">
            <summary>
             Manifest Parse Error : Invalid character for hexidecimal digit.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_INVALID_UNICODE">
            <summary>
             Manifest Parse Error : Invalid unicode character value for this platform.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_WHITESPACEORQUESTIONMARK">
            <summary>
             Manifest Parse Error : Expecting whitespace or '?'.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_UNEXPECTEDENDTAG">
            <summary>
             Manifest Parse Error : End tag was not expected at this location.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_UNCLOSEDTAG">
            <summary>
             Manifest Parse Error : The following tags were not closed: %1.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_DUPLICATEATTRIBUTE">
            <summary>
             Manifest Parse Error : Duplicate attribute.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_MULTIPLEROOTS">
            <summary>
             Manifest Parse Error : Only one top level element is allowed in an XML document.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_INVALIDATROOTLEVEL">
            <summary>
             Manifest Parse Error : Invalid at the top level of the document.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_BADXMLDECL">
            <summary>
             Manifest Parse Error : Invalid xml declaration.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_MISSINGROOT">
            <summary>
             Manifest Parse Error : XML document must have a top level element.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_UNEXPECTEDEOF">
            <summary>
             Manifest Parse Error : Unexpected end of file.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_BADPEREFINSUBSET">
            <summary>
             Manifest Parse Error : Parameter entities cannot be used inside markup declarations in an internal subset.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_UNCLOSEDSTARTTAG">
            <summary>
             Manifest Parse Error : Element was not closed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_UNCLOSEDENDTAG">
            <summary>
             Manifest Parse Error : End element was missing the character '>'.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_UNCLOSEDSTRING">
            <summary>
             Manifest Parse Error : A string literal was not closed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_UNCLOSEDCOMMENT">
            <summary>
             Manifest Parse Error : A comment was not closed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_UNCLOSEDDECL">
            <summary>
             Manifest Parse Error : A declaration was not closed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_UNCLOSEDCDATA">
            <summary>
             Manifest Parse Error : A CDATA section was not closed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_RESERVEDNAMESPACE">
            <summary>
             Manifest Parse Error : The namespace prefix is not allowed to start with the reserved string "xml".
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_INVALIDENCODING">
            <summary>
             Manifest Parse Error : System does not support the specified encoding.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_INVALIDSWITCH">
            <summary>
             Manifest Parse Error : Switch from current encoding to specified encoding not supported.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_BADXMLCASE">
            <summary>
             Manifest Parse Error : The name 'xml' is reserved and must be lower case.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_INVALID_STANDALONE">
            <summary>
             Manifest Parse Error : The standalone attribute must have the value 'yes' or 'no'.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_UNEXPECTED_STANDALONE">
            <summary>
             Manifest Parse Error : The standalone attribute cannot be used in external entities.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_INVALID_VERSION">
            <summary>
             Manifest Parse Error : Invalid version number.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_XML_E_MISSINGEQUALS">
            <summary>
             Manifest Parse Error : Missing equals sign between attribute and attribute value.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_PROTECTION_RECOVERY_FAILED">
            <summary>
             Assembly Protection Error : Unable to recover the specified assembly.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_PROTECTION_PUBLIC_KEY_TOO_SHORT">
            <summary>
             Assembly Protection Error : The public key for an assembly was too short to be allowed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_PROTECTION_CATALOG_NOT_VALID">
            <summary>
             Assembly Protection Error : The catalog for an assembly is not valid, or does not match the assembly's manifest.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_UNTRANSLATABLE_HRESULT">
            <summary>
             An HRESULT could not be translated to a corresponding Win32 error code.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_PROTECTION_CATALOG_FILE_MISSING">
            <summary>
             Assembly Protection Error : The catalog for an assembly is missing.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_MISSING_ASSEMBLY_IDENTITY_ATTRIBUTE">
            <summary>
             The supplied assembly identity is missing one or more attributes which must be present in this context.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_SXS_INVALID_ASSEMBLY_IDENTITY_ATTRIBUTE_NAME">
            <summary>
             The supplied assembly identity has one or more attribute names that contain characters not permitted in XML names.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_QM_POLICY_EXISTS">
            <summary>
             The specified quick mode policy already exists.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_QM_POLICY_NOT_FOUND">
            <summary>
             The specified quick mode policy was not found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_QM_POLICY_IN_USE">
            <summary>
             The specified quick mode policy is being used.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_MM_POLICY_EXISTS">
            <summary>
             The specified main mode policy already exists.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_MM_POLICY_NOT_FOUND">
            <summary>
             The specified main mode policy was not found
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_MM_POLICY_IN_USE">
            <summary>
             The specified main mode policy is being used.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_MM_FILTER_EXISTS">
            <summary>
             The specified main mode filter already exists.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_MM_FILTER_NOT_FOUND">
            <summary>
             The specified main mode filter was not found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_TRANSPORT_FILTER_EXISTS">
            <summary>
             The specified transport mode filter already exists.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_TRANSPORT_FILTER_NOT_FOUND">
            <summary>
             The specified transport mode filter does not exist.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_MM_AUTH_EXISTS">
            <summary>
             The specified main mode authentication list exists.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_MM_AUTH_NOT_FOUND">
            <summary>
             The specified main mode authentication list was not found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_MM_AUTH_IN_USE">
            <summary>
             The specified quick mode policy is being used.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_DEFAULT_MM_POLICY_NOT_FOUND">
            <summary>
             The specified main mode policy was not found.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_DEFAULT_MM_AUTH_NOT_FOUND">
            <summary>
             The specified quick mode policy was not found
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_DEFAULT_QM_POLICY_NOT_FOUND">
            <summary>
             The manifest file contains one or more syntax errors.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_TUNNEL_FILTER_EXISTS">
            <summary>
             The application attempted to activate a disabled activation context.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_TUNNEL_FILTER_NOT_FOUND">
            <summary>
             The requested lookup key was not found in any active activation context.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_MM_FILTER_PENDING_DELETION">
            <summary>
             The Main Mode filter is pending deletion.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_TRANSPORT_FILTER_PENDING_DELETION">
            <summary>
             The transport filter is pending deletion.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_TUNNEL_FILTER_PENDING_DELETION">
            <summary>
             The tunnel filter is pending deletion.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_MM_POLICY_PENDING_DELETION">
            <summary>
             The Main Mode policy is pending deletion.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_MM_AUTH_PENDING_DELETION">
            <summary>
             The Main Mode authentication bundle is pending deletion.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_QM_POLICY_PENDING_DELETION">
            <summary>
             The Quick Mode policy is pending deletion.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WARNING_IPSEC_MM_POLICY_PRUNED">
            <summary>
             The Main Mode policy was successfully added, but some of the requested offers are not supported.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.WARNING_IPSEC_QM_POLICY_PRUNED">
            <summary>
             The Quick Mode policy was successfully added, but some of the requested offers are not supported.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_NEG_STATUS_BEGIN">
            <summary>
             ERROR_IPSEC_IKE_NEG_STATUS_BEGIN
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_AUTH_FAIL">
            <summary>
             IKE authentication credentials are unacceptable
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_ATTRIB_FAIL">
            <summary>
             IKE security attributes are unacceptable
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_NEGOTIATION_PENDING">
            <summary>
             IKE Negotiation in progress
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_GENERAL_PROCESSING_ERROR">
            <summary>
             General processing error
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_TIMED_OUT">
            <summary>
             Negotiation timed out
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_NO_CERT">
            <summary>
             IKE failed to find valid machine certificate
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_SA_DELETED">
            <summary>
             IKE SA deleted by peer before establishment completed
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_SA_REAPED">
            <summary>
             IKE SA deleted before establishment completed
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_MM_ACQUIRE_DROP">
            <summary>
             Negotiation request sat in Queue too long
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_QM_ACQUIRE_DROP">
            <summary>
             Negotiation request sat in Queue too long
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_QUEUE_DROP_MM">
            <summary>
             Negotiation request sat in Queue too long
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_QUEUE_DROP_NO_MM">
            <summary>
             Negotiation request sat in Queue too long
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_DROP_NO_RESPONSE">
            <summary>
             No response from peer
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_MM_DELAY_DROP">
            <summary>
             Negotiation took too long
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_QM_DELAY_DROP">
            <summary>
             Negotiation took too long
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_ERROR">
            <summary>
             Unknown error occurred
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_CRL_FAILED">
            <summary>
             Certificate Revocation Check failed
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_INVALID_KEY_USAGE">
            <summary>
             Invalid certificate key usage
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_INVALID_CERT_TYPE">
            <summary>
             Invalid certificate type
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_NO_PRIVATE_KEY">
            <summary>
             No private key associated with machine certificate
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_DH_FAIL">
            <summary>
             Failure in Diffie-Helman computation
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_INVALID_HEADER">
            <summary>
             Invalid header
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_NO_POLICY">
            <summary>
             No policy configured
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_INVALID_SIGNATURE">
            <summary>
             Failed to verify signature
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_KERBEROS_ERROR">
            <summary>
             Failed to authenticate using kerberos
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_NO_PUBLIC_KEY">
            <summary>
             Peer's certificate did not have a public key
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_PROCESS_ERR">
            <summary>
             Error processing error payload
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_PROCESS_ERR_SA">
            <summary>
             Error processing SA payload
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_PROCESS_ERR_PROP">
            <summary>
             Error processing Proposal payload
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_PROCESS_ERR_TRANS">
            <summary>
             Error processing Transform payload
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_PROCESS_ERR_KE">
            <summary>
             Error processing KE payload
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_PROCESS_ERR_ID">
            <summary>
             Error processing ID payload
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_PROCESS_ERR_CERT">
            <summary>
             Error processing Cert payload
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_PROCESS_ERR_CERT_REQ">
            <summary>
             Error processing Certificate Request payload
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_PROCESS_ERR_HASH">
            <summary>
             Error processing Hash payload
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_PROCESS_ERR_SIG">
            <summary>
             Error processing Signature payload
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_PROCESS_ERR_NONCE">
            <summary>
             Error processing Nonce payload
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_PROCESS_ERR_NOTIFY">
            <summary>
             Error processing Notify payload
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_PROCESS_ERR_DELETE">
            <summary>
             Error processing Delete Payload
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_PROCESS_ERR_VENDOR">
            <summary>
             Error processing VendorId payload
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_INVALID_PAYLOAD">
            <summary>
             Invalid payload received
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_LOAD_SOFT_SA">
            <summary>
             Soft SA loaded
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_SOFT_SA_TORN_DOWN">
            <summary>
             Soft SA torn down
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_INVALID_COOKIE">
            <summary>
             Invalid cookie received.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_NO_PEER_CERT">
            <summary>
             Peer failed to send valid machine certificate
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_PEER_CRL_FAILED">
            <summary>
             Certification Revocation check of peer's certificate failed
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_POLICY_CHANGE">
            <summary>
             New policy invalidated SAs formed with old policy
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_NO_MM_POLICY">
            <summary>
             There is no available Main Mode IKE policy.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_NOTCBPRIV">
            <summary>
             Failed to enabled TCB privilege.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_SECLOADFAIL">
            <summary>
             Failed to load SECURITY.DLL.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_FAILSSPINIT">
            <summary>
             Failed to obtain security function table dispatch address from SSPI.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_FAILQUERYSSP">
            <summary>
             Failed to query Kerberos package to obtain max token size.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_SRVACQFAIL">
            <summary>
             Failed to obtain Kerberos server credentials for ISAKMP/ERROR_IPSEC_IKE service.  Kerberos authentication will not function.  The most likely reason for this is lack of domain membership.  This is normal if your computer is a member of a workgroup.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_SRVQUERYCRED">
            <summary>
             Failed to determine SSPI principal name for ISAKMP/ERROR_IPSEC_IKE service (QueryCredentialsAttributes).
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_GETSPIFAIL">
            <summary>
             Failed to obtain new SPI for the inbound SA from Ipsec driver.  The most common cause for this is that the driver does not have the correct filter.  Check your policy to verify the filters.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_INVALID_FILTER">
            <summary>
             Given filter is invalid
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_OUT_OF_MEMORY">
            <summary>
             Memory allocation failed.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_ADD_UPDATE_KEY_FAILED">
            <summary>
             Failed to add Security Association to IPSec Driver.  The most common cause for this is if the IKE negotiation took too long to complete.  If the problem persists, reduce the load on the faulting machine.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_INVALID_POLICY">
            <summary>
             Invalid policy
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_UNKNOWN_DOI">
            <summary>
             Invalid DOI
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_INVALID_SITUATION">
            <summary>
             Invalid situation
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_DH_FAILURE">
            <summary>
             Diffie-Hellman failure
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_INVALID_GROUP">
            <summary>
             Invalid Diffie-Hellman group
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_ENCRYPT">
            <summary>
             Error encrypting payload
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_DECRYPT">
            <summary>
             Error decrypting payload
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_POLICY_MATCH">
            <summary>
             Policy match error
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_UNSUPPORTED_ID">
            <summary>
             Unsupported ID
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_INVALID_HASH">
            <summary>
             Hash verification failed
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_INVALID_HASH_ALG">
            <summary>
             Invalid hash algorithm
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_INVALID_HASH_SIZE">
            <summary>
             Invalid hash size
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_INVALID_ENCRYPT_ALG">
            <summary>
             Invalid encryption algorithm
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_INVALID_AUTH_ALG">
            <summary>
             Invalid authentication algorithm
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_INVALID_SIG">
            <summary>
             Invalid certificate signature
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_LOAD_FAILED">
            <summary>
             Load failed
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_RPC_DELETE">
            <summary>
             Deleted via RPC call
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_BENIGN_REINIT">
            <summary>
             Temporary state created to perform reinit. This is not a real failure.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_INVALID_RESPONDER_LIFETIME_NOTIFY">
            <summary>
             The lifetime value received in the Responder Lifetime Notify is below the Windows 2000 configured minimum value.  Please fix the policy on the peer machine.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_INVALID_CERT_KEYLEN">
            <summary>
             Key length in certificate is too small for configured security requirements.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_MM_LIMIT">
            <summary>
             Max number of established MM SAs to peer exceeded.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_NEGOTIATION_DISABLED">
            <summary>
             IKE received a policy that disables negotiation.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.ERROR_IPSEC_IKE_NEG_STATUS_END">
            <summary>
             ERROR_IPSEC_IKE_NEG_STATUS_END
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.APPMODEL_ERROR_NO_PACKAGE">
            <summary>
            The process has no package identity.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.APPMODEL_ERROR_PACKAGE_RUNTIME_CORRUPT">
            <summary>
            The package runtime information is corrupted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.APPMODEL_ERROR_PACKAGE_IDENTITY_CORRUPT">
            <summary>
            The package identity is corrupted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.APPMODEL_ERROR_NO_APPLICATION">
            <summary>
            The process has no application identity.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WinError.NOERROR">
            <summary>
             Error definitions follow
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.WmActivateCodes">
            <summary>
            WM_ACTIVATE wParam loword value.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WmActivateCodes.Inactive">
            <summary>
            Deactivated.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WmActivateCodes.Active">
            <summary>
            Activated by some method other than a mouse click (for example, by a call to the <see cref="M:JetBrains.Interop.WinApi.User32Dll.SetActiveWindow(System.Void*)"/> function or by use of the keyboard interface to select the window).
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WmActivateCodes.ClickActive">
            <summary>
            Activated by a mouse click.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.WmMouseActivateReturnCodes">
            <summary>
            <see cref="F:JetBrains.Interop.WinApi.WindowsMessages.WM_MOUSEACTIVATE"/> return codes.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.DwmApiDll">
            <summary>
            Dwmapi.dll functions.
            Must be 64bit-safe.
            </summary>
            <remarks>
            IMPORTANT! Rules for authoring the class (v1.1):
            (1) All the function declarations MUST be 64-bit aware.
            (2) When copypasting from older declarations, you MUST check against the MSDN help or header declaration,
               and you MUST ensure that each parameter has a proper size.
            (3) Call the Wide version of the functions (UCS-2-LE) unless there's a strong reason for calling the ANSI version
               (such a reason MUST be indicated in XmlDoc). <c>CharSet = CharSet.Unicode</c>.
            (4) ExactSpelling MUST be TRUE. Add the "…W" suffix wherever needed.
            (5) SetLastError SHOULD be considered individually for each function. Setting it to <c>True</c> allows to report the errors,
               but slows down the execution of critical members.
            (6) These properties MUST be explicitly set on DllImport attributes of EACH import:
               CharSet, PreserveSig, SetLastError, ExactSpelling.
            (7) CLR names MUST be used for types instead of C# ones, eg "Int32" not "int" and "Int64" not "long".
               This greately improves the understanding of the parameter sizes.
            (8) Sign of the types MUST be favored, eg "DWORD" is "UInt32" not "Int32".
            (9) Unsafe pointer types should be used for explicit and implicit pointers rather than IntPtr.
               This way we outline the unsafety of the native calls, and also make it more clear for the 64bit transition.
               Eg "HANDLE" is "void*". If the rule forces you to mark some assembly as unsafe, it's an indication a managed utility
               incapsulating the call and the handle should be provided in one of the already-unsafe assemblies.
            (A) Same rules must apply to members of the structures.
            (B) All of the structures MUST have the [StructLayout(LayoutKind.Sequential)], [NoReorder] attributes, as appropriate.
            </remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.DwmApiDll.DwmDefWindowProc(System.Void*,System.UInt32,System.IntPtr,System.IntPtr,System.IntPtr*)">
            <summary>
            Default window procedure for Desktop Window Manager (DWM) hit testing within the non-client area.
            </summary>
            <param name="hwnd">Handle to the window procedure that received the message.</param>
            <param name="msg">Specifies the message.</param>
            <param name="wParam">Specifies additional message information. The content of this parameter depends on the value of the msg parameter. </param>
            <param name="lParam">Specifies additional message information. The content of this parameter depends on the value of the msg parameter. </param>
            <param name="plResult">Pointer to an LRESULT value that, when this method returns, receives the result of the hit test.</param>
            <returns>TRUE if DwmDefWindowProc handled the message; otherwise, FALSE. </returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.DwmApiDll.DwmExtendFrameIntoClientArea(System.Void*,JetBrains.Interop.WinApi.MARGINS*)">
            <summary>
            Extends the window frame behind the client area.
            If Desktop Window Manager (DWM) composition is toggled, this function must be called again. Handle the WM_DWMCOMPOSITIONCHANGED message for composition change notification.
            Negative margins are used to create the "sheet of glass" effect where the client area is rendered as a solid surface with no window border.
            </summary>
            <param name="hWnd">The handle to the window for which the frame is extended into the client area.</param>
            <param name="pMarInset"><see cref="T:JetBrains.Interop.WinApi.MARGINS" /> that describes the margins to use when extending the frame into the client area.</param>
            <returns>Returns S_OK if successful, or an error value otherwise.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.DwmApiDll.DwmIsCompositionEnabled(System.Int32*)">
            <summary>
            Obtains a value that indicates whether Desktop Window Manager (DWM) composition is enabled. Applications on machines running Windows 7 or earlier can listen for composition state changes by handling the WM_DWMCOMPOSITIONCHANGED notification.
            </summary>
            <param name="pfEnabled"></param>
            <returns></returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.DwmApiDll.DwmSetWindowAttribute(System.IntPtr,System.Int32,System.Int32@,System.Int32)">
            <summary>
            Sets the value of Desktop Window Manager (DWM) non-client rendering attributes for a window.
            </summary>
            <param name="hwnd">The handle to the window for which the attribute value is to be set.</param>
            <param name="attr">A flag describing which value to set, specified as a value of the DWMWINDOWATTRIBUTE enumeration. This parameter specifies which attribute to set, and the pvAttribute parameter points to an object containing the attribute value.</param>
            <param name="attrValue">A pointer to an object containing the attribute value to set. The type of the value set depends on the value of the dwAttribute parameter. The DWMWINDOWATTRIBUTE enumeration topic indicates, in the row for each flag, what type of value you should pass a pointer to in the pvAttribute parameter.</param>
            <param name="attrSize">The size, in bytes, of the attribute value being set via the pvAttribute parameter. The type of the value set, and therefore its size in bytes, depends on the value of the dwAttribute parameter.</param>
            <returns>If the function succeeds, it returns S_OK. Otherwise, it returns an HRESULT error code.
            If Desktop Composition has been disabled (Windows 7 and earlier), then this function returns DWM_E_COMPOSITIONDISABLED.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.DwmApiDll.Helpers.DwmIsCompositionEnabled">
            <summary>
            Obtains a value that indicates whether Desktop Window Manager (DWM) composition is enabled.
            Makes the call safely by checking the WinNT version first.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Functions.HOOKPROC">
            <summary>
            Hook delegate for the <see cref="M:JetBrains.Interop.WinApi.User32Dll.SetWindowsHookExW(System.Int32,JetBrains.Interop.WinApi.Functions.HOOKPROC,System.Void*,System.UInt32)" /> function.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Functions.IoCompletionCallback">
            <summary>
            Hook delegate for the <see cref="M:JetBrains.Interop.WinApi.User32Dll.SetWindowsHookExW(System.Int32,JetBrains.Interop.WinApi.Functions.HOOKPROC,System.Void*,System.UInt32)" /> function.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Functions.LPFNPSPCALLBACK">
            <summary>
            Function type for the <see cref="F:JetBrains.Interop.WinApi.Declarations.Structures.PROPSHEETPAGE.pfnCallback" /> field.
            </summary>
            <param name="hwnd"></param>
            <param name="nMsg">See <see cref="T:JetBrains.Interop.WinApi.Declarations.Constants.PropSheetPageProcMsg" /> members for values.</param>
            <param name="ppsp"></param>
            <returns></returns>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Functions.SendAsyncProc">
            <summary>
            An application-defined callback function used with the SendMessageCallback function. The system passes the message to the callback function after passing the message to the destination window procedure. The SENDASYNCPROC type defines a pointer to this callback function. SendAsyncProc is a placeholder for the application-defined function name.
            </summary>
            <param name="hwnd">A handle to the window whose window procedure received the message.</param>
            <param name="msg">The message.</param>
            <param name="pdwData">An application-defined value sent from the SendMessageCallback function.</param>
            <param name="lResult">The result of the message processing. This value depends on the message.</param>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Functions.WAITORTIMERCALLBACK">
            <summary>
            An application-defined function that serves as the starting address for a timer callback or a registered wait callback. Specify this address when calling the CreateTimerQueueTimer, RegisterWaitForSingleObject function.
            </summary>
            <param name="lpParameter"></param>
            <param name="TimerOrWaitFired"></param>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Functions.WNDPROC">
            <summary>
            An application-defined function that processes messages sent to a window. The WNDPROC type defines a pointer to this callback function. WindowProc is a placeholder for the application-defined function name.
            </summary>
            <param name="hwnd">Type: HWND. A handle to the window.</param>
            <param name="msg">The message.</param>
            <param name="wParam">Additional message information.</param>
            <param name="lParam">Additional message information.</param>
            <returns>Type: LRESULT. The return value is the result of the message processing and depends on the message sent.</returns>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Gdi32Dll">
            <summary>
            User32.dll functions.
            Must be 64bit-safe.
            </summary>
            <remarks>
            IMPORTANT! Rules for authoring the class (v1.1):
            (1) All the function declarations MUST be 64-bit aware.
            (2) When copypasting from older declarations, you MUST check against the MSDN help or header declaration, 
               and you MUST ensure that each parameter has a proper size.
            (3) Call the Wide version of the functions (UCS-2-LE) unless there's a strong reason for calling the ANSI version 
               (such a reason MUST be indicated in XmlDoc). <c>CharSet = CharSet.Unicode</c>.
            (4) ExactSpelling MUST be TRUE. Add the "…W" suffix wherever needed.
            (5) SetLastError SHOULD be considered individually for each function. Setting it to <c>True</c> allows to report the errors,
               but slows down the execution of critical members.
            (6) These properties MUST be explicitly set on DllImport attributes of EACH import: 
               CharSet, PreserveSig, SetLastError, ExactSpelling.
            (7) CLR names MUST be used for types instead of C# ones, eg "Int32" not "int" and "Int64" not "long".
               This greately improves the understanding of the parameter sizes.
            (8) Sign of the types MUST be favored, eg "DWORD" is "UInt32" not "Int32".
            (9) Unsafe pointer types should be used for explicit and implicit pointers rather than IntPtr. 
               This way we outline the unsafety of the native calls, and also make it more clear for the 64bit transition.
               Eg "HANDLE" is "void*". If the rule forces you to mark some assembly as unsafe, it's an indication a managed utility
               incapsulating the call and the handle should be provided in one of the already-unsafe assemblies.
            (A) Same rules must apply to members of the structures.
            (B) All of the structures MUST have the [StructLayout(LayoutKind.Sequential)], [NoReorder] attributes, as appropriate.
            </remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Gdi32Dll.BitBlt(System.Void*,System.Int32,System.Int32,System.Int32,System.Int32,System.Void*,System.Int32,System.Int32,System.UInt32)">
            <summary>
            The BitBlt function performs a bit-block transfer of the color data corresponding to a rectangle of pixels from the specified source device context into a destination device context.
            </summary>
            <param name="hdcDest">handle to destination DC</param>
            <param name="nXDest">x-coord of destination upper-left corner</param>
            <param name="nYDest">y-coord of destination upper-left corner</param>
            <param name="nWidth">width of destination rectangle</param>
            <param name="nHeight">height of destination rectangle</param>
            <param name="hdcSrc">handle to source DC</param>
            <param name="nXSrc">x-coordinate of source upper-left corner</param>
            <param name="nYSrc">y-coordinate of source upper-left corner</param>
            <param name="dwRop">raster operation code. Use <see cref="T:JetBrains.Interop.WinApi.Declarations.Constants.RasterOperations"/>.</param>
            <returns>If the function succeeds, the return value is nonzero. If the function fails, the return value is zero.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Gdi32Dll.CreateCompatibleDC(System.Void*)">
            <summary>
            The CreateCompatibleDC function creates a memory device context (DC) compatible with the specified device. 
            </summary>
            <param name="hdc">Handle to an existing DC. If this handle is NULL, the function creates a memory DC compatible with the application's current screen.</param>
            <returns>If the function succeeds, the return value is the handle to a memory DC. If the function fails, the return value is NULL.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Gdi32Dll.CreateDCW(System.String,System.String,System.String,System.Void*)">
            <summary>
            The CreateDC function creates a device context (DC) for a device using the specified name. 
            </summary>
            <param name="lpszDriver">Windows 95/98/Me: The lpszDriver parameter can be NULL, WINSPL16 (a print provider), or (to obtain a display DC) it can be either the null-terminated string DISPLAY or the device name of a specific display device. If lpszDevice specifies a particular device, you must use NULL for lpszDriver. 
            Windows NT 4.0: Pointer to a null-terminated character string that specifies either DISPLAY or the name of a print provider, which is usually WINSPOOL. 
            Windows 2000/XP: Pointer to a null-terminated character string that specifies either DISPLAY or the name of a specific display device or the name of a print provider, which is usually WINSPOOL. </param>
            <param name="lpszDevice">[in] Pointer to a null-terminated character string that specifies the name of the specific output device being used, as shown by the Print Manager (for example, Epson FX-80). It is not the printer model name. The lpszDevice parameter must be used. 
            To obtain valid names for displays, call EnumDisplayDevices. 
            If lpszDriver is DISPLAY or the device name of a specific display device, then lpszDevice must be NULL or that same device name. If lpszDevice is NULL, then a DC is created for the primary display device. 
            Windows NT 3.51 and Windows NT 4.0: There is only one (thus the primary) display device. Set lpszDevice to NULL. 
            Windows 2000 and later: If there are multiple monitors on the system, calling CreateDC(TEXT("DISPLAY"),NULL,NULL,NULL) will create a DC covering all the monitors. </param>
            <param name="lpszOutput">This parameter is ignored and should be set to NULL. It is provided only for compatibility with 16-bit Windows.</param>
            <param name="lpInitData">[in] Pointer to a DEVMODE structure containing device-specific initialization data for the device driver. The DocumentProperties function retrieves this structure filled in for a specified device. The lpInitData parameter must be NULL if the device driver is to use the default initialization (if any) specified by the user. 
            If lpszDriver is DISPLAY, then lpInitData must be NULL. The display device's current DEVMODE is used</param>
            <returns>If the function succeeds, the return value is the handle to a DC for the specified device. If the function fails, the return value is NULL. The function will return NULL for a DEVMODE structure other than the current DEVMODE.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Gdi32Dll.GetDeviceCaps(System.Void*,System.Int32)">
            <summary>
            The GetDeviceCaps function retrieves device-specific information for the specified device.
            </summary>
            <param name="hdc">A handle to the DC.</param>
            <param name="capindex">The item to be returned. See <seealso cref="T:JetBrains.Interop.WinApi.Declarations.Constants.DeviceCapabilityIndex"/> for possible values</param>
            <returns>The return value specifies the value of the desired item.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Gdi32Dll.CreateDIBSection(System.Void*,JetBrains.Interop.WinApi.Declarations.Structures.BITMAPINFO*,System.UInt32,System.Void**,System.Void*,System.Int32)">
            <summary>
            The CreateDIBSection function creates a DIB that applications can write to directly. The function gives you a pointer to the location of the bitmap bit values. You can supply a handle to a file-mapping object that the function will use to create the bitmap, or you can let the system allocate the memory for the bitmap.
            </summary>
            <param name="hdc">handle to DC</param>
            <param name="pbmi">bitmap data</param>
            <param name="iUsage">data type indicator. Use <see cref="T:JetBrains.Interop.WinApi.Declarations.Constants.DibColors"/>.</param>
            <param name="ppvBits">bit values</param>
            <param name="hSection">handle to file mapping object</param>
            <param name="dwOffset">offset to bitmap bit values</param>
            <returns>If the function succeeds, the return value is a handle to the newly created DIB, and *ppvBits points to the bitmap bit values. 
            If the function fails, the return value is NULL, and *ppvBits is NULL. </returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Gdi32Dll.CreateDIBitmap(System.Void*,JetBrains.Interop.WinApi.Declarations.Structures.BITMAPINFOHEADER*,System.UInt32,System.Void*,JetBrains.Interop.WinApi.Declarations.Structures.BITMAPINFO*,System.UInt32)">
            <summary>
            The CreateDIBitmap function creates a compatible bitmap (DDB) from a DIB and, optionally, sets the bitmap bits.
            </summary>
            <param name="hdc">handle to DC</param>
            <param name="lpbmih">bitmap data</param>
            <param name="fdwInit">initialization option</param>
            <param name="lpbInit">initialization data</param>
            <param name="lpbmi">color-format data</param>
            <param name="fuUsage">color-data usage. Use <see cref="T:JetBrains.Interop.WinApi.Declarations.Constants.DibColors"/>.</param>
            <returns>If the function succeeds, the return value is a handle to the compatible bitmap. 
            If the function fails, the return value is NULL.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Gdi32Dll.CreatePen(System.Int32,System.Int32,System.UInt32)">
            <summary>
            The CreatePen function creates a logical pen that has the specified style, width, and color. The pen can subsequently be selected into a device context and used to draw lines and curves. 
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Gdi32Dll.DeleteDC(System.Void*)">
            <summary>
            The DeleteDC function deletes the specified device context (DC).
            </summary>
            <param name="hDC">handle to DC</param>
            <returns>If the function succeeds, the return value is nonzero. If the function fails, the return value is zero.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Gdi32Dll.DeleteObject(System.Void*)">
            <summary>
            The DeleteObject function deletes a logical pen, brush, font, bitmap, region, or palette, freeing all system resources associated with the object. After the object is deleted, the specified handle is no longer valid. 
            </summary>
            <param name="hGDIObj">[in] Handle to a logical pen, brush, font, bitmap, region, or palette. </param>
            <returns>If the function succeeds, the return value is nonzero.
            If the specified handle is not valid or is currently selected into a DC, the return value is zero. 
            Windows NT/2000/XP: To get extended error information, call GetLastError.</returns>
            <remarks>
            Do not delete a drawing object (pen or brush) while it is still selected into a DC.
            When a pattern brush is deleted, the bitmap associated with the brush is not deleted. The bitmap must be deleted independently.
            </remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Gdi32Dll.GdiFlush">
            <summary>
            The GdiFlush function flushes the calling thread's current batch.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Gdi32Dll.GetStockObject(System.Int32)">
            <summary>
            The GetStockObject function retrieves a handle to one of the stock pens, brushes, fonts, or palettes.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Gdi32Dll.SelectObject(System.Void*,System.Void*)">
            <summary>
            The SelectObject function selects an object into the specified device context (DC). The new object replaces the previous object of the same type. 
            </summary>
            <param name="hDC">[in] Handle to the DC. </param>
            <param name="hGDIObj">[in] Handle to the object to be selected. The specified object must have been created by using one of the following functions. 
            Object Functions 
            Bitmap CreateBitmap, CreateBitmapIndirect, CreateCompatibleBitmap, CreateDIBitmap, CreateDIBSection (Bitmaps can be selected for memory DCs only, and for only one DC at a time.)
            Brush CreateBrushIndirect, CreateDIBPatternBrush, CreateDIBPatternBrushPt, CreateHatchBrush, CreatePatternBrush, CreateSolidBrush 
            Font CreateFont, CreateFontIndirect 
            Pen CreatePen, CreatePenIndirect 
            Region CombineRgn, CreateEllipticRgn, CreateEllipticRgnIndirect, CreatePolygonRgn, CreateRectRgn, CreateRectRgnIndirect
            </param>
            <returns>
            If the selected object is not a region and the function succeeds, the return value is a handle to the object being replaced. If the selected object is a region and the function succeeds, the return value is one of the following values.
            Value Meaning 
            SIMPLEREGION Region consists of a single rectangle. 
            COMPLEXREGION Region consists of more than one rectangle. 
            NULLREGION Region is empty. 
            If an error occurs and the selected object is not a region, the return value is NULL. Otherwise, it is HGDI_ERROR. 
            </returns>
            <remarks>
            This function returns the previously selected object of the specified type. An application should always replace a new object with the original, default object after it has finished drawing with the new object. 
            An application cannot select a bitmap into more than one DC at a time. 
            ICM: If the object being selected is a brush or a pen, color management is performed. 
            </remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Gdi32Dll.StretchBlt(System.Void*,System.Int32,System.Int32,System.Int32,System.Int32,System.Void*,System.Int32,System.Int32,System.Int32,System.Int32,System.UInt32)">
            <summary>
            The StretchBlt function copies a bitmap from a source rectangle into a destination rectangle, stretching or compressing the bitmap to fit the dimensions of the destination rectangle, if necessary. The system stretches or compresses the bitmap according to the stretching mode currently set in the destination device context. 
            </summary>
            <param name="hdcDest">[in] Handle to the destination device context.</param>
            <param name="nXOriginDest">[in] Specifies the x-coordinate, in logical units, of the upper-left corner of the destination rectangle. </param>
            <param name="nYOriginDest">[in] Specifies the y-coordinate, in logical units, of the upper-left corner of the destination rectangle. </param>
            <param name="nWidthDest">[in] Specifies the width, in logical units, of the destination rectangle. </param>
            <param name="nHeightDest">[in] Specifies the height, in logical units, of the destination rectangle.</param>
            <param name="hdcSrc">[in] Handle to the source device context. </param>
            <param name="nXOriginSrc">[in] Specifies the x-coordinate, in logical units, of the upper-left corner of the source rectangle.</param>
            <param name="nYOriginSrc">[in] Specifies the y-coordinate, in logical units, of the upper-left corner of the source rectangle.</param>
            <param name="nWidthSrc">[in] Specifies the width, in logical units, of the source rectangle. </param>
            <param name="nHeightSrc">[in] Specifies the height, in logical units, of the source rectangle. </param>
            <param name="dwRop">[in] Specifies the raster operation to be performed. Raster operation codes define how the system combines colors in output operations that involve a brush, a source bitmap, and a destination bitmap. See BitBlt for a list of common raster operation codes (ROPs). Note that the CAPTUREBLT ROP generally cannot be used for printing device contexts. Use the <see cref="T:JetBrains.Interop.WinApi.Declarations.Constants.RasterOperations"/> enum.</param>
            <returns>If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. Windows NT/2000/XP: To get extended error information, call GetLastError. </returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Gdi32Dll.CreateRectRgn(System.Int32,System.Int32,System.Int32,System.Int32)">
            <summary>
            The CreateRectRgn function creates a rectangular region.
            </summary>
            <param name="nLeftRect">[in] Specifies the x-coordinate of the upper-left corner of the region in logical units. </param>
            <param name="nTopRect">[in] Specifies the y-coordinate of the upper-left corner of the region in logical units. </param>
            <param name="nRightRect">[in] Specifies the x-coordinate of the lower-right corner of the region in logical units.</param>
            <param name="nBottomRect">[in] Specifies the y-coordinate of the lower-right corner of the region in logical units.</param>
            <returns></returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Gdi32Dll.CombineRgn(System.Void*,System.Void*,System.Void*,System.Int32)">
            <summary>
            The CombineRgn function combines two regions and stores the result in a third region. The two regions are combined according to the specified mode.
            </summary>
            <param name="hrgnDest">[in] Handle to a new region with dimensions defined by combining two other regions. (This region must exist before CombineRgn is called.) </param>
            <param name="hrgnSrc1">[in] Handle to the first of two regions to be combined.</param>
            <param name="hrgnSrc2">[in] Handle to the second of two regions to be combined.</param>
            <param name="fnCombineMode">[in] Specifies a mode indicating how the two regions will be combined. This parameter can be one of the following values. </param>
            <returns>The return value specifies the type of the resulting region. It can be one of the following values. </returns>
            <remarks>The three regions need not be distinct. For example, the hrgnSrc1 parameter can equal the hrgnDest parameter. </remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Gdi32Dll.SetDCBrushColor(System.Void*,System.UInt32)">
            <summary>
            SetDCBrushColor function sets the current device context (DC) brush color to the specified color value. If the device cannot represent the specified color value, the color is set to the nearest physical color.
            </summary>
            <param name="hdc">[in] Handle to the DC.</param>
            <param name="colorref">[in] Specifies the new brush color.</param>
            <returns>If the function succeeds, the return value specifies the previous DC brush color as a COLORREF value. If the function fails, the return value is CLR_INVALID.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Gdi32Dll.CreateCompatibleBitmap(System.Void*,System.Int32,System.Int32)">
            <summary>
            The CreateCompatibleBitmap function creates a bitmap compatible with the device that is associated with the specified device context.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Gdi32Dll.GetObject(System.Void*,System.Int32,System.Void*)">
            <summary>
            The GetObject function retrieves information for the specified graphics object.
            </summary>
            <param name="hgdiobj">A handle to the graphics object of interest. This can be a handle to one of the following: a logical bitmap, a brush, a font, a palette, a pen, or a device independent bitmap created by calling the CreateDIBSection function.</param>
            <param name="cbBuffer">The number of bytes of information to be written to the buffer.</param>
            <param name="lpvObject">A pointer to a buffer that receives the information about the specified graphics object.
            The following table shows the type of information the buffer receives for each type of graphics object you can specify with hgdiobj.
            <code>HBITMAP - BITMAP
            HBITMAP returned from a call to CreateDIBSection - DIBSECTION, if cbBuffer is set to sizeof (DIBSECTION), or BITMAP, if cbBuffer is set to sizeof (BITMAP).
            HPALETTE - A WORD count of the number of entries in the logical palette
            HPEN returned from a call to ExtCreatePen - EXTLOGPEN
            HPEN - LOGPEN
            HBRUSH - LOGBRUSH
            HFONT - LOGFONT</code>
            If the lpvObject parameter is NULL, the function return value is the number of bytes required to store the information it writes to the buffer for the specified graphics object.
             The address of lpvObject must be on a 4-byte boundary; otherwise, GetObject fails.
            </param>
            <returns>If the function succeeds, and lpvObject is a valid pointer, the return value is the number of bytes stored into the buffer.
            
            If the function succeeds, and lpvObject is NULL, the return value is the number of bytes required to hold the information the function would store into the buffer.
            
            If the function fails, the return value is zero.</returns>
        </member>
        <member name="T:JetBrains.Interop.WinApi.HResultHelpers">
            <summary>
            Helper methods related to the <c>HRESULT</c> type (see <see cref="T:JetBrains.Interop.WinApi.HResults" /> enum).
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.HResultHelpers.myCachedCanUseRecordedMessages">
            <summary>
            FAILED for non-initialized, S_OK if yes, S_FALSE if no.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.HResultHelpers.Assert(System.Int32,System.Int32[])">
            <summary>
            Checks the given <c>HRESULT</c>, if it's a failure one (<see cref="M:JetBrains.Interop.WinApi.HResultHelpers.FAILED(System.Int32)" />), and is not contained in <paramref name="expectedHRFailure" />, then an exception-from-hresult is thrown.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.HResultHelpers.Assert(System.Int32)">
            <summary>
            Checks the given <c>HRESULT</c>, and throws an exception if it's a failure one (<see cref="M:JetBrains.Interop.WinApi.HResultHelpers.FAILED(System.Int32)" />).
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.HResultHelpers.Assert(JetBrains.Interop.WinApi.HResults)">
            <summary>
            Checks the given <c>HRESULT</c>, and throws an exception if it's a failure one (<see cref="M:JetBrains.Interop.WinApi.HResultHelpers.FAILED(System.Int32)" />).
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.HResultHelpers.Assert(System.Int32,System.String)">
            <summary>
            Checks the given <c>HRESULT</c>, and throws an exception if it's a failure one (<see cref="M:JetBrains.Interop.WinApi.HResultHelpers.FAILED(System.Int32)" />).
            The comment is used in case of the failure only.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.HResultHelpers.Assert(JetBrains.Interop.WinApi.HResults,System.String)">
            <summary>
            Checks the given <c>HRESULT</c>, and throws an exception if it's a failure one (<see cref="M:JetBrains.Interop.WinApi.HResultHelpers.FAILED(System.Int32)" />).
            The comment is used in case of the failure only.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.HResultHelpers.Assert(JetBrains.Interop.WinApi.HResults,System.Action{System.Exception})">
            <summary>
            Checks the given <c>HRESULT</c>, and throws an exception if it's a failure one (<see cref="M:JetBrains.Interop.WinApi.HResultHelpers.FAILED(System.Int32)" />).
            The FComment function is called in case of the failure only, should use <c>AddData</c> to contribute to the exception report.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.HResultHelpers.FAILED(JetBrains.Interop.WinApi.HResults)">
            <summary>
            The <c>FAILED</c> WinAPI Macro.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.HResultHelpers.FAILED(System.Int32)">
            <summary>
            The <c>FAILED</c> WinAPI Macro.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.HResultHelpers.GetDisplayTextForHr(JetBrains.Interop.WinApi.HResults,System.Text.StringBuilder)">
            <summary>
            The part of <see cref="M:JetBrains.Interop.WinApi.HResultHelpers.GetFullMessageForHr(JetBrains.Interop.WinApi.HResults)" /> which just takes the display text representation of an HR (no error codes appended).
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.HResultHelpers.GetExceptionIfFailed(System.Int32)">
            <summary>
            Wrapper for <see cref="M:System.Runtime.InteropServices.Marshal.GetExceptionForHR(System.Int32)" />.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.HResultHelpers.GetExceptionIfFailed(System.Int32,System.String)">
            <summary>
            Wrapper for creating an exception over <see cref="M:System.Runtime.InteropServices.Marshal.GetExceptionForHR(System.Int32)" /> with a custom details message.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.HResultHelpers.GetFullMessageForHr(JetBrains.Interop.WinApi.HResults)">
            <summary>
              <para>Gets the system message for this <c>HResult</c>, if available (see <see cref="M:JetBrains.Interop.WinApi.HResultHelpers.TryGetOnlySystemMessageForHr(JetBrains.Interop.WinApi.HResults)" />). If not, gets the suitable dummy message (<see cref="M:JetBrains.Interop.WinApi.HResultHelpers.GetDummyOnlySystemLikeMessageForHr(JetBrains.Interop.WinApi.HResults)" />). In Mono, might use a cached message because Mono does not natively provide texts for system <c>HResults</c> on any OS.</para>
              <para>To that, appends the listing of all the known names for this <c>HResult</c>, based on the <see cref="T:JetBrains.Interop.WinApi.HResults" /> lookup, and the numerical hex value of that <c>HResult</c>.</para>
              <para>This would never be neither <c>NULL</c> nor empty, and would always list the exact <c>HResult</c> value.</para>
              <para>For non-failure codes, this function also provides a message, even though a system message is never available for it.</para>
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.HResultHelpers.GetNamesAndIntsForHResult(JetBrains.Interop.WinApi.HResults,System.Text.StringBuilder)">
            <summary>
            See <see cref="M:JetBrains.Interop.WinApi.HResultHelpers.GetNamesForHResult(JetBrains.Interop.WinApi.HResults)" />. Formats them as a string separated with <c>, or</c> and adds numerical representation.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.HResultHelpers.GetNamesForHResult(JetBrains.Interop.WinApi.HResults)">
            <summary>
              <para>Gets all possible names for this HResult constant, if known by the <see cref="T:JetBrains.Interop.WinApi.HResults" /> enumeration, by yielding names of fields with such a value.
            An empty list if not known.</para>
              <para>The sorting order is mostly by common sense, with more commonly used values placed first.</para>
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.HResultHelpers.HResultFromWin32(JetBrains.Interop.WinApi.WinError)">
            <summary>
            Maps a system error code to an HRESULT value.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.HResultHelpers.SUCCEEDED(JetBrains.Interop.WinApi.HResults)">
            <summary>
            The <c>SUCCEEDED</c> WinAPI Macro.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.HResultHelpers.SUCCEEDED(System.Int32)">
            <summary>
            The <c>SUCCEEDED</c> WinAPI Macro.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.HResultHelpers.ThrowExceptionIfFailed(System.Int32)">
            <summary>
            Core wrapper for <see cref="M:System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(System.Int32)" />.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.HResultHelpers.ThrowExceptionIfFailed(System.Int32,System.String)">
            <summary>
            Creates a wrapping exception with a custom message over the COM exception.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.HResultHelpers.TryGetOnlySystemMessageForHr(JetBrains.Interop.WinApi.HResults)">
            <summary>
              <para>Gets the system message for this <c>HResult</c>, if it's meaningful. Otherwise, <c>NULL</c>.</para>
              <para>Meaningful messages come either from <c>Kernel32!FormatMessageW</c>, or from runtime-stored mapping, or from the <c>IErrorInfo</c>.</para>
              <para>Meaningless messages are either just the HResult numerical value, or one of the known constants from <see cref="T:JetBrains.Interop.WinApi.HResults" />, or even an empty string (in case of Mono). For these, we would return <c>NULL</c>.</para>
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.HResultHelpers.GetDummyOnlySystemLikeMessageForHr(JetBrains.Interop.WinApi.HResults)">
            <summary>
            Default message: just failed or succeeded, failure code or names not included here. A fallback for <see cref="M:JetBrains.Interop.WinApi.HResultHelpers.TryGetOnlySystemMessageForHr(JetBrains.Interop.WinApi.HResults)" /> (which eg fails for all success codes).
            The HResult names or values are not added at this stage.
            This is never NULL nor empty, even for success codes.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.HttpapiDll">
            <summary>
            Httpapi.dll functions.
            Must be 64bit-safe.
            </summary>
            <remarks>
            IMPORTANT! Rules for authoring the class (v1.1):
            (1) All the function declarations MUST be 64-bit aware.
            (2) When copypasting from older declarations, you MUST check against the MSDN help or header declaration, 
               and you MUST ensure that each parameter has a proper size.
            (3) Call the Wide version of the functions (UCS-2-LE) unless there's a strong reason for calling the ANSI version 
               (such a reason MUST be indicated in XmlDoc). <c>CharSet = CharSet.Unicode</c>.
            (4) ExactSpelling MUST be TRUE. Add the "…W" suffix wherever needed.
            (5) SetLastError SHOULD be considered individually for each function. Setting it to <c>True</c> allows to report the errors,
               but slows down the execution of critical members.
            (6) These properties MUST be explicitly set on DllImport attributes of EACH import: 
               CharSet, PreserveSig, SetLastError, ExactSpelling.
            (7) CLR names MUST be used for types instead of C# ones, eg "Int32" not "int" and "Int64" not "long".
               This greately improves the understanding of the parameter sizes.
            (8) Sign of the types MUST be favored, eg "DWORD" is "UInt32" not "Int32".
            (9) Unsafe pointer types should be used for explicit and implicit pointers rather than IntPtr. 
               This way we outline the unsafety of the native calls, and also make it more clear for the 64bit transition.
               Eg "HANDLE" is "void*". If the rule forces you to mark some assembly as unsafe, it's an indication a managed utility
               incapsulating the call and the handle should be provided in one of the already-unsafe assemblies.
            (A) Same rules must apply to members of the structures.
            (B) All of the structures MUST have the [StructLayout(LayoutKind.Sequential)], [NoReorder] attributes, as appropriate.
            </remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.HttpapiDll.HttpInitialize(JetBrains.Interop.WinApi.Declarations.Constants.HTTPAPI_VERSION,System.UInt32,System.Void*)">
            <summary>The HttpInitialize function initializes the HTTP Server API driver, starts it, if it has not already been started, and allocates data structures for the calling application to support response-queue creation and other operations. Call this function before calling any other functions in the HTTP Server API.</summary>
            <param name="Version">HTTP version. This parameter is an HTTPAPI_VERSION structure. For the current version, declare an instance of the structure and set it to the pre-defined value HTTPAPI_VERSION_1 before passing it to HttpInitialize.</param>
            <param name="Flags">Initialization options, <see cref="T:JetBrains.Interop.WinApi.Declarations.Constants.HTTP_INITIALIZE_Flags"/>.</param>
            <param name="pReserved">This parameter is reserved and must be NULL.</param>
            <returns>If the function succeeds, the return value is NO_ERROR.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.HttpapiDll.HttpTerminate(System.UInt32,System.Void*)">
            <summary>The HttpTerminate function cleans up resources used by the HTTP Server API to process calls by an application. An application should call HttpTerminate once for every time it called HttpInitialize, with matching flag settings.</summary>
            <param name="Flags">Termination options, <see cref="T:JetBrains.Interop.WinApi.Declarations.Constants.HTTP_INITIALIZE_Flags"/>.</param>
            <param name="pReserved">This parameter is reserved and must be NULL.</param>
            <returns>If the function succeeds, the return value is NO_ERROR.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.HttpapiDll.HttpQueryServiceConfiguration(System.Void*,JetBrains.Interop.WinApi.Declarations.Constants.HTTP_SERVICE_CONFIG_ID,System.Void*,System.UInt32,System.Void*,System.UInt32,System.UInt32*,System.Void*)">
            <summary>The HttpQueryServiceConfiguration function retrieves one or more HTTP Server API configuration records.</summary>
            <param name="ServiceHandle">Reserved. Must be zero.</param>
            <param name="ConfigId">The configuration record query type. This parameter is one of the following values from the <see cref="T:JetBrains.Interop.WinApi.Declarations.Constants.HTTP_SERVICE_CONFIG_ID"/> enumeration.</param>
            <param name="pInput">A pointer to a structure whose contents further define the query and of the type that correlates with ConfigId.</param>
            <param name="InputLength">Size, in bytes, of the pInputConfigInfo buffer.</param>
            <param name="pOutput">A pointer to a buffer in which the query results are returned. The type of this buffer correlates with ConfigId.</param>
            <param name="OutputLength">Size, in bytes, of the pOutputConfigInfo buffer.</param>
            <param name="pReturnLength">A pointer to a variable that receives the number of bytes to be written in the output buffer. If the output buffer is too small, the call fails with a return value of ERROR_INSUFFICIENT_BUFFER. The value pointed to by pReturnLength can be used to determine the minimum length the buffer requires for the call to succeed.</param>
            <param name="pOverlapped">Reserved for asynchronous operation and must be set to NULL.</param>
            <returns>If the function succeeds, the return value is NO_ERROR.</returns>
        </member>
        <member name="T:JetBrains.Interop.WinApi.ImagehlpDll">
            <summary>
            Windows NT Image Helper (IMAGEHLP.DLL) functions.
            Must be 64bit-safe.
            </summary>
            <remarks>
            IMPORTANT! Rules for authoring the class (v1.1):
            (1) All the function declarations MUST be 64-bit aware.
            (2) When copypasting from older declarations, you MUST check against the MSDN help or header declaration,
               and you MUST ensure that each parameter has a proper size.
            (3) Call the Wide version of the functions (UCS-2-LE) unless there's a strong reason for calling the ANSI version
               (such a reason MUST be indicated in XmlDoc). <c>CharSet = CharSet.Unicode</c>.
            (4) ExactSpelling MUST be TRUE. Add the "…W" suffix wherever needed.
            (5) SetLastError SHOULD be considered individually for each function. Setting it to <c>True</c> allows to report the errors,
               but slows down the execution of critical members.
            (6) These properties MUST be explicitly set on DllImport attributes of EACH import:
               CharSet, PreserveSig, SetLastError, ExactSpelling.
            (7) CLR names MUST be used for types instead of C# ones, eg "Int32" not "int" and "Int64" not "long".
               This greately improves the understanding of the parameter sizes.
            (8) Sign of the types MUST be favored, eg "DWORD" is "UInt32" not "Int32".
            (9) Unsafe pointer types should be used for explicit and implicit pointers rather than IntPtr.
               This way we outline the unsafety of the native calls, and also make it more clear for the 64bit transition.
               Eg "HANDLE" is "void*". If the rule forces you to mark some assembly as unsafe, it's an indication a managed utility
               incapsulating the call and the handle should be provided in one of the already-unsafe assemblies.
            (A) Same rules must apply to members of the structures.
            (B) All of the structures MUST have the [StructLayout(LayoutKind.Sequential)], [NoReorder] attributes, as appropriate.
            </remarks>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Interfaces.IClrMetaHost">
            <summary>
            Provides methods that return a specific version of the common language runtime (CLR) based on its version number, list all installed CLRs, list all runtimes that are loaded in a specified process, discover the CLR version used to compile an assembly, exit a process with a clean runtime shutdown, and query legacy API binding.
            </summary>
            <code>
            ICLRMetaHost* pMetaHost = NULL;
            HRESULT hr = CLRCreateInstance(CLSID_CLRMetaHost, IID_ICLRMetaHost, (LPVOID*) &amp; pMetaHost);
            </code>
            <remarks>.NET Framework Versions: 4.5, 4.</remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.IClrMetaHost.GetRuntime(System.String,System.Guid,System.Object@)">
            <summary>
            Gets the ICLRRuntimeInfo interface that corresponds to a particular version of the common language runtime (CLR). This method supersedes the CorBindToRuntimeEx function used with the STARTUP_LOADER_SAFEMODE flag.
            </summary>
            HRESULT GetRuntime([in] LPCWSTR pwzVersion, [in, REFIID riid, [out, iid_is(riid), retval] LPVOID* ppRuntime);
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.IClrMetaHost.GetVersionFromFile(System.String,System.Text.StringBuilder,System.UInt32@)">
            <summary>
            Gets an assembly's original .NET Framework compilation version (stored in the metadata), given its file path. This method supersedes the GetFileVersion function.
            </summary>
            HRESULT GetVersionFromFile([in] LPCWSTR pwzFilePath, [out, size_is(*pcchBuffer)] LPWSTR pwzBuffer, [in, out] DWORD* pcchBuffer);
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.IClrMetaHost.EnumerateInstalledRuntimes(JetBrains.Interop.WinApi.Interfaces.IEnumUnknown@)">
            <summary>
            Returns an enumeration that contains a valid ICLRRuntimeInfo interface for each version of the common language runtime (CLR) that is installed on a computer.
            </summary>
            HRESULT EnumerateInstalledRuntimes([out, retval] IEnumUnknown** ppEnumerator);
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.IClrMetaHost.EnumerateLoadedRuntimes(System.Void*,JetBrains.Interop.WinApi.Interfaces.IEnumUnknown@)">
            <summary>
            Returns an enumeration that includes a valid ICLRRuntimeInfo interface pointer for each version of the common language runtime (CLR) that is loaded in a given process. This method supersedes the GetVersionFromProcess function.
            </summary>
            HRESULT EnumerateLoadedRuntimes([in] HANDLE hndProcess, [out, retval] IEnumUnknown** ppEnumerator);
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.IClrMetaHost.RequestRuntimeLoadedNotification(System.Void*)">
            <summary>
            Provides a callback function that is guaranteed to be called when a common language runtime (CLR) version is first loaded, but not yet started. This method supersedes the LockClrVersion function.
            </summary>
            HRESULT RequestRuntimeLoadedNotification([in] RuntimeLoadedCallbackFnPtr pCallbackFunction);
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.IClrMetaHost.QueryLegacyV2RuntimeBinding(System.Guid,System.Object@)">
            <summary>
            Returns an interface that represents a runtime to which legacy activation policy has been bound, for example, by using the useLegacyV2RuntimeActivationPolicy attribute on the [startup] element configuration file entry, by direct use of the legacy activation APIs, or by calling the ICLRRuntimeInfo::BindAsLegacyV2Runtime method.
            </summary>
            HRESULT QueryLegacyV2RuntimeBinding([in] REFIID riid, [out, iid_is(riid), retval] LPVOID* ppUnk);
        </member>
        <member name="T:JetBrains.Interop.WinApi.Interfaces.IClrRuntimeInfo">
            <summary>
            Provides methods that return information about a specific common language runtime (CLR), including version, directory, and load status. 
            This interface also provides runtime-specific functionality without initializing the runtime. 
            It includes the runtime-relative LoadLibrary method, the runtime module-specific GetProcAddress method, and runtime-provided interfaces through the GetInterface method.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.IClrRuntimeInfo.GetVersionString(System.Text.StringBuilder,System.UInt32@)">
            <summary>
            Gets common language runtime (CLR) version information associated with a given ICLRRuntimeInfo interface. This method supersedes GetRequestedRuntimeInfo and GetRequestedRuntimeVersion functions.
            </summary>
            <param name="buffer">
            <para>The .NET Framework compilation version in the format "vA.B[.X]". A, B, and X are decimal numbers that correspond to the major version, the minor version, and the build number. X is optional. If X is not present, there is no trailing period.</para>
            <para>This parameter must match the directory name for the .NET Framework version, as it appears under C:\Windows\Microsoft.NET\Framework.</para>
            <para>Example values are "v1.0.3705", "v1.1.4322", "v2.0.50727", and "v4.0.x", where x depends on the build number installed. Note that the "v" prefix is mandatory.</para>
            </param>
            <param name="bufferLength">Specifies the size of pwzBuffer to avoid buffer overruns. If pwzBuffer is null, pchBuffer returns the required size of pwzBuffer to allow preallocation.</param>
            <returns>HRESULT</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.IClrRuntimeInfo.GetRuntimeDirectory(System.Text.StringBuilder,System.UInt32@)">
            <summary>
            Gets the installation directory of the common language runtime (CLR) associated with this interface. This method supersedes the GetCORSystemDirectory function provided in the .NET Framework versions 2.0, 3.0, and 3.5.
            </summary>
            <param name="buffer">Returns the CLR installation directory. The installation path is fully qualified; for example, "c:\windows\microsoft.net\framework\v1.0.3705\".</param>
            <param name="bufferLength">Specifies the size of pwzBuffer to avoid buffer overruns. If pwzBuffer is null, pchBuffer returns the required size of pwzBuffer.</param>
            <returns>HRESULT</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.IClrRuntimeInfo.IsLoaded(System.Void*,System.Boolean@)">
            <summary>
            Indicates whether the common language runtime (CLR) associated with the ICLRRuntimeInfo interface is loaded into a process. A runtime can be loaded without also being started.
            </summary>
            <param name="processHandle">A handle to the process.</param>
            <param name="isLoaded">True if the CLR is loaded into the process; otherwise, false.</param>
            <returns>HRESULT</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.IClrRuntimeInfo.LoadErrorString(System.Int32,System.Text.StringBuilder,System.UInt32@)">
            <summary>
            Translates an HRESULT value into an appropriate error message for the specified culture. This method supersedes the following functions: LoadStringRC, LoadStringRCEx.
            </summary>
            <param name="resourceId">The HRESULT to translate.</param>
            <param name="buffer">The message string associated with the given HRESULT.</param>
            <param name="bufferLength">The size of pwzbuffer to avoid buffer overruns. If pwzbuffer is null, pcchBuffer provides the expected size of pwzbuffer to allow preallocation.</param>
            <param name="iLocaleID">The culture identifier. To use the default culture, you must specify -1.</param>
            <returns>HRESULT</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.IClrRuntimeInfo.LoadLibrary(System.String,System.Void*@)">
            <summary>
            Loads a .NET Framework library from the common language runtime (CLR) represented by an ICLRRuntimeInfo interface. This method supersedes the LoadLibraryShim function.
            </summary>
            <param name="dllName">The name of the assembly to be loaded.</param>
            <param name="hModule">A handle to the loaded assembly.</param>
            <returns>HRESULT</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.IClrRuntimeInfo.GetProcAddress(System.String,System.Void*@)">
            <summary>
            Gets the address of a specified function that was exported from the common language runtime (CLR) associated with this interface. This method supersedes the GetRealProcAddress function.
            </summary>
            <param name="procName">The name of the exported function.</param>
            <param name="pProc">The address of the exported function.</param>
            <returns>HRESULT</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.IClrRuntimeInfo.GetInterface(System.Guid,System.Guid,System.Object@)">
            <summary>
            Loads the CLR into the current process and returns runtime interface pointers, such as ICLRRuntimeHost, ICLRStrongName, ICorDebug, and IMetaDataDispenserEx. This method supersedes all the CorBindTo* functions in the .NET Framework 1.1 and 2.0 Hosting Global Static Functions section.
            </summary>
            <param name="clsid">The CLSID interface for the coclass.</param>
            <param name="iid">The IID of the requested rclsid interface.</param>
            <param name="ppUnk">A pointer to the queried interface.</param>
            <returns>HRESULT</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.IClrRuntimeInfo.IsLoadable(System.Boolean@)">
            <summary>
            Indicates whether the runtime associated with this interface can be loaded into the current process, taking into account other runtimes that might already be loaded into the process.
            </summary>
            <param name="isLoaded">True if this runtime could be loaded into the current process; otherwise, false.</param>
            <returns>HRESULT</returns>
            <remarks>
            If another runtime is already loaded into the process and the runtime associated with this interface can be loaded for in-process side-by-side execution, pbLoadable returns true. If the two runtimes cannot run side-by-side in-process, pbLoadable returns false. For example, the common language runtime (CLR) version 4 can run side-by-side in the same process with CLR version 2.0 or CLR version 1.1. However, CLR version 1.1 and CLR version 2.0 cannot run side-by-side in-process.
            If no runtimes are loaded into the process, this method always returns true.
            </remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.IClrRuntimeInfo.SetDefaultStartupFlags(System.UInt32,System.String)">
            <summary>
            Sets the startup flags and the host configuration file that will be used to start the runtime. This method supersedes the use of the startupFlags parameter in the CorBindToRuntimeEx and CorBindToRuntimeHost functions.
            </summary>
            <param name="dwStartupFlags">The host startup flags to set. Use the same flags as with the CorBindToRuntimeEx and CorBindToRuntimeHost functions.</param>
            <param name="pwzHostConfigFile">The directory path of the host configuration file to set.</param>
            <returns>HRESULT</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.IClrRuntimeInfo.GetDefaultStartupFlags(System.UInt32@,System.Text.StringBuilder,System.UInt32@)">
            <summary>
            Gets the startup flags and host configuration file that will be used to start the runtime.
            </summary>
            <param name="dwStartupFlags"> A pointer to the host startup flags that are currently set.</param>
            <param name="pwzHostConfigFile">A pointer to the directory path of the current host configuration file.</param>
            <param name="pcchHostConfigFile">On input, the size of pwzHostConfigFile, to avoid buffer overruns. If pwzHostConfigFile is null, the method returns the required size of pwzHostConfigFile for pre-allocation.</param>
            <returns>HRESULT</returns>
            <remarks>
            This method returns the default flag values (STARTUP_CONCURRENT_GC and NULL), or the values provided by a previous call to the ICLRRuntimeInfo::SetDefaultStartupFlags method, or the values set by any of the CorBind* methods if they are bound to this runtime.
            </remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.IClrRuntimeInfo.BindAsLegacyV2Runtime">
            <summary>
            Binds the current runtime for all legacy common language runtime (CLR) version 2 activation policy decisions.
            </summary>
            <returns>HRESULT</returns>
            <remarks>
            If the current runtime is already bound for all legacy CLR version 2 activation policy decisions (for example, by using the useLegacyV2RuntimeActivationPolicy attribute on the &lt;startup&gt; element in the configuration file), this method does not return an error result; instead, the result is S_OK, just as it would be if the method had successfully bound legacy activation policy.
            </remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.IClrRuntimeInfo.IsStarted(System.Boolean@,System.UInt32@)">
            <summary>
            Indicates whether the runtime has been started (that is, whether the ICLRRuntimeHost::Start method has been called and has succeeded).
            </summary>
            <param name="isStarted">True if this runtime is started; otherwise, false.</param>
            <param name="dwStartupFlags">Returns the flags that were used to start the runtime.</param>
            <returns>HRESULT</returns>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Interfaces.IEnumUnknown">
            <summary>
            Enumerates objects with the IUnknown interface. It can be used to enumerate through the objects in a component containing multiple objects.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.IEnumUnknown.Next(System.UInt32,System.Object[],System.UInt32@)">
            <summary>
            Retrieves the specified number of items in the enumeration sequence.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.IEnumUnknown.Skip(System.UInt32)">
            <summary>
            Skips over the specified number of items in the enumeration sequence.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.IEnumUnknown.Reset">
            <summary>
            Resets the enumeration sequence to the beginning.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.IEnumUnknown.Clone(JetBrains.Interop.WinApi.Interfaces.IEnumUnknown@)">
            <summary>
            Creates a new enumerator that contains the same enumeration state as the current one.
            </summary>
            <remarks>This method makes it possible to record a point in the enumeration sequence in order to return to that point at a later time. The caller must release this new enumerator separately from the first enumerator.</remarks>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Interfaces.IMsoComponent">
            <summary>
            Provides components that need idle time, such as packages that manage modeless top-level windows, with access to the message loop and other facilities. 
            </summary>
            <remarks>
            Register the interface with the component manager that implements the IMsoComponentManager interface.
            The interface is also declared in internal class System.Windows.Forms.UnsafeNativeMethods (Assembly: System.Windows.Forms, Version=4.0.0.0)
            </remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.IMsoComponent.FDebugMessage(System.IntPtr,System.UInt32,System.IntPtr,System.IntPtr)">
            <summary>
            This method is reserved for internal use and is not intended to be used in your code. This method always returns TRUE.
            </summary>
            <remarks>
            In Microsoft.VisualStudio.OLE.Interop.IOleComponent inerface this method is called FReserved1.
            </remarks>
            <prototype>
            BOOL FDebugMessage(HANDLE hinst, UINT message, WPARAM wParam, LPARAM lParam);
            </prototype>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.IMsoComponent.FPreTranslateMessage(JetBrains.Interop.WinApi.MSG[])">
            <summary>
            Enables components to process a message before the message is translated and is dispatched. 
            </summary>
            <returns>TRUE to indicate that the message is consumed; otherwise, FALSE</returns>
            <remarks>
            Components can use the TranslateAccelerator function, use the IsDialogMessage function, modify the pMsg parameter, or take some other action.
            </remarks>
            <prototype>
            BOOL FPreTranslateMessage(MSG *pMsg);
            </prototype>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.IMsoComponent.OnEnterState(System.UInt32,System.Int32)">
            <summary>
            Notifies a component when the application enters or exits the state specified by the uStateId parameter.
            </summary>
            <remarks>
            The component should take action depending on the value of the uStateId parameter (see msocstateXxx flags).
            
            If n calls are made with the fEnter parameter equal to TRUE, the component should consider the state to be in effect 
            until n calls are made with the fEnter parameter equal to FALSE.  
            
            It is possible for this method to be called with the fEnter parameter equal to FALSE more times than it was called with TRUE. 
            The counter should not be decremented for FALSE if it is already at 0.
            </remarks>
            <prototype>
            void OnEnterState(ULONG uStateID, BOOL fEnter);
            </prototype>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.IMsoComponent.OnAppActivate(System.Int32,System.UInt32)">
            <summary>
            Notifies the component when the host application gains or loses activation.
            </summary>
            <prototype>
            void OnAppActivate(BOOL fActive, DWORD dwOtherThreadID);
            </prototype>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.IMsoComponent.OnLoseActivation">
            <summary>
            Notifies the active component that it has lost its active status because the host or another component has become active.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.IMsoComponent.OnActivationChange(System.Object,System.Int32,JetBrains.Interop.WinApi.MSOCRINFO*,System.Int32,JetBrains.Interop.WinApi.MSOCHOSTINFO*,System.UInt32)">
            <summary>
            Notifies the component when a new object is being activated.
            </summary>
            <param name="component">A pointer to the component being activated. Can be NULL.</param>
            <param name="fSameComponent">TRUE to indicate that the component parameter is the same component registration as the component that this method is being called on; otherwise, FALSE.</param>
            <param name="pcrinfo">A pointer to an MSOCRINFO structure that specifies the active component’s registration information. Can be NULL.</param>
            <param name="fHostIsActivating">TRUE to indicate that the host object is being activated; otherwise, FALSE. 
            If the fHostIsActivating parameter is TRUE and the component parameter is NULL, the host object is being activated. 
            If the fHostIsActivating parameter is FALSE and the component parameter is NULL, there is no current active object</param>
            <param name="pchostinfo">A pointer to an MSOCHOSTINFO structure that specifies the host component's information. Can be NULL.</param>
            <param name="dwReserved">Reserved for future use. Should be 0.</param>
            <prototype>
            void OnActivationChange(IMsoComponent *pic, BOOL fSameComponent, const MSOCRINFO *pcrinfo, BOOL fHostIsActivating, const MSOCHOSTINFO *pchostinfo, DWORD dwReserved);
            </prototype>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.IMsoComponent.FDoIdle(System.UInt32)">
            <summary>
            Enables the component to do idle-time tasks.
            </summary>
            <param name="grfidlef">The type of idle-time tasks to perform. The type of tasks are specified by a combination of the values of the following flags:
            msoidlefPeriodic = 1      Specifies to perform periodic idle-time tasks.
            msoidlefNonPeriodic = 2   Specifies to perform any nonperiodic idle-time tasks.
            msoidlefPriority = 4      Specifies to perform high priority, nonperiodic idle-time tasks.
            msoidlefAll = 0xFFFFFFFF  Specifies to perform all idle-time tasks.</param>
            <returns>TRUE to indicate that more time is needed to perform the idle-time tasks; otherwise, FALSE.</returns>
            <remarks>
            The component may periodically call the IMsoComponentManager::FContinueIdle method. 
            If the FContinueIdle method returns FALSE, the component should terminate its idle-time processing and return.
            If a component reaches a point where it has no idle-time tasks and does not need IMsoComponent::FDoIdle method calls, 
            it should remove its idle task registration by calling the IMsoComponentManager::FUpdateComponentRegistration method.
            If this method is called while the component is performing a tracking operation, 
            the component should perform only idle-time tasks that are appropriate to perform during tracking.
            </remarks>
            <prototype>
            BOOL FDoIdle(DWORD grfidlef);
            </prototype>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.IMsoComponent.FContinueMessageLoop(System.UInt32,System.Void*,JetBrains.Interop.WinApi.MSG[])">
            <summary>
            Indicates whether the message loop pushed by the component should continue.
            </summary>
            <param name="uReason">Specifies the reason the message loop is being pushed. For more information, see the Msoloop enumeration.</param>
            <param name="pvLoopData">The component's private data.</param>
            <param name="pMsgPeeked">A pointer to the next message in the queue. This parameter is NULL if there are no more messages in the queue.</param>
            <returns>TRUE to indicate that the message loop should continue; otherwise, FALSE.</returns>
            <remarks>
            This method is called after peeking the next message in the queue (by calling the PeekMessage function) but before the message is removed from the queue. 
            The peeked message is passed in the pMsgPeeked parameter. This method may be called again when the next message has already been removed from the queue, 
            in which case the pMsgPeeked parameter is NULL.
            If this method returns FALSE, the component manager terminates the loop without removing from the queue the message specified by the pMsgPeeked parameter.
            </remarks>
            <prototype>
            BOOL FContinueMessageLoop(ULONG uReason, void *pvLoopData, MSG *pMsgPeeked);
            </prototype>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.IMsoComponent.FQueryTerminate(System.Int32)">
            <summary>
            Specifies whether the component can terminate.
            </summary>
            <param name="fPromptUser">TRUE to indicate that the component might need to prompt the user; otherwise, FALSE.</param>
            <returns>TRUE if the component can terminate; otherwise, FALSE.</returns>
            <remarks>
            This method is called by the component manager to determine whether the component is in a state in which it can terminate.
            
            If fPromptUser is TRUE, the component may query the user, as appropriate, to determine whether it should terminate. 
            If it cannot terminate, it should inform the user of why it cannot terminate. 
            If fPromptUser is FALSE, the component should make its decision without querying or informing the user.
            </remarks>
            <prototype>
            BOOL FQueryTerminate(BOOL fPromptUser);
            </prototype>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.IMsoComponent.Terminate">
            <summary>
            Terminates the registration of the IMsoComponent interface.
            </summary>
            <remarks>
            The IMsoComponent interface should revoke its registration with the component manager, release references to the component manager, and then perform any necessary cleanup.
            </remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.IMsoComponent.HwndGetWindow(System.UInt32,System.UInt32)">
            <summary>
            Retrieves a window that is associated with the component.
            </summary>
            <param name="dwWhich">The window for which to obtain the window handle (HWND). The possible values are:
            msocWindowFrameToplevel = 0 Specifies the top frame window. 
                                        Multiple-document interface (MDI) applications should return the MDI frame (not the MDI client) or the application frame window. 
                                        Single-document interface (SDI) applications should return the frame window that hosts the component. 
                                        This should be the topmost window that owns the component.
            msocWindowFrameOwner = 1    Specifies the window that owns the component. 
                                        The window may be the same as the top frame window, or may be an owned window of the top frame window.
            msocWindowComponent = 2     Specifies the main window of the component.
            msocWindowDlgOwner = 3      Specifies that the caller needs to display a dialog box to be owned by the component. 
                                        The component should return a window that is suitable for use as the dialog box's owner window.</param>
            <param name="dwReserved">Reserved for future use. Should be 0.</param>
            <returns>The handle to the window associated with the component. If this method fails or the window does not exist, NULL is returned.</returns>
            <prototype>
            HWND HwndGetWindow(DWORD dwWhich, DWORD dwReserved);
            </prototype>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Interfaces.IMsoComponentManager">
            <summary>
            Defines a component manager, which is an object that coordinates other components by using its message loop for message processing and allocation of idle time.
            </summary>
            <remarks>
            You can get an instance of this interface by calling the CoRegisterMessageFilter function to get a reference to the current message filter. 
            Ensure that you immediately call the CoRegisterMessageFilter function again to put the object back right away. 
            Then call the QueryInterface method on the returned message filter to get an IServiceProvider interface. 
            Finally, call the QueryService method on the IServiceProvider interface to get an IMsoComponentManager interface.
            
            The interface is also declared in internal class System.Windows.Forms.UnsafeNativeMethods (Assembly: System.Windows.Forms, Version=4.0.0.0)
            </remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.IMsoComponentManager.QueryService(System.Guid@,System.Guid@,System.Object@)">
            <prototype>
            HRESULT QueryService(REFGUID guidService, REFIID iid, void** ppvObj);
            </prototype>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.IMsoComponentManager.FDebugMessage(System.IntPtr,System.UInt32,System.IntPtr,System.IntPtr)">
            <prototype>
            BOOL FDebugMessage(ULONG dwReserved, ULONG message, DWORD_PTR wParam, DWORD_PTR lParam);
            </prototype>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.IMsoComponentManager.FRegisterComponent(JetBrains.Interop.WinApi.Interfaces.IMsoComponent,JetBrains.Interop.WinApi.MSOCRINFO[],System.IntPtr@)">
            <prototype>
            BOOL FRegisterComponent(IMsoComponent *piComponent, const MSOCRINFO *pcrinfo, DWORD_PTR *pdwComponentID);
            </prototype>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.IMsoComponentManager.FRevokeComponent(System.IntPtr)">
            <prototype>
            BOOL FRevokeComponent(DWORD_PTR dwComponentID);
            </prototype>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.IMsoComponentManager.FUpdateComponentRegistration(System.IntPtr,JetBrains.Interop.WinApi.MSOCRINFO[])">
            <prototype>
            BOOL FUpdateComponentRegistration(DWORD_PTR dwComponentID, const MSOCRINFO *pcrinfo);
            </prototype>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.IMsoComponentManager.FOnComponentActivate(System.IntPtr)">
            <prototype>
            BOOL FOnComponentActivate(DWORD_PTR dwComponentID);
            </prototype>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.IMsoComponentManager.FSetTrackingComponent(System.IntPtr,System.Int32)">
            <prototype>
            BOOL FSetTrackingComponent(DWORD_PTR dwComponentID, ULONG grftrack);
            </prototype>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.IMsoComponentManager.OnComponentEnterState(System.IntPtr,System.UInt32,System.UInt32,System.UInt32,System.Void**,System.UInt32)">
            <prototype>
            void OnComponentEnterState(DWORD_PTR dwComponentID, ULONG uStateID, ULONG uContext, ULONG cpicmExclude, IMsoComponentManager **rgpicmExclude, DWORD dwReserved);
            </prototype>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.IMsoComponentManager.FOnComponentExitState(System.IntPtr,System.UInt32,System.UInt32,System.UInt32,System.Void**)">
            <prototype>
            BOOL FOnComponentExitState(DWORD_PTR dwComponentID, ULONG uStateID, ULONG uContext, ULONG cpicmExclude, IMsoComponentManager **rgpicmExclude);
            </prototype>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.IMsoComponentManager.FInState(System.UInt32,System.IntPtr)">
            <prototype>
            BOOL FInState(ULONG uStateID, void* pvoid);
            </prototype>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.IMsoComponentManager.FContinueIdle">
            <prototype>
            BOOL FContinueIdle();
            </prototype>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.IMsoComponentManager.FPushMessageLoop(System.IntPtr,System.Int32,System.Void*)">
            <prototype>
            BOOL FPushMessageLoop(DWORD_PTR dwComponentID, ULONG uReason, void *pvLoopData);
            </prototype>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.IMsoComponentManager.FCreateSubComponentManager(System.Object,System.Object,System.Guid@,System.IntPtr@)">
            <prototype>
            BOOL FCreateSubComponentManager(IUnknown *piunkOuter, IUnknown *piunkServProv, REFIID riid, void **ppvObj);
            </prototype>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.IMsoComponentManager.FGetParentComponentManager(System.Object@)">
            <prototype>
            BOOL FGetParentComponentManager(IMsoComponentManager **ppicm);
            </prototype>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.IMsoComponentManager.FGetActiveComponent(System.UInt32,System.Object[],JetBrains.Interop.WinApi.MSOCRINFO[],System.UInt32)">
            <prototype>
            BOOL FGetActiveComponent(DWORD dwgac, IMsoComponent **ppic, MSOCRINFO *pcrinfo, DWORD dwReserved);
            </prototype>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Interfaces.IOleMessageFilter">
            <summary>
            Provides COM servers and applications with the ability to selectively handle incoming and outgoing COM messages while waiting for responses from synchronous calls. 
            Filtering messages helps to ensure that calls are handled in a manner that improves performance and avoids deadlocks. COM messages can be synchronous, asynchronous, 
            or input-synchronized; the majority of interface calls are synchronous.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.IOleMessageFilter.HandleInComingCall(System.UInt32,System.Void*,System.UInt32,System.Void*)">
            <summary>
            Provides a single entry point for incoming calls.
            </summary>
            <remarks>
            This method is called prior to each method invocation originating outside the current process and provides the ability to filter or reject incoming calls (or callbacks) to an object or a process.
            DWORD HandleInComingCall([in] DWORD dwCallType, [in] HTASK htaskCaller, [in] DWORD dwTickCount, [in] LPINTERFACEINFO lpInterfaceInfo);
            </remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.IOleMessageFilter.RetryRejectedCall(System.Void*,System.UInt32,System.UInt32)">
            <summary>
            Provides applications with an opportunity to display a dialog box offering retry, cancel, or task-switching options.
            </summary>
            <remarks>
            DWORD RetryRejectedCall([in] HTASK htaskCallee, [in] DWORD dwTickCount, [in] DWORD dwRejectType);
            </remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.IOleMessageFilter.MessagePending(System.Void*,System.UInt32,System.UInt32)">
            <summary>
            Indicates that a message has arrived while COM is waiting to respond to a remote call.
            </summary>
            <remarks>
            Handling input while waiting for an outgoing call to finish can introduce complications. The application should determine whether to process the message without interrupting the call, to continue waiting, or to cancel the operation.
            DWORD MessagePending([in] HTASK htaskCallee, [in] DWORD dwTickCount, [in] DWORD dwPendingType);
            </remarks>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Interfaces.IProgressDialog">
            <summary>
              <code>
                INTERFACE: IProgressDialog
            
                DESCRIPTION:
                    CLSID_ProgressDialog/IProgressDialog exist to allow a caller to create
                a progress dialog, set it's title, animation, text lines, progress, and
                it will do all the work of updating on a background thread, being modeless,
                handling the user canceling the operation, and estimating the time remaining
                until the operation completes.
            
                USAGE:
                    This is how the dialog is used during operations that require progress
                and the ability to cancel:
                {
                    DWORD dwComplete, dwTotal;
                    IProgressDialog * ppd;
                    CoCreateInstance(CLSID_ProgressDialog, NULL, CLSCTX_INPROC_SERVER, IID_IProgressDialog, (void **)&amp;ppd);
                    ppd->SetTitle(L"My Slow Operation");                                // Set the title of the dialog.
                    ppd->SetAnimation(hInstApp, IDA_OPERATION_ANIMATION);               // Set the animation to play.
                    ppd->StartProgressDialog(hwndParent, punk, PROGDLG_AUTOTIME, NULL); // Display and enable automatic estimated time remaining.
                    ppd->SetCancelMsg(L"Please wait while the current operation is cleaned up", NULL);   // Will only be displayed if Cancel button is pressed.
            
                    dwComplete = 0;
                    dwTotal = CalcTotalUnitsToDo();
            
                    // Reset because CalcTotalUnitsToDo() took a long time and the estimated time
                    // is based on the time between ::StartProgressDialog() and the first
                    // ::SetProgress() call.
                    ppd->Timer(PDTIMER_RESET, NULL);
            
                    for (nIndex = 0; nIndex &lt; nTotal; nIndex++)
                    {
                        if (TRUE == ppd->HasUserCancelled())
                            break;
            
                        ppd->SetLine(2, L"I'm processing item n", FALSE, NULL);
                        dwComplete += DoSlowOperation();
            
                        ppd->SetProgress(dwCompleted, dwTotal);
                    }
            
                    ppd->StopProgressDialog();
                    ppd->Release();
                }
              </code>  
               </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Interfaces.SymbolWriter.ISymUnmanagedAsyncMethodPropertiesWriter">
            <summary>
            Allows you to define optional async method information for each method symbol.
            Always use with an opened method; that is, between calls to the OpenMethod Method and the CloseMethod Method.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.SymbolWriter.ISymUnmanagedAsyncMethodPropertiesWriter.DefineKickoffMethod(System.Diagnostics.SymbolStore.SymbolToken)">
            <summary>
            Sets the starting method that initiates the async operation.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.SymbolWriter.ISymUnmanagedAsyncMethodPropertiesWriter.DefineCatchHandlerILOffset(System.UInt32)">
            <summary>
            Sets the IL offset for the compiler-generated catch handler that wraps an async method.
            </summary>
            <remarks>
            The IL offset of the generated catch is used by the debugger to handle the catch as if it were non-user code, even though it may occur in a user code method.
            In particular, it is used in response to a CatchHandlerFound exception event.
            </remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.SymbolWriter.ISymUnmanagedAsyncMethodPropertiesWriter.DefineAsyncStepInfo(System.UInt32,System.UInt32[],System.UInt32[],System.UInt32[])">
            <summary>
            Define a group of async await operations in the current method.
            </summary>
            <remarks>
            Each yield offset matches an await's return instruction, identifying a potential yield.
            Each breakpointMethod/breakpointOffset pair identifies where the asynchronous operation will resume;
            it may be in a different method.
            </remarks>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Interfaces.SymbolWriter.ISymUnmanagedWriter5">
            <summary>
            The highest version of the interface available on Desktop FX 4.0+.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.SymbolWriter.ISymUnmanagedWriter5.OpenMapTokensToSourceSpans">
            <summary>
            Open a special custom data section to emit token to source span mapping information into. 
            Opening this section while a method is already open or vice versa is an error.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.SymbolWriter.ISymUnmanagedWriter5.CloseMapTokensToSourceSpans">
            <summary>
            Close the special custom data section for token to source span mapping
            information. Once it is closed no more mapping information can be added.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Interfaces.SymbolWriter.ISymUnmanagedWriter5.MapTokenToSourceSpan(System.UInt32,JetBrains.Interop.WinApi.Interfaces.SymbolWriter.ISymUnmanagedDocumentWriter,System.UInt32,System.UInt32,System.UInt32,System.UInt32)">
            <summary>
            Maps the given metadata token to the given source line span in the specified source file. 
            Must be called between calls to <see cref="M:JetBrains.Interop.WinApi.Interfaces.SymbolWriter.ISymUnmanagedWriter5.OpenMapTokensToSourceSpans"/> and <see cref="M:JetBrains.Interop.WinApi.Interfaces.SymbolWriter.ISymUnmanagedWriter5.CloseMapTokensToSourceSpans"/>.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Interfaces.SymbolWriter.ISymUnmanagedWriter8">
            <summary>
            The highest version of the interface available in Microsoft.DiaSymReader.Native.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.IpHlpApiDll">
            <summary>
            User32.dll functions.
            Must be 64bit-safe.
            </summary>
            <remarks>
            IMPORTANT! Rules for authoring the class (v1.1):
            (1) All the function declarations MUST be 64-bit aware.
            (2) When copypasting from older declarations, you MUST check against the MSDN help or header declaration, 
               and you MUST ensure that each parameter has a proper size.
            (3) Call the Wide version of the functions (UCS-2-LE) unless there's a strong reason for calling the ANSI version 
               (such a reason MUST be indicated in XmlDoc). <c>CharSet = CharSet.Unicode</c>.
            (4) ExactSpelling MUST be TRUE. Add the "…W" suffix wherever needed.
            (5) SetLastError SHOULD be considered individually for each function. Setting it to <c>True</c> allows to report the errors,
               but slows down the execution of critical members.
            (6) These properties MUST be explicitly set on DllImport attributes of EACH import: 
               CharSet, PreserveSig, SetLastError, ExactSpelling.
            (7) CLR names MUST be used for types instead of C# ones, eg "Int32" not "int" and "Int64" not "long".
               This greately improves the understanding of the parameter sizes.
            (8) Sign of the types MUST be favored, eg "DWORD" is "UInt32" not "Int32".
            (9) Unsafe pointer types should be used for explicit and implicit pointers rather than IntPtr. 
               This way we outline the unsafety of the native calls, and also make it more clear for the 64bit transition.
               Eg "HANDLE" is "void*". If the rule forces you to mark some assembly as unsafe, it's an indication a managed utility
               incapsulating the call and the handle should be provided in one of the already-unsafe assemblies.
            (A) Same rules must apply to members of the structures.
            (B) All of the structures MUST have the [StructLayout(LayoutKind.Sequential)], [NoReorder] attributes, as appropriate.
            </remarks>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Kernel32Dll">
            <summary>
            Kernel32.dll functions.
            Must be 64bit-safe.
            </summary>
            <remarks>
            IMPORTANT! Rules for authoring the class (v1.1):
            (1) All the function declarations MUST be 64-bit aware.
            (2) When copypasting from older declarations, you MUST check against the MSDN help or header declaration, 
               and you MUST ensure that each parameter has a proper size.
            (3) Call the Wide version of the functions (UCS-2-LE) unless there's a strong reason for calling the ANSI version 
               (such a reason MUST be indicated in XmlDoc). <c>CharSet = CharSet.Unicode</c>.
            (4) ExactSpelling MUST be TRUE. Add the "…W" suffix wherever needed.
            (5) SetLastError SHOULD be considered individually for each function. Setting it to <c>True</c> allows to report the errors,
               but slows down the execution of critical members.
            (6) These properties MUST be explicitly set on DllImport attributes of EACH import: 
               CharSet, PreserveSig, SetLastError, ExactSpelling.
            (7) CLR names MUST be used for types instead of C# ones, eg "Int32" not "int" and "Int64" not "long".
               This greately improves the understanding of the parameter sizes.
            (8) Sign of the types MUST be favored, eg "DWORD" is "UInt32" not "Int32".
            (9) Unsafe pointer types should be used for explicit and implicit pointers rather than IntPtr. 
               This way we outline the unsafety of the native calls, and also make it more clear for the 64bit transition.
               Eg "HANDLE" is "void*". If the rule forces you to mark some assembly as unsafe, it's an indication a managed utility
               incapsulating the call and the handle should be provided in one of the already-unsafe assemblies.
            (A) Same rules must apply to members of the structures.
            (B) All of the structures MUST have the [StructLayout(LayoutKind.Sequential)], [NoReorder] attributes, as appropriate.
            </remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.CloseHandle(System.Void*)">
            <summary>
            Closes an open object handle.
            </summary>
            <param name="hObject">A valid handle to an open object.</param>
            <returns>If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. To get extended error information, call GetLastError. If the application is running under a debugger, the function will throw an exception if it receives either a handle value that is not valid or a pseudo-handle value. This can happen if you close a handle twice, or if you call CloseHandle on a handle returned by the FindFirstFile function.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.ConvertThreadToFiber(System.Void*)">
            <summary>
            Converts the current thread into a fiber. You must convert a thread into a fiber before you can schedule other fibers.
            </summary>
            <param name="lpParameter">A pointer to a variable that is passed to the fiber. The fiber can retrieve this data by using the GetFiberData macro.</param>
            <returns>If the function succeeds, the return value is the address of the fiber. If the function fails, the return value is NULL. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.CreateFiber(System.IntPtr,System.Void*,System.Void*)">
            <summary>
            Allocates a fiber object, assigns it a stack, and sets up execution to begin at the specified start address, typically the fiber function. This function does not schedule the fiber. To specify both a commit and reserve stack size, use the CreateFiberEx function.
            </summary>
            <param name="dwStackSize">The initial size of the stack, in bytes. If this parameter is zero, the new fiber uses the default stack size for the executable. For more information, see Thread Stack Size.</param>
            <param name="lpStartAddress">A pointer to the application-defined function to be executed by the fiber and represents the starting address of the fiber. Execution of the newly created fiber does not begin until another fiber calls the SwitchToFiber function with this address. For more information of the fiber callback function, see FiberProc.</param>
            <param name="lpParameter">A pointer to a variable that is passed to the fiber. The fiber can retrieve this data by using the GetFiberData macro.</param>
            <returns>If the function succeeds, the return value is the address of the fiber. If the function fails, the return value is NULL. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.CreateToolhelp32Snapshot(System.UInt32,System.UInt32)">
            <summary>
            Takes a snapshot of the specified processes, as well as the heaps, modules, and threads used by these processes.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.DeleteFiber(System.Void*)">
            <summary>
            Deletes an existing fiber.
            </summary>
            <param name="lpFiber">The address of the fiber to be deleted.</param>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.FindResourceW(System.Void*,System.String,System.String)">
            <summary>
            Determines the location of a resource with the specified type and name in the specified module. To specify a language, use the FindResourceEx function.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.FindResourceW(System.Void*,System.Char*,System.Char*)">
            <summary>
            Determines the location of a resource with the specified type and name in the specified module. To specify a language, use the FindResourceEx function.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.GetCurrentProcess">
            <summary>
            Retrieves a pseudo handle for the current process.
            </summary>
            <returns>The return value is a pseudo handle to the current process.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.GetCurrentProcessId">
            <summary>
            Retrieves the process identifier of the calling process.
            </summary>
            <returns>The return value is the process identifier of the calling process.</returns>
            <remarks>Until the process terminates, the process identifier uniquely identifies the process throughout the system.</remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.OpenProcess(System.UInt32,System.Int32,System.UInt32)">
            <summary>Opens an existing local process object.</summary>
            <param name="dwDesiredAccess">The access to the process object.</param>
            <param name="bInheritHandle">If this value is TRUE, processes created by this process will inherit the handle.</param>
            <param name="dwProcessId">The identifier of the local process to be opened. If the specified process is the System Process (0x00000000), the function fails and the last error code is ERROR_INVALID_PARAMETER. If the specified process is the Idle process or one of the CSRSS processes, this function fails and the last error code is ERROR_ACCESS_DENIED because their access restrictions prevent user-level code from opening them.</param>
            <returns>If the function succeeds, the return value is an open handle to the specified process. If the function fails, the return value is NULL. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.OpenThread(System.UInt32,System.UInt32,System.UInt32)">
            <summary>Opens an existing thread object.</summary>
            <param name="dwDesiredAccess">The access to the thread object.</param>
            <param name="bInheritHandle">If this value is TRUE, processes created by this process will inherit the handle. Otherwise, the processes do not inherit this handle.</param>
            <param name="dwThreadId">The identifier of the thread to be opened.</param>
            <returns>If the function succeeds, the return value is an open handle to the specified thread. If the function fails, the return value is NULL.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.GetCurrentThreadId">
            <summary>
            The GetCurrentThreadId function retrieves the thread identifier of the calling thread.
            Note: same as <see cref="M:System.AppDomain.GetCurrentThreadId"/>, but doesn't raise the “Obsolete” warning.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.GetFileAttributesW(System.String)">
            <summary>
            Retrieves file system attributes for a specified file or directory.
            </summary>
            <param name="lpFileName">[in] The name of the file or directory.</param>
            <returns>If the function succeeds, the return value contains the attributes of the specified file or directory.
            If the function fails, the return value is INVALID_FILE_ATTRIBUTE.
            </returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.GetFileAttributesExW(System.String,JetBrains.Interop.WinApi.Declarations.Constants.GET_FILEEX_INFO_LEVELS,JetBrains.Interop.WinApi.Declarations.Structures.WIN32_FILE_ATTRIBUTE_DATA@)">
            <summary>
            Retrieves attributes for a specified file or directory.
            </summary>
            <param name="lpFileName">The name of the file or directory.</param>
            <param name="fInfoLevelId">A class of attribute information to retrieve. This parameter can be the following value from the GET_FILEEX_INFO_LEVELS enumeration.</param>
            <param name="lpFileInformation">A pointer to a buffer that receives the attribute information. The type of attribute information that is stored into this buffer is determined by the value of <paramref name="fInfoLevelId"/></param>
            <returns>If the function succeeds, the return value is a nonzero value. If the function fails, the return value is zero (0). To get extended error information, call <see cref="M:System.Runtime.InteropServices.Marshal.GetLastWin32Error"/>.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.GetModuleFileNameW(System.Void*,System.UInt16*,System.UInt32)">
            <summary>
            Retrieves the fully-qualified path for the file that contains the specified module. The module must have been loaded by the current process. 
            To locate the file for a module that was loaded by another process, use the GetModuleFileNameEx function. 
            </summary>
            <param name="hModule">
            A handle to the loaded module whose path is being requested. If this parameter is NULL, GetModuleFileName retrieves the path of the executable file of the current process.
            The GetModuleFileName function does not retrieve the path for modules that were loaded using the LOAD_LIBRARY_AS_DATAFILE flag. For more information, see LoadLibraryEx. 
            </param>
            <param name="lpFilename">
            A pointer to a buffer that receives the fully-qualified path of the module. If the length of the path is less than the size that the nSize parameter specifies, the function succeeds and the path is returned as a null-terminated string. 
            If the length of the path exceeds the size that the nSize parameter specifies, the function succeeds and the string is truncated to nSize characters including the terminating null character. 
            Windows XP/2000:  The string is truncated to nSize characters and is not null terminated. 
            The string returned will use the same format that was specified when the module was loaded. Therefore, the path can be a long or short file name, and can use the prefix "\\?\". For more information, see Naming a File. 
            </param>
            <param name="nSize">The size of the lpFilename buffer, in TCHARs.</param>
            <returns>
            If the function succeeds, the return value is the length of the string that is copied to the buffer, in characters, not including the terminating null character. If the buffer is too small to hold the module name, the string is truncated to nSize characters including the terminating null character, the function returns nSize, and the function sets the last error to ERROR_INSUFFICIENT_BUFFER. 
            Windows XP/2000:  If the buffer is too small to hold the module name, the function returns nSize. The last error code remains ERROR_SUCCESS. If nSize is zero, the return value is zero and the last error code is ERROR_SUCCESS. 
            If the function fails, the return value is 0 (zero). To get extended error information, call GetLastError. 
            </returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.GetModuleHandleW(System.String)">
            <summary>
            Retrieves a module handle for the specified module. The module must have been loaded by the calling process. 
            To avoid the race conditions described in the Remarks section, use the GetModuleHandleEx function.
            </summary>
            <param name="lpModuleName">The name of the loaded module (either a .dll or .exe file). 
            If the file name extension is omitted, the default library extension .dll is appended. 
            The file name string can include a trailing point character (.) to indicate that the module name has no extension. 
            The string does not have to specify a path. When specifying a path, be sure to use backslashes (\), not forward slashes (/). 
            The name is compared (case independently) to the names of modules currently mapped into the address space of the calling process. 
            If this parameter is NULL, GetModuleHandle returns a handle to the file used to create the calling process (.exe file). 
            The GetModuleHandle function does not retrieve handles for modules that were loaded using the LOAD_LIBRARY_AS_DATAFILE flag. 
            For more information, see LoadLibraryEx.</param>
            <returns>If the function succeeds, the return value is a handle to the specified module. 
            If the function fails, the return value is NULL. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.GetNativeSystemInfo(JetBrains.Interop.WinApi.SYSTEM_INFO*)">
            <summary>
            Retrieves information about the current system to an application running under WOW64. If the function is called from a 64-bit application, it is equivalent to the GetSystemInfo function.
            <code>
            | OS    | Process | wProcessorArchitecture           |
            +=======+=========+==================================+
            | ARM64 | ARM64   | 12(PROCESSOR_ARCHITECTURE_ARM64) |
            | ARM64 | ARM     | 12(PROCESSOR_ARCHITECTURE_ARM64) |
            | ARM64 | X64     |  9(PROCESSOR_ARCHITECTURE_AMD64) | ATTENTION: Returns 9 for compatibility !!!
            | ARM64 | X86     |  9(PROCESSOR_ARCHITECTURE_AMD64) | ATTENTION: Returns 9 for compatibility !!!
            | X64   | X64     |  9(PROCESSOR_ARCHITECTURE_AMD64) |
            | X64   | X86     |  9(PROCESSOR_ARCHITECTURE_AMD64) |
            | X86   | X86     |  0(PROCESSOR_ARCHITECTURE_INTEL) |
            </code>
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.GetPrivateProfileIntW(System.String,System.String,System.Int32,System.String)">
            <summary>
            Retrieves an integer associated with a key in the specified section of an initialization file. Note: This function is provided only for compatibility with 16-bit Windows-based applications. Applications should store initialization information in the registry.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.GetPrivateProfileStringW(System.String,System.String,System.String,System.UInt16*,System.UInt32,System.String)">
            <summary>
            Retrieves a string from the specified section in an initialization file.
            Note: This function is provided only for compatibility with 16-bit Windows-based applications. Applications should store initialization information in the registry.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.GetProcAddress(System.Void*,System.String)">
            <summary>
            Retrieves the address of an exported function or variable from the specified dynamic-link library (DLL).
            </summary>
            <param name="hModule">A handle to the DLL module that contains the function or variable. The LoadLibrary or GetModuleHandle function returns this handle.</param>
            <param name="lpProcName">The function or variable name, or the function's ordinal value. If this parameter is an ordinal value, it must be in the low-order word; the high-order word must be zero.</param>
            <returns>If the function succeeds, the return value is the address of the exported function or variable. If the function fails, the return value is NULL. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.GetSystemInfo(JetBrains.Interop.WinApi.SYSTEM_INFO*)">
            <summary>
            Retrieves information about the current system. To retrieve accurate information for an application running on WOW64, call the GetNativeSystemInfo function.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.LoadLibraryW(System.String)">
            <summary>
            The LoadLibrary function maps the specified executable module into the address space of the calling process. 
            For additional load options, use the LoadLibraryEx function.
            </summary>
            <param name="lpFileName">[in] Pointer to a null-terminated string that names the executable module (either a .dll or .exe file). The name specified is the file name of the module and is not related to the name stored in the library module itself, as specified by the LIBRARY keyword in the module-definition (.def) file. 
            If the string specifies a path but the file does not exist in the specified directory, the function fails. When specifying a path, be sure to use backslashes (\), not forward slashes (/).
            If the string does not specify a path, the function uses a standard search strategy to find the file. See the Remarks for more information.</param>
            <returns>If the function succeeds, the return value is a handle to the module.
            If the function fails, the return value is NULL. To get extended error information, call GetLastError.
            Windows Me/98/95:  If you are using LoadLibrary to load a module that contains a resource whose numeric identifier is greater than 0x7FFF, LoadLibrary fails. 
            If you are attempting to load a 16-bit DLL directly from 32-bit code, LoadLibrary fails. If you are attempting to load a DLL whose subsystem version is greater than 4.0, LoadLibrary fails. If your DllMain function tries to call the Unicode version of a function, LoadLibrary fails.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.FreeLibrary(System.Void*)">
            <summary>
            Frees the loaded dynamic-link library (DLL) module and, if necessary, decrements its reference count. 
            When the reference count reaches zero, the module is unloaded from the address space of the calling process and the handle is no longer valid.
            </summary>
            <param name="hModule">[in] A handle to the loaded library module. 
            The LoadLibrary, LoadLibraryEx, GetModuleHandle, or GetModuleHandleEx function returns this handle.</param>
            <returns>If the function succeeds, the return value is nonzero. 
            If the function fails, the return value is zero. To get extended error information, call the GetLastError function.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.SetDllDirectoryW(System.String)">
            <summary>
            Adds a directory to the search path used to locate DLLs for the application.
            The <c>SetDllDirectory</c> function affects all subsequent calls to the <c>LoadLibrary</c> and <c>LoadLibraryEx</c> functions. 
            It also effectively disables safe DLL search mode while the specified directory is in the search path.
            </summary>
            <param name="lpPathName">[in, optional] The directory to be added to the search path. 
            If this parameter is an empty string (""), the call removes the current directory from the default DLL search order.
            If this parameter is NULL, the function restores the default search order.</param>
            <returns>If the function succeeds, the return value is nonzero. 
            If the function fails, the return value is zero. To get extended error information, call GetLastError. </returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.LoadResource(System.Void*,System.Void*)">
            <summary>
            Loads the specified resource into global memory. 
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.LockResource(System.Void*)">
            <summary>
            Locks the specified resource in memory. 
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.OutputDebugStringW(System.String)">
            <summary>
            The OutputDebugString function sends a string to the debugger for display.
            </summary>
            <param name="lpOutputString">[in] Pointer to the null-terminated string to be displayed.</param>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.Process32FirstW(System.Void*,System.Void*)">
            <summary>
            Retrieves information about the first process encountered in a system snapshot.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.Module32FirstW(System.Void*,System.Void*)">
            <summary>
            Retrieves information about the first module associated with a process.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.Module32NextW(System.Void*,System.Void*)">
            <summary>
            Retrieves information about the next module associated with a process or thread.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.QueryPerformanceCounter(System.UInt64*)">
            <summary>
            The QueryPerformanceCounter function retrieves the current value of the high-resolution performance counter.
            </summary>
            <param name="lpPerformanceCount">[out] Pointer to a variable that receives the current performance-counter value, in counts.</param>
            <returns>If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. To get extended error information, call GetLastError.</returns>
            <remarks>On a multiprocessor computer, it should not matter which processor is called. However, you can get different results on different processors due to bugs in the basic input/output system (BIOS) or the hardware abstraction layer (HAL). To specify processor affinity for a thread, use the SetThreadAffinityMask function. </remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.QueryPerformanceFrequency(System.UInt64*)">
            <summary>
            The QueryPerformanceFrequency function retrieves the frequency of the high-resolution performance counter, if one exists. The frequency cannot change while the system is running.
            </summary>
            <param name="lpFrequency">[out] Pointer to a variable that receives the current performance-counter frequency, in counts per second. If the installed hardware does not support a high-resolution performance counter, this parameter can be zero. </param>
            <returns>If the installed hardware supports a high-resolution performance counter, the return value is nonzero. If the function fails, the return value is zero. To get extended error information, call GetLastError. For example, if the installed hardware does not support a high-resolution performance counter, the function fails. </returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.RtlCopyMemory(System.Void*,System.Void*,System.UIntPtr)">
            <summary>
            The <see cref="M:JetBrains.Interop.WinApi.Kernel32Dll.RtlCopyMemory(System.Void*,System.Void*,System.UIntPtr)"/> routine copies the contents of one buffer to another.
            </summary>
            <param name="Destination">Pointer to the destination of the move.</param>
            <param name="Source">Pointer to the memory to be copied.</param>
            <param name="Length">Specifies the number of bytes to be copied.</param>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.RtlMoveMemory(System.Void*,System.Void*,System.UIntPtr)">
            <summary>
            The <see cref="M:JetBrains.Interop.WinApi.Kernel32Dll.RtlMoveMemory(System.Void*,System.Void*,System.UIntPtr)"/> routine moves memory either forward or backward, aligned or unaligned, in 4-byte blocks, followed by any remaining bytes.
            </summary>
            <param name="Destination">Pointer to the destination of the move.</param>
            <param name="Source">Pointer to the memory to be copied.</param>
            <param name="Length">Specifies the number of bytes to be copied.</param>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.SizeofResource(System.Void*,System.Void*)">
            <summary>
            Returns the size, in bytes, of the specified resource. 
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.SwitchToFiber(System.Void*)">
            <summary>
            Schedules a fiber. The function must be called on a fiber.
            </summary>
            <param name="lpFiber">The address of the fiber to be scheduled.</param>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.VirtualAlloc(System.Void*,System.IntPtr,System.UInt32,System.UInt32)">
            <summary>
            Reserves or commits a region of pages in the virtual address space of the calling process. Memory allocated by this function is automatically initialized to zero, unless MEM_RESET is specified.
            To allocate memory in the address space of another process, use the VirtualAllocEx function.
            </summary>
            <param name="lpAddress">The starting address of the region to allocate. If the memory is being reserved, the specified address is rounded down to the nearest multiple of the allocation granularity. If the memory is already reserved and is being committed, the address is rounded down to the next page boundary. To determine the size of a page and the allocation granularity on the host computer, use the GetSystemInfo function. If this parameter is NULL, the system determines where to allocate the region.</param>
            <param name="dwSize">The size of the region, in bytes. If the lpAddress parameter is NULL, this value is rounded up to the next page boundary. Otherwise, the allocated pages include all pages containing one or more bytes in the range from lpAddress to lpAddress+dwSize. This means that a 2-byte range straddling a page boundary causes both pages to be included in the allocated region.</param>
            <param name="flAllocationType">The type of memory allocation. See <see cref="T:JetBrains.Interop.WinApi.Declarations.Constants.MemoryAllocationTypes"/>.</param>
            <param name="flProtect">The memory protection for the region of pages to be allocated. If the pages are being committed, you can specify any one of the <see cref="T:JetBrains.Interop.WinApi.Declarations.Constants.MemoryProtectionConstants">memory protection constants</see>.</param>
            <returns>If the function succeeds, the return value is the base address of the allocated region of pages.
            If the function fails, the return value is NULL. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.VirtualProtect(System.Void*,System.IntPtr,System.UInt32,System.UInt32*)">
            <summary>
            Changes the protection on a region of committed pages in the virtual address space of the calling process.
            To change the access protection of any process, use the VirtualProtectEx function.
            </summary>
            <param name="lpAddress">A pointer to the base address of the region of pages whose access protection attributes are to be changed. 
            All pages in the specified region must be within the same reserved region allocated when calling the VirtualAlloc or VirtualAllocEx function using MEM_RESERVE. The pages cannot span adjacent reserved regions that were allocated by separate calls to VirtualAlloc or VirtualAllocEx using MEM_RESERVE.The size of the region whose access protection attributes are to be changed, in bytes. The region of affected pages includes all pages containing one or more bytes in the range from the lpAddress parameter to (lpAddress+dwSize). This means that a 2-byte range straddling a page boundary causes the protection attributes of both pages to be changed.</param>
            <param name="dwSize">The size of the region whose access protection attributes are to be changed, in bytes. The region of affected pages includes all pages containing one or more bytes in the range from the lpAddress parameter to (lpAddress+dwSize). This means that a 2-byte range straddling a page boundary causes the protection attributes of both pages to be changed.</param>
            <param name="flNewProtect">The memory protection option. This parameter can be one of the <see cref="T:JetBrains.Interop.WinApi.Declarations.Constants.MemoryProtectionConstants">memory protection constants</see>.
            This value must be compatible with the access protection specified for the pages using VirtualAlloc or VirtualAllocEx.</param>
            <param name="lpflOldProtect">A pointer to a variable that receives the previous access protection value of the first page in the specified region of pages. If this parameter is NULL or does not point to a valid variable, the function fails.</param>
            <returns>If the function succeeds, the return value is nonzero.
            If the function fails, the return value is zero. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.VirtualQuery(System.Void*,JetBrains.Interop.WinApi.Declarations.Structures.MEMORY_BASIC_INFORMATION*,System.IntPtr)">
            <summary>
            Retrieves information about a range of pages in the virtual address space of the calling process.
            To retrieve information about a range of pages in the address space of another process, use the VirtualQueryEx function.
            </summary>
            <param name="lpAddress">A pointer to the base address of the region of pages to be queried. This value is rounded down to the next page boundary. To determine the size of a page on the host computer, use the GetSystemInfo function.
            If lpAddress specifies an address above the highest memory address accessible to the process, the function fails with ERROR_INVALID_PARAMETER.
            </param>
            <param name="lpBuffer">A pointer to a <see cref="T:JetBrains.Interop.WinApi.Declarations.Structures.MEMORY_BASIC_INFORMATION"/> structure in which information about the specified page range is returned.</param>
            <param name="dwLength">The size of the buffer pointed to by the lpBuffer parameter, in bytes.</param>
            <returns>The return value is the actual number of bytes returned in the information buffer.
            If the function fails, the return value is zero. To get extended error information, call GetLastError. Possible error values include ERROR_INVALID_PARAMETER.
            </returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.WaitForMultipleObjects(System.UInt32,System.Void*,System.Int32,System.UInt32)">
            <summary>
            Waits until one or all of the specified objects are in the signaled state or the time-out interval elapses. To enter an alertable wait state, use the WaitForMultipleObjectsEx function.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.WaitForMultipleObjectsEx(System.UInt32,System.Void**,System.Int32,System.UInt32,System.Int32)">
            <summary>
            Waits until one or all of the specified objects are in the signaled state, an I/O completion routine or asynchronous procedure call (APC) is queued to the thread, or the time-out interval elapses.
            </summary>
            <param name="nCount">The number of object handles to wait for in the array pointed to by lpHandles. The maximum number of object handles is MAXIMUM_WAIT_OBJECTS. This parameter cannot be zero.</param>
            <param name="lpHandles">An array of object handles. For a list of the object types whose handles can be specified, see the following Remarks section. The array can contain handles of objects of different types. It may not contain multiple copies of the same handle. If one of these handles is closed while the wait is still pending, the function's behavior is undefined. The handles must have the SYNCHRONIZE access right. For more information, see Standard Access Rights.</param>
            <param name="bWaitAll">If this parameter is TRUE, the function returns when the state of all objects in the lpHandles array is set to signaled. If FALSE, the function returns when the state of any one of the objects is set to signaled. In the latter case, the return value indicates the object whose state caused the function to return.</param>
            <param name="dwMilliseconds">The time-out interval, in milliseconds. If a nonzero value is specified, the function waits until the specified objects are signaled, an I/O completion routine or APC is queued, or the interval elapses. If dwMilliseconds is zero, the function does not enter a wait state if the criteria is not met; it always returns immediately. If dwMilliseconds is INFINITE, the function will return only when the specified objects are signaled or an I/O completion routine or APC is queued.</param>
            <param name="bAlertable">If this parameter is TRUE and the thread is in the waiting state, the function returns when the system queues an I/O completion routine or APC, and the thread runs the routine or function. Otherwise, the function does not return and the completion routine or APC function is not executed. A completion routine is queued when the ReadFileEx or WriteFileEx function in which it was specified has completed. The wait function returns and the completion routine is called only if bAlertable is TRUE and the calling thread is the thread that initiated the read or write operation. An APC is queued when you call QueueUserAPC.</param>
            <returns></returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.WaitForSingleObject(System.Void*,System.UInt32)">
            <summary>
            Waits until the specified object is in the signaled state or the time-out interval elapses. To enter an alertable wait state, use the WaitForSingleObjectEx function. To wait for multiple objects, use the WaitForMultipleObjects.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.WritePrivateProfileStringW(System.String,System.String,System.String,System.String)">
            <summary>
            Copies a string into the specified section of an initialization file.
            Note  This function is provided only for compatibility with 16-bit versions of Windows. Applications should store initialization information in the registry.
            </summary>
            <param name="lpAppName">The name of the section to which the string will be copied. If the section does not exist, it is created. The name of the section is case-independent; the string can be any combination of uppercase and lowercase letters.</param>
            <param name="lpKeyName">The name of the key to be associated with a string. If the key does not exist in the specified section, it is created. If this parameter is NULL, the entire section, including all entries within the section, is deleted.</param>
            <param name="lpString">A null-terminated string to be written to the file. If this parameter is NULL, the key pointed to by the lpKeyName parameter is deleted. 
            Windows Me/98/95:  The system does not support the use of the TAB (\t) character as part of this parameter.</param>
            <param name="lpFileName">The name of the initialization file.
            If the file was created using Unicode characters, the function writes Unicode characters to the file. Otherwise, the function writes ANSI characters.</param>
            <returns>If the function successfully copies the string to the initialization file, the return value is nonzero. If the function fails, or if it flushes the cached version of the most recently accessed initialization file, the return value is zero. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.CreateFileW(System.String,System.UInt32,System.UInt32,JetBrains.Interop.WinApi.SECURITY_ATTRIBUTES*,System.UInt32,System.UInt32,System.Void*)">
            <summary>
            The CreateFile function creates or opens a file, file stream, directory, physical disk, volume, console buffer, tape drive,
            communications resource, mailslot, or named pipe. The function returns a handle that can be used to access an object.
            </summary>
            <param name="lpFileName"></param>
            <param name="dwDesiredAccess"> access to the object, which can be read, write, or both</param>
            <param name="dwShareMode">The sharing mode of an object, which can be read, write, both, or none</param>
            <param name="lpSecurityAttributes">A pointer to a SECURITY_ATTRIBUTES structure that determines whether or not the returned handle can
            be inherited by child processes. Can be null</param>
            <param name="dwCreationDisposition">An action to take on a file or device that exists or does not exist. For devices other than files, this parameter is usually set to <see cref="F:JetBrains.Interop.WinApi.Constants.FileCreationDisposition.OPEN_EXISTING"/>.</param>
            <param name="dwFlagsAndAttributes">The file attributes and flags. </param>
            <param name="hTemplateFile">A handle to a template file with the GENERIC_READ access right. The template file supplies file attributes
            and extended attributes for the file that is being created. This parameter can be null</param>
            <returns>If the function succeeds, the return value is an open handle to a specified file. If a specified file exists before the function
            all and dwCreationDisposition is CREATE_ALWAYS or OPEN_ALWAYS, a call to GetLastError returns ERROR_ALREADY_EXISTS, even when the function
            succeeds. If a file does not exist before the call, GetLastError returns 0 (zero).
            If the function fails, the return value is INVALID_HANDLE_VALUE. To get extended error information, call GetLastError.
            </returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.FlushFileBuffers(System.Void*)">
            <summary>
            Flushes the buffers of a specified file and causes all buffered data to be written to a file.
            </summary>
            <param name="hFile">A handle to the open file.</param>
            <returns>If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. To get extended error information, call GetLastError. The function fails if hFile is a handle to the console output. That is because the console output is not buffered. The function returns FALSE, and GetLastError returns ERROR_INVALID_HANDLE.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.ReadDirectoryChangesW(Microsoft.Win32.SafeHandles.SafeFileHandle,System.Runtime.InteropServices.HandleRef,System.UInt32,System.UInt32,System.IO.NotifyFilters,System.UInt32@,System.Threading.NativeOverlapped*,System.Runtime.InteropServices.HandleRef)">
            <summary>
            Retrieves information that describes the changes within the specified directory. The function does not report changes to the specified directory itself.
            </summary>
            <param name="hDirectory">A handle to the directory to be monitored. This directory must be opened with the FILE_LIST_DIRECTORY access right.</param>
            <param name="lpBuffer">A pointer to the DWORD-aligned formatted buffer in which the read results are to be returned. The structure of this buffer is defined by the FILE_NOTIFY_INFORMATION structure. This buffer is filled either synchronously or asynchronously, depending on how the directory is opened and what value is given to the lpOverlapped parameter.</param>
            <param name="nBufferLength">The size of the buffer that is pointed to by the lpBuffer parameter, in bytes.</param>
            <param name="bWatchSubtree">If this parameter is TRUE, the function monitors the directory tree rooted at the specified directory. If this parameter is FALSE, the function monitors only the directory specified by the hDirectory parameter.</param>
            <param name="dwNotifyFilter">The filter criteria that the function checks to determine if the wait operation has completed.</param>
            <param name="lpBytesReturned">For synchronous calls, this parameter receives the number of bytes transferred into the lpBuffer parameter. For asynchronous calls, this parameter is undefined. You must use an asynchronous notification technique to retrieve the number of bytes transferred.</param>
            <param name="overlappedPointer">A pointer to an OVERLAPPED structure that supplies data to be used during asynchronous operation. Otherwise, this value is NULL. The Offset and OffsetHigh members of this structure are not used.</param>
            <param name="lpCompletionRoutine">A pointer to a completion routine to be called when the operation has been completed or canceled and the calling thread is in an alertable wait state.</param>
            <returns>If the function succeeds, the return value is nonzero. For synchronous calls, this means that the operation succeeded. For asynchronous calls, this indicates that the operation was successfully queued. If the function fails, the return value is zero. To get extended error information, call GetLastError. If the network redirector or the target file system does not support this operation, the function fails with ERROR_INVALID_FUNCTION.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.CreateDirectoryW(System.String,JetBrains.Interop.WinApi.SECURITY_ATTRIBUTES*)">
             <summary>
             Creates a new directory. If the underlying file system supports security on files and directories, the function applies a specified security descriptor to the new directory.
            To specify a template directory, use the CreateDirectoryEx function.
            To perform this operation as a transacted operation, use the CreateDirectoryTransacted function.
             </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.GetFileSizeEx(System.Void*,System.Int64*)">
            <summary>
            Retrieves the size of the specified file.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.SetFileAttributesW(System.String,System.UInt32)">
            <summary>
            Sets the attributes for a file or directory.
            </summary>
            <param name="lpFileName">The name of the file whose attributes are to be set</param>
            <param name="dwFileAttributes">The file attributes to set for the file. This parameter can be one or more values, combined using the bitwise-OR operator. However, all other values override FILE_ATTRIBUTE_NORMAL</param>
            <returns>If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. To get extended error information, call <see cref="M:System.Runtime.InteropServices.Marshal.GetLastWin32Error"/>.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.SetFilePointer(System.Void*,System.Int32,System.Int32*,JetBrains.Interop.WinApi.Constants.SetFilePointer.MoveMethod)">
            <summary>
            Moves the file pointer of the specified file.
            This function stores the file pointer in two LONG values. To work with file pointers that are larger than a single LONG value, it is easier to use the SetFilePointerEx function.
            </summary>
            
            <param name="hFile">
            A handle to the file.
            The file handle must be created with the GENERIC_READ or GENERIC_WRITE access right. For more information, see File Security and Access Rights.
            </param>
            
            <param name="lDistanceToMove">
            The low order 32-bits of a signed value that specifies the number of bytes to move the file pointer.
            If lpDistanceToMoveHigh is not NULL, lpDistanceToMoveHigh and lDistanceToMove form a single 64-bit signed value that specifies the distance to move.
            If lpDistanceToMoveHigh is NULL, lDistanceToMove is a 32-bit signed value. A positive value for lDistanceToMove moves the file pointer forward in the file, and a negative value moves the file pointer back.
            </param>
            
            <param name="lpDistanceToMoveHigh">
            A pointer to the high order 32-bits of the signed 64-bit distance to move.
            If you do not need the high order 32-bits, this pointer must be set to NULL.
            When not NULL, this parameter also receives the high order DWORD of the new value of the file pointer. For more information, see the Remarks section in this topic.
            </param>
            
            <param name="dwMoveMethod">The starting point for the file pointer move.</param>
            
            <returns>
            If the function succeeds and lpDistanceToMoveHigh is NULL, the return value is the low-order DWORD of the new file pointer.
            
            Note  If the function returns a value other than <see cref="F:JetBrains.Interop.WinApi.Constants.SetFilePointer.INVALID_SET_FILE_POINTER"/>, the call to SetFilePointer has succeeded. You do not need to call GetLastError.
            If function succeeds and lpDistanceToMoveHigh is not NULL, the return value is the low-order DWORD of the new file pointer and lpDistanceToMoveHigh contains the high order DWORD of the new file pointer.
            If the function fails, the return value is INVALID_SET_FILE_POINTER. To get extended error information, call GetLastError.
            If a new file pointer is a negative value, the function fails, the file pointer is not moved, and the code returned by GetLastError is ERROR_NEGATIVE_SEEK.
            If lpDistanceToMoveHigh is NULL and the new file position does not fit in a 32-bit value, the function fails and returns INVALID_SET_FILE_POINTER.
            </returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.CopyFileW(System.String,System.String,System.Int32)">
            <summary>
            Copies an existing file to a new file.
            </summary>
            <remarks>
            Security attributes for the existing file are copied to the new file. File attributes for the existing file are copied to the new file. For example, if an existing file has the FILE_ATTRIBUTE_READONLY file attribute, a copy created through a call to CopyFile will also have the FILE_ATTRIBUTE_READONLY file attribute. When CopyFile is used to copy an encrypted file, it attempts to encrypt the destination file with the keys used in the encryption of the source file. If this cannot be done, this function attempts to encrypt the destination file with default keys. If neither of these methods can be done, CopyFile fails with an ERROR_ENCRYPTION_FAILED error code. Symbolic link behavior—If the source file is a symbolic link, the actual file copied is the target of the symbolic link. If the destination file already exists and is a symbolic link, the target of the symbolic link is overwritten by the source file.
            </remarks>
            <param name="lpExistingFileName">The name of an existing file. If lpExistingFileName does not exist, CopyFile fails, and GetLastError returns ERROR_FILE_NOT_FOUND.</param>
            <param name="lpNewFileName">The name of the new file.</param>
            <param name="bFailIfExists">If this parameter is TRUE and the new file specified by lpNewFileName already exists, the function fails. If this parameter is FALSE and the new file already exists, the function overwrites the existing file and succeeds.</param>
            <returns>If the function succeeds, the return value is nonzero.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.MoveFileW(System.String,System.String)">
            <summary>
            Moves an existing file or a directory, including its children.
            </summary>
            <param name="lpExistingFileName">The current name of the file or directory on the local computer.</param>
            <param name="lpNewFileName">The new name for the file or directory. The new name must not already exist. A new file may be on a different file system or drive. A new directory must be on the same drive.</param>
            <returns>If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. To get extended error information, call <see cref="M:System.Runtime.InteropServices.Marshal.GetLastWin32Error"/>.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.DeleteFileW(System.String)">
            <summary>
            Deletes an existing file.
            </summary>
            <param name="lpFileName">The name of the file to be deleted.</param>
            <returns>If the function fails, the return value is zero (0). To get extended error information, call <see cref="M:System.Runtime.InteropServices.Marshal.GetLastWin32Error"/>.</returns>
            <remarks>See MSDN page for behaviour explanation</remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.GetLongPathNameW(System.String,System.Text.StringBuilder,System.UInt32)">
            <summary>
            Converts the specified path to its long form.
            </summary>
            <param name="lpszShortPath">The path to be converted.</param>
            <param name="lpszLongPath">A pointer to the buffer to receive the long path. You can use the same buffer you used for the lpszShortPath parameter.</param>
            <param name="cchBuffer">The size of the buffer lpszLongPath points to, in TCHARs.</param>
            <returns>If the function succeeds, the return value is the length, in TCHARs, of the string copied to lpszLongPath, not including the terminating null character. If the lpBuffer buffer is too small to contain the path, the return value is the size, in TCHARs, of the buffer that is required to hold the path and the terminating null character. If the function fails for any other reason, such as if the file does not exist, the return value is zero. To get extended error information, call <see cref="M:System.Runtime.InteropServices.Marshal.GetLastWin32Error"/>.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.GetShortPathNameW(System.String,System.Text.StringBuilder,System.UInt32)">
            <summary>
            Retrieves the short path form of the specified path.
            </summary>
            <param name="lpszLongPath">The path string.</param>
            <param name="lpszShortPath">A pointer to a buffer to receive the null-terminated short form of the path that lpszLongPath specifies. Passing NULL for this parameter and zero for cchBuffer will always return the required buffer size for a specified lpszLongPath.</param>
            <param name="cchBuffer">The size of the buffer that lpszShortPath points to, in TCHARs. Set this parameter to zero if lpszShortPath is set to NULL.</param>
            <returns>If the function succeeds, the return value is the length, in TCHARs, of the string that is copied to lpszShortPath, not including the terminating null character. If the lpszShortPath buffer is too small to contain the path, the return value is the size of the buffer, in TCHARs, that is required to hold the path and the terminating null character. If the function fails for any other reason, the return value is zero. To get extended error information, call <see cref="M:System.Runtime.InteropServices.Marshal.GetLastWin32Error"/>.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.RemoveDirectoryW(System.String)">
            <summary>
            Deletes an existing empty directory.
            </summary>
            <param name="lpPathName">The path of the directory to be removed. This path must specify an empty directory, and the calling process must have delete access to the directory.</param>
            <returns>If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. To get extended error information, call <see cref="M:System.Runtime.InteropServices.Marshal.GetLastWin32Error"/>.</returns>
            <remarks>The RemoveDirectory function marks a directory for deletion on close. Therefore, the directory is not removed until the last handle to the directory is closed. RemoveDirectory removes a directory junction, even if the contents of the target are not empty; the function removes directory junctions regardless of the state of the target object.</remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.SetFileTime(System.Void*,JetBrains.Interop.WinApi.Declarations.Structures.FILE_TIME*,JetBrains.Interop.WinApi.Declarations.Structures.FILE_TIME*,JetBrains.Interop.WinApi.Declarations.Structures.FILE_TIME*)">
            <summary>
            Sets the date and time that the specified file or directory was created, last accessed, or last modified.
            </summary>
            <param name="hFile">A handle to the file or directory. The handle must have been created using the CreateFile function with the FILE_WRITE_ATTRIBUTES access right.</param>
            <param name="lpCreationTime">A pointer to a FILETIME structure that contains the new creation date and time for the file or directory. This parameter can be NULL if the application does not need to change this information.</param>
            <param name="lpLastAccessTime">A pointer to a FILETIME structure that contains the new last access date and time for the file or directory. The last access time includes the last time the file or directory was written to, read from, or (in the case of executable files) run. This parameter can be NULL if the application does not need to change this information. To prevent file operations using the given handle from modifying the last access time, call SetFileTime immediately after opening the file handle and pass a FILETIME structure whose dwLowDateTime and dwHighDateTime members are both set to 0xFFFFFFFF.</param>
            <param name="lpLastWriteTime">A pointer to a FILETIME structure that contains the new last modified date and time for the file or directory. This parameter can be NULL if the application does not need to change this information. To prevent file operations using the given handle from modifying the last access time, call SetFileTime immediately after opening the file handle and pass a FILETIME structure whose dwLowDateTime and dwHighDateTime members are both set to 0xFFFFFFFF.</param>
            <returns>If the function succeeds, the return value is nonzero.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.GetFileTime(System.Void*,JetBrains.Interop.WinApi.Declarations.Structures.FILE_TIME*,JetBrains.Interop.WinApi.Declarations.Structures.FILE_TIME*,JetBrains.Interop.WinApi.Declarations.Structures.FILE_TIME*)">
            <summary>
            Retrieves the date and time that a file or directory was created, last accessed, and last modified.
            </summary>
            <param name="hFile">A handle to the file or directory for which dates and times are to be retrieved. The handle must have been created using the CreateFile function with the GENERIC_READ access right. For more information, see File Security and Access Rights.</param>
            <param name="lpCreationTime">A pointer to a FILETIME structure to receive the date and time the file or directory was created. This parameter can be NULL if the application does not require this information.</param>
            <param name="lpLastAccessTime">A pointer to a FILETIME structure to receive the date and time the file or directory was last accessed. The last access time includes the last time the file or directory was written to, read from, or, in the case of executable files, run. This parameter can be NULL if the application does not require this information.</param>
            <param name="lpLastWriteTime">A pointer to a FILETIME structure to receive the date and time the file or directory was last written to, truncated, or overwritten (for example, with WriteFile or SetEndOfFile). This date and time is not updated when file attributes or security descriptors are changed. This parameter can be NULL if the application does not require this information.</param>
            <returns>If the function succeeds, the return value is nonzero.
            If the function fails, the return value is zero. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.SetErrorMode(JetBrains.Interop.WinApi.Declarations.Constants.Win32ErrorMode)">
            <summary>
            Controls whether the system will handle the specified types of serious errors or whether the process will handle them.
            </summary>
            <param name="uMode">The process error mode</param>
            <returns>The return value is the previous state of the error-mode bit flags.</returns>
            <remarks>Each process has an associated error mode that indicates to the system how the application is going to respond to serious errors. A child process inherits the error mode of its parent process. To retrieve the process error mode, use the GetErrorMode function. Because the error mode is set for the entire process, you must ensure that multi-threaded applications do not set different error-mode flags. Doing so can lead to inconsistent error handling. The system does not make alignment faults visible to an application on all processor architectures. Therefore, specifying SEM_NOALIGNMENTFAULTEXCEPT is not an error on such architectures, but the system is free to silently ignore the request.</remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.GetProcessInformation(System.Void*,JetBrains.Interop.Windows.Declarations.Constants.PROCESS_INFORMATION_CLASS,System.Void*,System.UInt32)">
            <summary>
            Retrieves information about the specified process.
            Available since Windows 8.0.
            </summary>
            <param name="hProcess">A handle to the process. This handle must have the PROCESS_SET_INFORMATION access right. For more information, see Process Security and Access Rights.</param>
            <param name="ProcessInformationClass">A member of the PROCESS_INFORMATION_CLASS enumeration specifying the kind of information to retrieve.</param>
            <param name="ProcessInformation">Pointer to an object to receive the type of information specified by the ProcessInformationClass parameter.</param>
            <param name="ProcessInformationSize">The size in bytes of the structure specified by the ProcessInformation parameter.</param>
            <returns>If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. To get extended error information, call GetLastError function.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.IsWow64Process(System.Void*,System.Int32*)">
            <summary>
            Determines whether the specified process is running under WOW64.
            <code>
            | OS    | Process | Wow64Process |
            +=======+=========+==============+
            | ARM64 | ARM64   | 0(FALSE)     |
            | ARM64 | ARM     | 1(TRUE )     |
            | ARM64 | X64     | 0(FALSE)     |
            | ARM64 | X86     | 1(TRUE )     |
            | X64   | X64     | 0(FALSE)     |
            | X64   | X86     | 1(TRUE )     |
            | X86   | X86     | 0(FALSE)     |
            </code>
            </summary>
            <param name="hProcess">A handle to the process. The handle must have the PROCESS_QUERY_INFORMATION or PROCESS_QUERY_LIMITED_INFORMATION access right.</param>
            <param name="Wow64Process">A pointer to a value that is set to TRUE if the process is running under WOW64 on an Intel64 or x64 processor. If the process is running under 32-bit Windows, the value is set to FALSE. If the process is a 32-bit application running under 64-bit Windows 10 on ARM, the value is set to FALSE. If the process is a 64-bit application running under 64-bit Windows, the value is also set to FALSE.</param>
            <returns>If the function succeeds, the return value is a nonzero value. If the function fails, the return value is zero. To get extended error information, call GetLastError.</returns>
            <remarks><b>ATTENTION:</b> The method works differently on Intel64/x64 and ARM !!! Use <see cref="M:JetBrains.Interop.WinApi.Kernel32Dll.IsWow64Process2(System.Void*,JetBrains.Interop.WinApi.MachineId*,JetBrains.Interop.WinApi.MachineId*)"/> instead on Windows 10.</remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.IsWow64Process2(System.Void*,JetBrains.Interop.WinApi.MachineId*,JetBrains.Interop.WinApi.MachineId*)">
            <summary>
            Determines whether the specified process is running under WOW64; also returns additional machine process and architecture information.
            Available since Windows 10.0 Build 1511.
            <code>
            | OS    | Process | pProcessMachine                    | pNativeMachine                   |
            +=======+=========+====================================+==================================+
            | ARM64 | ARM64   | 0x0000(IMAGE_FILE_MACHINE_UNKNOWN) | 0xAA64(IMAGE_FILE_MACHINE_ARM64) |
            | ARM64 | ARM     | 0x01C4(IMAGE_FILE_MACHINE_ARMNT  ) | 0xAA64(IMAGE_FILE_MACHINE_ARM64) |
            | ARM64 | X64     | 0x0000(IMAGE_FILE_MACHINE_UNKNOWN) | 0xAA64(IMAGE_FILE_MACHINE_ARM64) | ATTENTION: Returns 0xAA64 !!! 
            | ARM64 | X86     | 0x014C(IMAGE_FILE_MACHINE_I386   ) | 0xAA64(IMAGE_FILE_MACHINE_ARM64) |
            | X64   | X64     | 0x0000(IMAGE_FILE_MACHINE_UNKNOWN) | 0x8664(IMAGE_FILE_MACHINE_AMD64) |
            | X64   | X86     | 0x014C(IMAGE_FILE_MACHINE_I386   ) | 0x8664(IMAGE_FILE_MACHINE_AMD64) |
            | X86   | X86     | 0x0000(IMAGE_FILE_MACHINE_UNKNOWN) | 0x014C(IMAGE_FILE_MACHINE_I386 ) |
            </code>
            </summary>
            <param name="hProcess">A handle to the process. The handle must have the PROCESS_QUERY_INFORMATION or PROCESS_QUERY_LIMITED_INFORMATION access right.</param>
            <param name="pProcessMachine">On success, returns a pointer to an IMAGE_FILE_MACHINE_* value. The value will be IMAGE_FILE_MACHINE_UNKNOWN if the target process is not a WOW64 process; otherwise, it will identify the type of WoW process.</param>
            <param name="pNativeMachine">On success, returns a pointer to a possible IMAGE_FILE_MACHINE_* value identifying the native architecture of host system.</param>
            <returns>If the function succeeds, the return value is a nonzero value. If the function fails, the return value is zero. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.GetPackageFullName(System.Void*,System.UInt32*,System.Char*)">
            <summary>
            Gets the package full name for the specified process.
            </summary>
            <remarks>Minimum supported client: Windows 8 [desktop apps only]. Minimum supported server: Windows Server 2012 [desktop apps only]</remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.CreateFileMappingW(System.Void*,JetBrains.Interop.WinApi.SECURITY_ATTRIBUTES*,System.UInt32,System.UInt32,System.UInt32,System.String)">
            <summary>
              Creates or opens a named or unnamed file mapping object for a specified file.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.MapViewOfFile(System.Void*,System.UInt32,System.UInt32,System.UInt32,System.UIntPtr)">
            <summary>
              Maps a view of a file mapping into the address space of a calling process.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.UnmapViewOfFile(System.Void*)">
            <summary>
              Unmaps a mapped view of a file from the calling process's address space.
            </summary>
            <param name="lpBaseAddress">A pointer to the base address of the mapped view of a file that is to be unmapped. This value must be identical to the value returned by a previous call to the MapViewOfFile or MapViewOfFileEx function.</param>
            <returns>If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.MoveFileExW(System.String,System.String,System.UInt32)">
            <summary>
              Moves an existing file or directory, including its children, with various move options.
              The MoveFileWithProgress function is equivalent to the MoveFileEx function, except that MoveFileWithProgress allows you to provide a callback function that receives progress notifications.
              To perform this operation as a transacted operation, use the MoveFileTransacted function.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.QueryFullProcessImageNameW(System.Void*,System.UInt32,System.Char*,System.UInt32*)">
            <summary>
            Retrieves the full name of the executable image for the specified process.
            </summary>
            <param name="hProcess">A handle to the process. This handle must be created with the PROCESS_QUERY_INFORMATION or PROCESS_QUERY_LIMITED_INFORMATION access right.</param>
            <param name="flags">0 = The name should use the Win32 path format; PROCESS_NAME_NATIVE (0x01) = The name should use the native system path format.</param>
            <param name="lpExeName">The path to the executable image. If the function succeeds, this string is null-terminated.</param>
            <param name="lpdwSize">On input, specifies the size of the lpExeName buffer, in characters. On success, receives the number of characters written to the buffer, not including the null-terminating character.</param>
            <returns>If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. To get extended error information, call GetLastError.</returns>
            <remarks>Minimum supported client: Windows Vista [desktop apps only]. Minimum supported server: Windows Server 2008 [desktop apps only]</remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.BeginUpdateResourceW(System.String,System.Int32)">
            <summary>
            Retrieves a handle that can be used by the UpdateResource function to add, delete, or replace resources in a binary module.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.EndUpdateResourceW(System.Void*,System.Int32)">
            <summary>
            Commits or discards changes made prior to a call to UpdateResource.
            </summary>
            <returns>Returns TRUE if the function succeeds; FALSE otherwise. If the function succeeds and fDiscard is TRUE, then no resource updates are made to the file; otherwise all successful resource updates are made to the file. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.UpdateResourceW(System.Void*,System.Char*,System.Char*,System.UInt16,System.Void*,System.UInt32)">
            <summary>
            Adds, deletes, or replaces a resource in a portable executable (PE) file. There are some restrictions on resource updates in files that contain Resource Configuration (RC Config) data: language-neutral (LN) files and language-specific resource (.mui) files.
            </summary>
            <param name="hUpdate">A module handle returned by the BeginUpdateResource function, referencing the file to be updated. </param>
            <param name="lpType">The resource type to be updated. Alternatively, rather than a pointer, this parameter can be MAKEINTRESOURCE(ID), where ID is an integer value representing a predefined resource type. If the first character of the string is a pound sign (#), then the remaining characters represent a decimal number that specifies the integer identifier of the resource type. For example, the string "#258" represents the identifier 258. For a list of predefined resource types, see Resource Types. </param>
            <param name="lpName">The name of the resource to be updated. Alternatively, rather than a pointer, this parameter can be MAKEINTRESOURCE(ID), where ID is a resource ID. When creating a new resource do not use a string that begins with a '#' character for this parameter.</param>
            <param name="wLanguage">The language identifier of the resource to be updated. For a list of the primary language identifiers and sublanguage identifiers that make up a language identifier, see the MAKELANGID macro. </param>
            <param name="lpData">The resource data to be inserted into the file indicated by hUpdate. If the resource is one of the predefined types, the data must be valid and properly aligned. Note that this is the raw binary data to be stored in the file indicated by hUpdate, not the data provided by LoadIcon, LoadString, or other resource-specific load functions. All data containing strings or text must be in Unicode format. lpData must not point to ANSI data. If lpData is NULL and cbData is 0, the specified resource is deleted from the file indicated by hUpdate. Prior to Windows 7: If lpData is NULL and cbData is nonzero, the specified resource is NOT deleted and an exception is thrown.</param>
            <param name="cbData">The size, in bytes, of the resource data at lpData. </param>
            <returns>Returns TRUE if successful or FALSE otherwise. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.GetExitCodeProcess(System.Void*,System.UInt32@)">
            <summary>
            Retrieves the termination status of the specified process.
            </summary>
            <param name="hProcess">A handle to the process. The handle must have the PROCESS_QUERY_INFORMATION or PROCESS_QUERY_LIMITED_INFORMATION access right. For more information, see Process Security and Access Rights.</param>
            <param name="lpExitCode">A pointer to a variable to receive the process termination status. For more information, see Remarks.</param>
            <returns></returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.SetStdHandle(System.UInt32,System.Void*)">
            <summary>
            Sets the handle for the specified standard device (standard input, standard output, or standard error).
            </summary>
            <param name="nStdHandle">The standard device for which the handle is to be set. This parameter can be one of the following values.
            STD_INPUT_HANDLE (DWORD)-10
            The standard input device.
            STD_OUTPUT_HANDLE (DWORD)-11
            The standard output device.
            STD_ERROR_HANDLE (DWORD)-12
            The standard error device.
            </param>
            <param name="hHandle">The handle for the standard device.</param>
            <returns>If the function succeeds, the return value is nonzero.
            If the function fails, the return value is zero. To get extended error information, call GetLastError.</returns>
            <remarks>The standard handles of a process may have been redirected by a call to SetStdHandle, in which case GetStdHandle will return the redirected handle. If the standard handles have been redirected, you can specify the CONIN$ value in a call to the CreateFile function to get a handle to a console's input buffer. Similarly, you can specify the CONOUT$ value to get a handle to the console's active screen buffer.</remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.GetVolumeInformationByHandleW(System.Void*,System.Char*,System.UInt32,System.UInt32*,System.UInt32*,System.UInt32*,System.Char*,System.UInt32)">
            <summary>
            Retrieves information about the file system and volume associated with the specified file.
            To retrieve the current compression state of a file or directory, use FSCTL_GET_COMPRESSION.
            </summary>
            <param name="hFile">A handle to the file.</param>
            <param name="lpVolumeNameBuffer">A pointer to a buffer that receives the name of a specified volume. The maximum buffer size is MAX_PATH+1.</param>
            <param name="nVolumeNameSize">The length of a volume name buffer, in WCHARs. The maximum buffer size is MAX_PATH+1.
            This parameter is ignored if the volume name buffer is not supplied.
            </param>
            <param name="lpVolumeSerialNumber">A pointer to a variable that receives the volume serial number.
            This parameter can be NULL if the serial number is not required.
            This function returns the volume serial number that the operating system assigns when a hard disk is formatted. To programmatically obtain the hard disk's serial number that the manufacturer assigns, use the Windows Management Instrumentation (WMI) Win32_PhysicalMedia property SerialNumber.</param>
            <param name="lpMaximumComponentLength">A pointer to a variable that receives the maximum length, in WCHARs, of a file name component that a specified file system supports.
            A file name component is the portion of a file name between backslashes.
            The value that is stored in the variable that *lpMaximumComponentLength points to is used to indicate that a specified file system supports long names. For example, for a FAT file system that supports long names, the function stores the value 255, rather than the previous 8.3 indicator. Long names can also be supported on systems that use the NTFS file system.</param>
            <param name="lpFileSystemFlags">A pointer to a variable that receives flags associated with the specified file system.
            This parameter can be one or more of the following flags. However, FILE_FILE_COMPRESSION and FILE_VOL_IS_COMPRESSED are mutually exclusive.</param>
            <param name="lpFileSystemNameBuffer">A pointer to a buffer that receives the name of the file system, for example, the FAT file system or the NTFS file system. The buffer size is specified by the nFileSystemNameSize parameter.</param>
            <param name="nFileSystemNameSize">The length of the file system name buffer, in WCHARs. The maximum buffer size is MAX_PATH+1.
            This parameter is ignored if the file system name buffer is not supplied.</param>
            <returns>If all the requested information is retrieved, the return value is nonzero.
            If not all the requested information is retrieved, the return value is zero. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.DuplicateHandle(System.Void*,System.Void*,System.Void*,System.Void**,System.UInt32,System.Int32,System.UInt32)">
            <summary>
            Duplicates an object handle.
            </summary>
            <param name="hSourceProcessHandle">A handle to the process with the handle to be duplicated. The handle must have the PROCESS_DUP_HANDLE access right.</param>
            <param name="hSourceHandle">The handle to be duplicated. This is an open object handle that is valid in the context of the source process.</param>
            <param name="hTargetProcessHandle">A handle to the process that is to receive the duplicated handle. The handle must have the PROCESS_DUP_HANDLE access right.</param>
            <param name="lpTargetHandle">A pointer to a variable that receives the duplicate handle. This handle value is valid in the context of the target process. If lpTargetHandle is NULL, the function duplicates the handle, but does not return the duplicate handle value to the caller.</param>
            <param name="dwDesiredAccess">The access requested for the new handle. This parameter is ignored if the dwOptions parameter specifies the DUPLICATE_SAME_ACCESS flag. Otherwise, the flags that can be specified depend on the type of object whose handle is to be duplicated.</param>
            <param name="bInheritHandle">A variable that indicates whether the handle is inheritable. If TRUE, the duplicate handle can be inherited by new processes created by the target process. If FALSE, the new handle cannot be inherited.</param>
            <param name="dwOptions">Optional actions. See <see cref="T:JetBrains.Interop.WinApi.Constants.DUPLICATE"/>.</param>
            <returns>If the function succeeds, the return value is nonzero. If the function fails, the return value is zero.To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.SetHandleInformation(System.Void*,System.UInt32,System.UInt32)">
            <summary>
            Sets certain properties of an object handle.
            </summary>
            <param name="hObject"></param>
            <param name="dwMask">See <see cref="T:JetBrains.Interop.WinApi.Constants.SetHandleInformationFlags"/>.</param>
            <param name="dwFlags">See <see cref="T:JetBrains.Interop.WinApi.Constants.SetHandleInformationFlags"/>.</param>
            <returns></returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.CompareStringW(System.UInt32,System.UInt32,System.Char*,System.Int32,System.Char*,System.Int32)">
            <summary>
            Compares two character strings, for a locale specified by identifier.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.CompareStringExW(System.String,System.UInt32,System.Char*,System.Int32,System.Char*,System.Int32,System.Void*,System.Void*,System.IntPtr)">
            <summary>
            Compares two Unicode (wide character) strings, for a locale specified by name.
            </summary>
            <since>Windows NT 6.0</since>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.LCMapStringW(System.UInt32,System.UInt32,System.Char*,System.Int32,System.Char*,System.Int32)">
            <summary>
            For a locale specified by identifier, maps one input character string to another using a specified transformation, or generates a sort key for the input string.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.LCMapStringEx(System.Char*,System.UInt32,System.Char*,System.Int32,System.Char*,System.Int32,System.Void*,System.Void*,System.Void*)">
            <summary>
            For a locale specified by name, maps an input character string to another using a specified transformation, or generates a sort key for the input string.
            </summary>
            <since>6.0</since>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.DeviceIoControl(System.Void*,System.UInt32,System.Void*,System.UInt32,System.Void*,System.UInt32,System.UInt32*,System.Void*)">
            <summary>
            Sends a control code directly to a specified device driver, causing the corresponding device to perform the corresponding operation.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.GetVolumeNameForVolumeMountPointW(System.Char*,System.Char*,System.UInt32)">
            <summary>
            Retrieves a volume GUID path for the volume that is associated with the specified volume mount point ( drive letter, volume GUID path, or mounted folder).
            </summary>
            <param name="lpszVolumeMountPoint">A pointer to a string that contains the path of a mounted folder (for example, "Y:\MountX\") or a drive letter (for example, "X:\"). The string must end with a trailing backslash ('\').</param>
            <param name="lpszVolumeName">A pointer to a string that receives the volume GUID path. This path is of the form "\\?\Volume{GUID}\" where GUID is a GUID that identifies the volume. If there is more than one volume GUID path for the volume, only the first one in the mount manager's cache is returned.</param>
            <param name="cchBufferLength">The length of the output buffer, in TCHARs. A reasonable size for the buffer to accommodate the largest possible volume GUID path is 50 characters.</param>
            <returns>If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.ReadFile(System.Void*,System.Void*,System.UInt32,System.UInt32*,JetBrains.Interop.WinApi.OVERLAPPED*)">
            <summary>
            Reads data from the specified file or input/output (I/O) device. Reads occur at the position specified by the file pointer if supported by the device.
            This function is designed for both synchronous and asynchronous operations. For a similar function designed solely for asynchronous operation, see ReadFileEx.
            </summary>
            <param name="hFile"></param>
            <param name="lpBuffer"></param>
            <param name="nNumberOfBytesToRead"></param>
            <param name="lpNumberOfBytesRead"></param>
            <param name="lpOverlapped"></param>
            <returns></returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.CancelIoEx(System.Void*,JetBrains.Interop.WinApi.OVERLAPPED*)">
            <summary>
            Marks any outstanding I/O operations for the specified file handle. The function only cancels I/O operations in the current process, regardless of which thread created the I/O operation.
            </summary>
            <param name="hFile"></param>
            <param name="lpOverlapped"></param>
            <returns></returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.TerminateProcess(System.Void*,System.UInt32)">
            <summary>
            Terminates the specified process and all of its threads.
            </summary>
            <param name="hProcess"></param>
            <param name="uExitCode"></param>
            <returns></returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.CreateNamedPipeW(System.String,System.UInt32,System.UInt32,System.UInt32,System.UInt32,System.UInt32,System.UInt32,JetBrains.Interop.WinApi.SECURITY_ATTRIBUTES*)">
            <summary>
            Creates an instance of a named pipe and returns a handle for subsequent pipe operations. A named pipe server process uses this function either to create the first instance of a specific named pipe and establish its basic attributes or to create a new instance of an existing named pipe.
            </summary>
            <param name="lpName"></param>
            <param name="dwOpenMode"></param>
            <param name="dwPipeMode"></param>
            <param name="nMaxInstances"></param>
            <param name="nOutBufferSize"></param>
            <param name="nInBufferSize"></param>
            <param name="nDefaultTimeOut"></param>
            <param name="lpSecurityAttributes"></param>
            <returns></returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.SetNamedPipeHandleState(System.Void*,System.UInt32*,System.UInt32*,System.UInt32*)">
            <summary>
            Sets the read mode and the blocking mode of the specified named pipe. If the specified handle is to the client end of a named pipe and if the named pipe server process is on a remote computer, the function can also be used to control local buffering.
            </summary>
            <param name="hNamedPipe"></param>
            <param name="lpMode"></param>
            <param name="lpMaxCollectionCount"></param>
            <param name="lpCollectDataTimeout"></param>
            <returns></returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.ConnectNamedPipe(System.Void*,JetBrains.Interop.WinApi.OVERLAPPED*)">
            <summary>
            Enables a named pipe server process to wait for a client process to connect to an instance of a named pipe. A client process connects by calling either the CreateFile or CallNamedPipe function.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.SetFileCompletionNotificationModes(System.Void*,System.Byte)">
            <summary>
            Sets the notification modes for a file handle, allowing you to specify how completion notifications work for the specified file.
            </summary>
            <param name="FileHandle"></param>
            <param name="Flags"></param>
            <returns></returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.CreateJobObjectW(JetBrains.Interop.WinApi.SECURITY_ATTRIBUTES*,System.String)">
            <summary>
             Creates or opens a job object.
            </summary>
            <param name="lpJobAttributes"></param>
            <param name="lpName"></param>
            <returns>If the function succeeds, the return value is a handle to the job object. The handle has the JOB_OBJECT_ALL_ACCESS access right. If the object existed before the function call, the function returns a handle to the existing job object and GetLastError returns ERROR_ALREADY_EXISTS.
            If the function fails, the return value is NULL. To get extended error information, call GetLastError.
            </returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.SetInformationJobObject(System.Void*,System.UInt32,System.Void*,System.UInt32)">
            <summary>
            Sets limits for a job object.
            </summary>
            <param name="hJob"></param>
            <param name="JobObjectInfoClass"><see cref="T:JetBrains.Interop.WinApi.Constants.JOBOBJECTINFOCLASS"/></param>
            <param name="lpJobObjectInfo"></param>
            <param name="cbJobObjectInfoLength"></param>
            <returns></returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.AssignProcessToJobObject(System.Void*,System.Void*)">
            <summary>
            Assigns a process to an existing job object.
            </summary>
            <param name="hJob"></param>
            <param name="hProcess"></param>
            <returns></returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.TerminateJobObject(System.Void*,System.UInt32)">
            <summary>
            Terminates all processes currently associated with the job. If the job is nested, this function terminates all processes currently associated with the job and all of its child jobs in the hierarchy.
            </summary>
            <param name="hJob"></param>
            <param name="uExitCode"></param>
            <returns></returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.RegisterWaitForSingleObject(System.Void**,System.Void*,System.Void*,System.Void*,System.UInt32,System.UInt32)">
            <summary>
             Directs a wait thread in the thread pool to wait on the object. The wait thread queues the specified callback function to the thread pool when one of the following occurs:
            The specified object is in the signaled state.
            The time-out interval elapses.
            </summary>
            <param name="phNewWaitObject"></param>
            <param name="hObject"></param>
            <param name="Callback"><see cref="T:JetBrains.Interop.WinApi.Functions.WAITORTIMERCALLBACK"/></param>
            <param name="Context"></param>
            <param name="dwMilliseconds"></param>
            <param name="dwFlags"><see cref="T:JetBrains.Interop.WinApi.Constants.RegisterWaitForSingleObjectFlags"/></param>
            <returns></returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.UnregisterWait(System.Void*)">
            <summary>
            Cancels a registered wait operation issued by the RegisterWaitForSingleObject function.
            To use a completion event, call the UnregisterWaitEx function.
            </summary>
            <param name="WaitHandle"></param>
            <returns></returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.UnregisterWaitEx(System.Void*,System.Void*)">
            <summary>
            Cancels a registered wait operation issued by the RegisterWaitForSingleObject function.
            </summary>
            <param name="WaitHandle"></param>
            <param name="CompletionEvent"></param>
            <returns></returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.GlobalLock(System.Void*)">
            <summary>
            Locks a global memory object and returns a pointer to the first byte of the object's memory block.
            </summary>
            <param name="hMem">A handle to the global memory object. This handle is returned by either the GlobalAlloc or GlobalReAlloc function.</param>
            <returns>If the function succeeds, the return value is a pointer to the first byte of the memory block.</returns>
            <remarks>
            The internal data structures for each memory object include a lock count that is initially zero.
            For movable memory objects, GlobalLock increments the count by one, and the GlobalUnlock function decrements the count by one.
            Each successful call that a process makes to GlobalLock for an object must be matched by a corresponding call to GlobalUnlock.
            Locked memory will not be moved or discarded, unless the memory object is reallocated by using the GlobalReAlloc function.
            The memory block of a locked memory object remains locked until its lock count is decremented to zero, at which time it can be moved or discarded.
            Memory objects allocated with GMEM_FIXED always have a lock count of zero.
            For these objects, the value of the returned pointer is equal to the value of the specified handle.
            If the specified memory block has been discarded or if the memory block has a zero-byte size, this function returns NULL.
            Discarded objects always have a lock count of zero.
            </remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.GlobalUnlock(System.Void*)">
            <summary>
            Decrements the lock count associated with a memory object that was allocated with GMEM_MOVEABLE.
            This function has no effect on memory objects allocated with GMEM_FIXED.
            </summary>
            <param name="hMem">A handle to the global memory object. This handle is returned by either the GlobalAlloc or GlobalReAlloc function.</param>
            <returns>
            If the memory object is still locked after decrementing the lock count, the return value is a nonzero value.
            If the memory object is unlocked after decrementing the lock count, the function returns zero and GetLastError returns NO_ERROR.
            </returns>
            <remarks>
            If the memory object is already unlocked, GlobalUnlock returns FALSE and GetLastError reports ERROR_NOT_LOCKED.
            A process should not rely on the return value to determine the number of times it must subsequently call GlobalUnlock for a memory object.
            </remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.GlobalSize(System.Void*)">
            <summary>
            Retrieves the current size of the specified global memory object, in bytes.
            </summary>
            <param name="hMem">A handle to the global memory object. This handle is returned by either the GlobalAlloc or GlobalReAlloc function.</param>
            <returns>If the function succeeds, the return value is the size of the specified global memory object, in bytes.</returns>
            <remarks>
            The size of a memory block may be larger than the size requested when the memory was allocated.
            To verify that the specified object's memory block has not been discarded, use the GlobalFlags function before calling GlobalSize.
            </remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.QueryInformationJobObject(System.Void*,JetBrains.Interop.WinApi.Constants.JOBOBJECTINFOCLASS,System.Void*,System.UInt32,System.UInt32*)">
            <summary>
            Retrieves limit and job state information from the job object.
            </summary>
            <param name="hJob"></param>
            <param name="JobObjectInfoClass"></param>
            <param name="lpJobObjectInfo"></param>
            <param name="cbJobObjectInfoLength"></param>
            <param name="lpReturnLength"></param>
            <returns></returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.CreateEventW(JetBrains.Interop.WinApi.SECURITY_ATTRIBUTES*,System.Int32,System.Int32,System.Char*)">
            <summary>
             Creates or opens a named or unnamed event object.
            To specify an access mask for the object, use the CreateEventEx function.
            </summary>
            <param name="lpEventAttributes">A pointer to a SECURITY_ATTRIBUTES structure. If this parameter is NULL, the handle cannot be inherited by child processes.
            The lpSecurityDescriptor member of the structure specifies a security descriptor for the new event. If lpEventAttributes is NULL, the event gets a default security descriptor. The ACLs in the default security descriptor for an event come from the primary or impersonation token of the creator.
            </param>
            <param name="bManualReset">If this parameter is TRUE, the function creates a manual-reset event object, which requires the use of the ResetEvent function to set the event state to nonsignaled. If this parameter is FALSE, the function creates an auto-reset event object, and system automatically resets the event state to nonsignaled after a single waiting thread has been released. </param>
            <param name="bInitialState">If this parameter is TRUE, the initial state of the event object is signaled; otherwise, it is nonsignaled. </param>
            <param name="lpName">The name of the event object. The name is limited to MAX_PATH characters. Name comparison is case sensitive.
            If lpName matches the name of an existing named event object, this function requests the EVENT_ALL_ACCESS access right. In this case, the bManualReset and bInitialState parameters are ignored because they have already been set by the creating process. If the lpEventAttributes parameter is not NULL, it determines whether the handle can be inherited, but its security-descriptor member is ignored.
            If lpName is NULL, the event object is created without a name.
            If lpName matches the name of another kind of object in the same namespace (such as an existing semaphore, mutex, waitable timer, job, or file-mapping object), the function fails and the GetLastError function returns ERROR_INVALID_HANDLE. This occurs because these objects share the same namespace.
            The name can have a "Global\" or "Local\" prefix to explicitly create the object in the global or session namespace. The remainder of the name can contain any character except the backslash character (\). For more information, see Kernel Object Namespaces. Fast user switching is implemented using Terminal Services sessions. Kernel object names must follow the guidelines outlined for Terminal Services so that applications can support multiple users.
            The object can be created in a private namespace. For more information, see Object Namespaces.
            </param>
            <returns>If the function succeeds, the return value is a handle to the event object. If the named event object existed before the function call, the function returns a handle to the existing object and GetLastError returns ERROR_ALREADY_EXISTS.
            If the function fails, the return value is NULL. To get extended error information, call GetLastError.
            </returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.SetProcessAffinityMask(System.Void*,System.UIntPtr)">
            <summary>
            Sets a processor affinity mask for the threads of the specified process.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.ResetEvent(System.Void*)">
            <summary>
            Sets the specified event object to the nonsignaled state.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.SetEvent(System.Void*)">
            <summary>
            Sets the specified event object to the signaled state.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.FormatMessageW(System.UInt32,System.Void*,System.UInt32,System.UInt32,System.UInt16*,System.UInt32,System.Void*)">
            <summary>
                 Formats a message string. The function requires a message definition as input. The message definition can come from a buffer passed into the function. It can come from a message table resource in an already-loaded module. Or the caller can ask the function to search the system's message table resource(s) for the message definition. The function finds the message definition in a message table resource based on a message identifier and a language identifier. The function copies the formatted message text to an output buffer, processing any embedded insert sequences if requested.
            </summary>
            <param name="dwFlags">The formatting options, and how to interpret the lpSource parameter. The low-order byte of dwFlags specifies how the function handles line breaks in the output buffer. The low-order byte can also specify the maximum width of a formatted output line.
                This parameter can be one or more of the following values. <see cref="T:JetBrains.Interop.WinApi.Constants.FORMAT_MESSAGE" />
            The low-order byte of dwFlags can specify the maximum width of a formatted output line. The following are possible values of the low-order byte.
                 If the low-order byte is a nonzero value other than FORMAT_MESSAGE_MAX_WIDTH_MASK, it specifies the maximum number of characters in an output line. The function ignores regular line breaks in the message definition text. The function never splits a string delimited by white space across a line break. The function stores hard-coded line breaks in the message definition text into the output buffer. Hard-coded line breaks are coded with the %n escape sequence.
            </param>
            <param name="lpSource">The location of the message definition. The type of this parameter depends upon the settings in the dwFlags parameter.
                If neither of these flags is set in dwFlags, then lpSource is ignored.</param>
            <param name="dwMessageId">The message identifier for the requested message. This parameter is ignored if dwFlags includes FORMAT_MESSAGE_FROM_STRING.</param>
            <param name="dwLanguageId">
                The language identifier for the requested message. This parameter is ignored if dwFlags includes FORMAT_MESSAGE_FROM_STRING.
               If you pass a specific LANGID in this parameter, FormatMessage will return a message for that LANGID only. If the function cannot find a message for that LANGID, it sets Last-Error to ERROR_RESOURCE_LANG_NOT_FOUND. If you pass in zero, FormatMessage looks for a message for LANGIDs in the following order:
               1.Language neutral
               2.Thread LANGID, based on the thread's locale value
               3.User default LANGID, based on the user's default locale value
               4.System default LANGID, based on the system default locale value
               5.US English
               If FormatMessage does not locate a message for any of the preceding LANGIDs, it returns any language message string that is present. If that fails, it returns ERROR_RESOURCE_LANG_NOT_FOUND.
            </param>
            <param name="lpBuffer">A pointer to a buffer that receives the null-terminated string that specifies the formatted message. If dwFlags includes FORMAT_MESSAGE_ALLOCATE_BUFFER, the function allocates a buffer using the LocalAlloc function, and places the pointer to the buffer at the address specified in lpBuffer.</param>
            <param name="nSize">
               If the FORMAT_MESSAGE_ALLOCATE_BUFFER flag is not set, this parameter specifies the size of the output buffer, in TCHARs. If FORMAT_MESSAGE_ALLOCATE_BUFFER is set, this parameter specifies the minimum number of TCHARs to allocate for an output buffer.
              The output buffer cannot be larger than 64K bytes.
            </param>
            <param name="Arguments">
              An array of values that are used as insert values in the formatted message. A %1 in the format string indicates the first value in the Arguments array; a %2 indicates the second argument; and so on.
             The interpretation of each value depends on the formatting information associated with the insert in the message definition. The default is to treat each value as a pointer to a null-terminated string.
             By default, the Arguments parameter is of type va_list*, which is a language- and implementation-specific data type for describing a variable number of arguments. The state of the va_list argument is undefined upon return from the function. To use the va_list again, destroy the variable argument list pointer using va_end and reinitialize it with va_start.
             If you do not have a pointer of type va_list*, then specify the FORMAT_MESSAGE_ARGUMENT_ARRAY flag and pass a pointer to an array of DWORD_PTR values; those values are input to the message formatted as the insert values. Each insert must have a corresponding element in the array.
            </param>
            <returns>If the function succeeds, the return value is the number of TCHARs stored in the output buffer, excluding the terminating null character.
            If the function fails, the return value is zero. To get extended error information, call GetLastError.
            </returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.GetDiskFreeSpaceExW(System.String,System.UInt64*,System.UInt64*,System.UInt64*)">
            <summary>
            Retrieves information about the amount of space that is available on a disk volume, which is the total amount of space, the total amount of free space, and the total amount of free space available to the user that is associated with the calling thread.
            </summary>
            <param name="lpDirectoryName">A directory on the disk.
            If this parameter is NULL, the function uses the root of the current disk.
            If this parameter is a UNC name, it must include a trailing backslash, for example, "\\MyServer\MyShare\".
            This parameter does not have to specify the root directory on a disk. The function accepts any directory on a disk.
            The calling application must have FILE_LIST_DIRECTORY access rights for this directory.</param>
            <param name="lpFreeBytesAvailable">A pointer to a variable that receives the total number of free bytes on a disk that are available to the user who is associated with the calling thread.
            This parameter can be NULL.
            If per-user quotas are being used, this value may be less than the total number of free bytes on a disk.</param>
            <param name="lpTotalNumberOfBytes">A pointer to a variable that receives the total number of bytes on a disk that are available to the user who is associated with the calling thread.
            This parameter can be NULL.
            If per-user quotas are being used, this value may be less than the total number of bytes on a disk.
            To determine the total number of bytes on a disk or volume, use IOCTL_DISK_GET_LENGTH_INFO.</param>
            <param name="lpTotalNumberOfFreeBytes">A pointer to a variable that receives the total number of free bytes on a disk. 
            This parameter can be NULL.</param>
            <returns>If the function succeeds, the return value is nonzero. If the function fails, the return value is zero (0). To get extended error information, call GetLastError.</returns>
            <remarks>The values obtained by this function are of the type ULARGE_INTEGER. Do not truncate these values to 32 bits.
            The GetDiskFreeSpaceEx function returns zero (0) for lpTotalNumberOfFreeBytes and lpFreeBytesAvailable for all CD requests unless the disk is an unwritten CD in a CD-RW drive.
            Symbolic link behavior—If the path points to a symbolic link, the operation is performed on the target.
            </remarks>>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.SetFileInformationByHandle(System.Void*,JetBrains.Interop.WinApi.Constants.FILE_INFO_BY_HANDLE_CLASS,System.Void*,System.UInt32)">
            <summary>
            Sets the file information for the specified file.
            </summary>
            <param name="fileHandle">
             A handle to the file for which to change information.
             This handle must be opened with the appropriate permissions for the requested change.
             This handle should not be a pipe handle.
            </param>
            <param name="fileInformationClass">A FILE_INFO_BY_HANDLE_CLASS enumeration value that specifies the type of information to be changed. <see cref="T:JetBrains.Interop.WinApi.Constants.FILE_INFO_BY_HANDLE_CLASS"/></param>
            <param name="lpFileInformation">A pointer to the buffer that contains the information to change for the specified file information class. The structure that this parameter points to corresponds to the class that is specified by FileInformationClass</param>
            <param name="fileInformationLength">The size of lpFileInformation, in bytes</param>
            <returns>Returns nonzero if successful or zero otherwise. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.GetFinalPathNameByHandleW(System.Void*,System.Text.StringBuilder,System.UInt32,System.UInt32)">
            <summary>
            Retrieves the final path for the specified file.
            </summary>
            <param name="fileHandle">A handle to a file or directory.</param>
            <param name="filePath">A pointer to a buffer that receives the path of fileHandle.</param>
            <param name="filePathLength">The filePath capacity, in TCHARs. This value does not include a NULL termination character.</param>
            <param name="dwFlags">The type of result to return. This parameter can be one of the following values. <see cref="T:JetBrains.Interop.WinApi.Constants.GetFinalPathNameByHandleFlags"/></param>
            <returns>If the function succeeds, the return value is the length of the string received by lpszFilePath, in TCHARs. This value does not include the size of the terminating null character.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.GetSystemDefaultLCID">
            <summary>
            Returns the locale identifier for the system locale.
            </summary>
            <returns>32-bit value that consists of a language identifier and a sort order identifier</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.GetUserDefaultLCID">
            <summary>
            Returns the locale identifier for the current user.
            </summary>
            <returns>32-bit value that consists of a language identifier and a sort order identifier</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.GetOEMCP">
            <summary>
            Returns the current original equipment manufacturer (OEM) code page identifier for the operating system.
            </summary>
            <returns>Returns the current OEM code page identifier for the operating system.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.GetConsoleWindow">
            <summary>
            Retrieves the window handle used by the console associated with the calling process.
            </summary>
            <returns>The return value is a handle to the window used by the console associated with the calling process or NULL if there is no such associated console.</returns>
            <since>5</since>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.GetConsoleMode(System.Void*,System.UInt32*)">
            <summary>
            Retrieves the current input mode of a console's input buffer or the current output mode of a console screen buffer.
            </summary>
            <param name="hConsoleHandle">A handle to the console input buffer or the console screen buffer. The handle must have the GENERIC_READ access right. For more information, see Console Buffer Security and Access Rights.</param>
            <param name="lpMode">A pointer to a variable that receives the current mode of the specified buffer.
            If the hConsoleHandle parameter is an input handle, the mode can be one or more of the following values. When a console is created, all input modes except ENABLE_WINDOW_INPUT are enabled by default.
            Value	Meaning
            ENABLE_ECHO_INPUT 0x0004	
            Characters read by the ReadFile or ReadConsole function are written to the active screen buffer as they are read. This mode can be used only if the ENABLE_LINE_INPUT mode is also enabled.
            ENABLE_INSERT_MODE 0x0020	
            When enabled, text entered in a console window will be inserted at the current cursor location and all text following that location will not be overwritten. When disabled, all following text will be overwritten.
            ENABLE_LINE_INPUT 0x0002	
            The ReadFile or ReadConsole function returns only when a carriage return character is read. If this mode is disabled, the functions return when one or more characters are available.
            ENABLE_MOUSE_INPUT 0x0010	
            If the mouse pointer is within the borders of the console window and the window has the keyboard focus, mouse events generated by mouse movement and button presses are placed in the input buffer. These events are discarded by ReadFile or ReadConsole, even when this mode is enabled.
            ENABLE_PROCESSED_INPUT 0x0001	
            CTRL+C is processed by the system and is not placed in the input buffer. If the input buffer is being read by ReadFile or ReadConsole, other control keys are processed by the system and are not returned in the ReadFile or ReadConsole buffer. If the ENABLE_LINE_INPUT mode is also enabled, backspace, carriage return, and line feed characters are handled by the system.
            ENABLE_QUICK_EDIT_MODE 0x0040	
            This flag enables the user to use the mouse to select and edit text.
            To enable this mode, use ENABLE_QUICK_EDIT_MODE | ENABLE_EXTENDED_FLAGS. To disable this mode, use ENABLE_EXTENDED_FLAGS without this flag.
            ENABLE_WINDOW_INPUT 0x0008	
            User interactions that change the size of the console screen buffer are reported in the console's input buffer. Information about these events can be read from the input buffer by applications using the ReadConsoleInput function, but not by those using ReadFile or ReadConsole.
            ENABLE_VIRTUAL_TERMINAL_INPUT 0x0200	
            Setting this flag directs the Virtual Terminal processing engine to convert user input received by the console window into Console Virtual Terminal Sequences that can be retrieved by a supporting application through WriteFile or WriteConsole functions.
            The typical usage of this flag is intended in conjunction with ENABLE_VIRTUAL_TERMINAL_PROCESSING on the output handle to connect to an application that communicates exclusively via virtual terminal sequences.
            If the hConsoleHandle parameter is a screen buffer handle, the mode can be one or more of the following values. When a screen buffer is created, both output modes are enabled by default.
            Value	Meaning
            ENABLE_PROCESSED_OUTPUT 0x0001	
            Characters written by the WriteFile or WriteConsole function or echoed by the ReadFile or ReadConsole function are parsed for ASCII control sequences, and the correct action is performed. Backspace, tab, bell, carriage return, and line feed characters are processed.
            ENABLE_WRAP_AT_EOL_OUTPUT 0x0002	
            When writing with WriteFile or WriteConsole or echoing with ReadFile or ReadConsole, the cursor moves to the beginning of the next row when it reaches the end of the current row. This causes the rows displayed in the console window to scroll up automatically when the cursor advances beyond the last row in the window. It also causes the contents of the console screen buffer to scroll up (discarding the top row of the console screen buffer) when the cursor advances beyond the last row in the console screen buffer. If this mode is disabled, the last character in the row is overwritten with any subsequent characters.
            ENABLE_VIRTUAL_TERMINAL_PROCESSING 0x0004	
            When writing with WriteFile or WriteConsole, characters are parsed for VT100 and similar control character sequences that control cursor movement, color/font mode, and other operations that can also be performed via the existing Console APIs. For more information, see Console Virtual Terminal Sequences.
            DISABLE_NEWLINE_AUTO_RETURN 0x0008	
            When writing with WriteFile or WriteConsole, this adds an additional state to end-of-line wrapping that can delay the cursor move and buffer scroll operations.
            Normally when ENABLE_WRAP_AT_EOL_OUTPUT is set and text reaches the end of the line, the cursor will immediately move to the next line and the contents of the buffer will scroll up by one line. In contrast with this flag set, the scroll operation and cursor move is delayed until the next character arrives. The written character will be printed in the final position on the line and the cursor will remain above this character as if ENABLE_WRAP_AT_EOL_OUTPUT was off, but the next printable character will be printed as if ENABLE_WRAP_AT_EOL_OUTPUT is on. No overwrite will occur. Specifically, the cursor quickly advances down to the following line, a scroll is performed if necessary, the character is printed, and the cursor advances one more position.
            The typical usage of this flag is intended in conjunction with setting ENABLE_VIRTUAL_TERMINAL_PROCESSING to better emulate a terminal emulator where writing the final character on the screen (in the bottom right corner) without triggering an immediate scroll is the desired behavior.
            ENABLE_LVB_GRID_WORLDWIDE 0x0010	
            The APIs for writing character attributes including WriteConsoleOutput and WriteConsoleOutputAttribute allow the usage of flags from character attributes to adjust the color of the foreground and background of text. Additionally, a range of DBCS flags was specified with the COMMON_LVB prefix. Historically, these flags only functioned in DBCS code pages for Chinese, Japanese, and Korean languages. With exception of the leading byte and trailing byte flags, the remaining flags describing line drawing and reverse video (swap foreground and background colors) can be useful for other languages to emphasize portions of output.
            With exception of the leading byte and trailing byte flags, the remaining flags describing line drawing and reverse video (swap foreground and background colors) can be useful for other languages to emphasize portions of output.
            Setting this console mode flag will allow these attributes to be used in every code page on every language.
            It is off by default to maintain compatibility with known applications that have historically taken advantage of the console ignoring these flags on non-CJK machines to store bits in these fields for their own purposes or by accident.
            Note that using the ENABLE_VIRTUAL_TERMINAL_PROCESSING mode can result in LVB grid and reverse video flags being set while this flag is still off if the attached application requests underlining or inverse video via Console Virtual Terminal Sequences.
            </param>
            <returns></returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.FlushConsoleInputBuffer(System.Void*)">
            <summary>
            Flushes the console input buffer. All input records currently in the input buffer are discarded.
            </summary>
            <param name="hConsoleInput">A handle to the console input buffer. The handle must have the GENERIC_WRITE access right. For more information, see Console Buffer Security and Access Rights.</param>
            <returns>If the function succeeds, the return value is nonzero.
            If the function fails, the return value is zero. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.PeekConsoleInputW(System.Void*,System.Void*,System.UInt32,System.UInt32*)">
            <summary>
            Reads data from the specified console input buffer without removing it from the buffer.
            </summary>
            <param name="hConsoleInput"></param>
            <param name="lpBuffer"></param>
            <param name="nLength"></param>
            <param name="lpNumberOfEventsRead"></param>
            <returns></returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.ReadConsoleInputW(System.Void*,System.Void*,System.UInt32,System.UInt32*)">
            <summary>
            Reads data from a console input buffer and removes it from the buffer.
            </summary>
            <param name="hConsoleInput"></param>
            <param name="lpBuffer"></param>
            <param name="nLength"></param>
            <param name="lpNumberOfEventsRead"></param>
            <returns></returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.WriteConsoleW(System.Void*,System.Void*,System.UInt32,System.UInt32*,System.Void*)">
            <summary>
            Writes a character string to a console screen buffer beginning at the current cursor location.
            </summary>
            <param name="hConsoleOutput"></param>
            <param name="lpBuffer"></param>
            <param name="nNumberOfCharsToWrite"></param>
            <param name="lpNumberOfCharsWritten"></param>
            <param name="lpReserved"></param>
            <returns></returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.GetFileType(System.Void*)">
            <summary>
            Retrieves the file type of the specified file.
            </summary>
            <param name="hFile">A handle to the file.</param>
            <returns>The file type. One of the values of <see cref="T:JetBrains.Interop.WinApi.Declarations.Constants.FILE_TYPE"/>.</returns>
            <remarks>
            You can distinguish between a "valid" return of FILE_TYPE_UNKNOWN and its return due to a calling error (for example, passing an invalid handle to GetFileType) by calling GetLastError.
            If the function worked properly and FILE_TYPE_UNKNOWN was returned, a call to GetLastError will return NO_ERROR.
            If the function returned FILE_TYPE_UNKNOWN due to an error in calling GetFileType, GetLastError will return the error code.
            </remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.DebugActiveProcess(System.UInt32)">
            <summary>Enables a debugger to attach to an active process and debug it.</summary>
            <param name="dwProcessId">The identifier for the process to be debugged. The debugger is granted debugging access to the process as if it created the process with the DEBUG_ONLY_THIS_PROCESS flag.</param>
            <returns>
            If the function succeeds, the return value is nonzero.
            If the function fails, the return value is 0 (zero). To get extended error information, call GetLastError.
            </returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.DebugActiveProcessStop(System.UInt32)">
            <summary>Stops the debugger from debugging the specified process.</summary>
            <param name="dwProcessId">The identifier of the process to stop debugging.</param>
            <returns>
            If the function succeeds, the return value is nonzero.
            If the function fails, the return value is 0 (zero). To get extended error information, call GetLastError.
            </returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.WaitForDebugEvent(JetBrains.Interop.WinApi.DEBUG_EVENT*,System.UInt32)">
            <summary>Waits for a debugging event to occur in a process being debugged.</summary>
            <param name="lpDebugEvent">A pointer to a <see cref="T:JetBrains.Interop.WinApi.DEBUG_EVENT"/> structure that receives information about the debugging event.</param>
            <param name="dwMilliseconds">The number of milliseconds to wait for a debugging event. If this parameter is zero, the function tests for a debugging event and returns immediately. If the parameter is INFINITE, the function does not return until a debugging event has occurred.</param>
            <returns>
            If the function succeeds, the return value is nonzero.
            If the function fails, the return value is zero. To get extended error information, call GetLastError.
            </returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.ContinueDebugEvent(System.UInt32,System.UInt32,System.UInt32)">
            <summary>Enables a debugger to continue a thread that previously reported a debugging event.</summary>
            <param name="dwProcessId">The process identifier of the process to continue.</param>
            <param name="dwThreadId">The thread identifier of the thread to continue. The combination of process identifier and thread identifier must identify a thread that has previously reported a debugging event.</param>
            <param name="dwContinueStatus">The options to continue the thread that reported the debugging event. <see cref="T:JetBrains.Interop.WinApi.Constants.DebugContinueStatus"/></param>
            <returns>
            If the function succeeds, the return value is nonzero.
            If the function fails, the return value is zero. To get extended error information, call GetLastError.
            </returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.ReadProcessMemory(System.Void*,System.Void*,System.Void*,System.UIntPtr,System.UIntPtr*)">
            <summary>
            ReadProcessMemory copies the data in the specified address range from the address space of the specified process into the specified buffer of the current process. Any process that has a handle with PROCESS_VM_READ access can call the function.
            The entire area to be read must be accessible, and if it is not accessible, the function fails.
            </summary>
            <param name="hProcess">A handle to the process with memory that is being read. The handle must have PROCESS_VM_READ access to the process.</param>
            <param name="lpBaseAddress">A pointer to the base address in the specified process from which to read. Before any data transfer occurs, the system verifies that all data in the base address and memory of the specified size is accessible for read access, and if it is not accessible the function fails.</param>
            <param name="lpBuffer">A pointer to a buffer that receives the contents from the address space of the specified process.</param>
            <param name="nSize">The number of bytes to be read from the specified process.</param>
            <param name="lpNumberOfBytesRead">A pointer to a variable that receives the number of bytes transferred into the specified buffer. If lpNumberOfBytesRead is NULL, the parameter is ignored.</param>
            <returns>
            If the function succeeds, the return value is nonzero.
            If the function fails, the return value is 0 (zero). To get extended error information, call GetLastError.
            The function fails if the requested read operation crosses into an area of the process that is inaccessible.
            </returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.GetProcessId(System.Void*)">
            <summary>Retrieves the process identifier of the specified process.</summary>
            <param name="hProcess">A handle to the process. The handle must have the PROCESS_QUERY_INFORMATION or PROCESS_QUERY_LIMITED_INFORMATION access right.</param>
            <returns>None (sic!)</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.GetThreadId(System.Void*)">
            <summary>Retrieves the thread identifier of the specified thread.</summary>
            <param name="hThread">A handle to the thread. The handle must have the THREAD_QUERY_INFORMATION or THREAD_QUERY_LIMITED_INFORMATION access right.</param>
            <returns>If the function fails, the return value is zero. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.FindFirstVolumeW(System.Text.StringBuilder,System.UInt32)">
            <summary>
            Retrieves the name of a volume on a computer. FindFirstVolume is used to begin scanning the volumes of a computer.
            </summary>
            <param name="lpszVolumeName">A pointer to a buffer that receives a null-terminated string that specifies a volume GUID path for the first volume that is found.</param>
            <param name="cchBufferLength">The length of the buffer to receive the volume GUID path, in TCHARs.</param>
            <returns>
            If the function succeeds, the return value is a search handle used in a subsequent call to the FindNextVolume and FindVolumeClose functions.
            If the function fails to find any volumes, the return value is the INVALID_HANDLE_VALUE error code.To get extended error information, call GetLastError.
            </returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.FindNextVolumeW(System.Void*,System.Text.StringBuilder,System.UInt32)">
            <summary>
            Continues a volume search started by a call to the FindFirstVolume function. FindNextVolume finds one volume per call.
            </summary>
            <param name="hFindVolume">The volume search handle returned by a previous call to the FindFirstVolume function.</param>
            <param name="lpszVolumeName">A pointer to a string that receives the volume GUID path that is found.</param>
            <param name="cchBufferLength">The length of the buffer that receives the volume GUID path, in TCHARs.</param>
            <returns>
            If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. To get extended error information, call GetLastError.
            If no matching files can be found, the GetLastError function returns the ERROR_NO_MORE_FILES error code. In that case, close the search with the FindVolumeClose function.
            </returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.FindVolumeClose(System.Void*)">
            <summary>
            Closes the specified volume search handle. The FindFirstVolume and FindNextVolume functions use this search handle to locate volumes.
            </summary>
            <param name="hFindVolume">The volume search handle to be closed. This handle must have been previously opened by the FindFirstVolume function.</param>
            <returns>
            If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. To get extended error information, call GetLastError.
            </returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.QueryDosDeviceW(System.String,System.Char*,System.UInt32)">
            <summary>
            Retrieves information about MS-DOS device names.
            The function can obtain the current mapping for a particular MS-DOS device name.
            The function can also obtain a list of all existing MS-DOS device names.
            </summary>
            <param name="lpDeviceName">An MS-DOS device name string specifying the target of the query. The device name cannot have a trailing backslash; for example, use "C:", not "C:\".
            This parameter can be NULL. In that case, the QueryDosDevice function will store a list of all existing MS-DOS device names into the buffer pointed to by lpTargetPath.</param>
            <param name="lpTargetPath">A pointer to a buffer that will receive the result of the query. The function fills this buffer with one or more null-terminated strings. The final null-terminated string is followed by an additional NULL.
            If lpDeviceName is non-NULL, the function retrieves information about the particular MS-DOS device specified by lpDeviceName. The first null-terminated string stored into the buffer is the current mapping for the device. The other null-terminated strings represent undeleted prior mappings for the device.
            If lpDeviceName is NULL, the function retrieves a list of all existing MS-DOS device names.Each null-terminated string stored into the buffer is the name of an existing MS-DOS device, for example, \Device\HarddiskVolume1 or \Device\Floppy0.</param>
            <param name="ucchMax">The maximum number of TCHARs that can be stored into the buffer pointed to by lpTargetPath.</param>
            <returns>
            If the function succeeds, the return value is the number of TCHARs stored into the buffer pointed to by lpTargetPath. If the function fails, the return value is zero.To get extended error information, call GetLastError.
            If the buffer is too small, the function fails and the last error code is ERROR_INSUFFICIENT_BUFFER.
            </returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.GetVolumePathNamesForVolumeNameW(System.String,System.Char*,System.UInt32,System.UInt32@)">
            <summary>
            Retrieves a list of drive letters and mounted folder paths for the specified volume.
            </summary>
            <param name="lpszVolumeName">A volume GUID path for the volume. A volume GUID path is of the form "\\?\Volume{xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx}\".</param>
            <param name="lpszVolumePathNames">A pointer to a buffer that receives the list of drive letters and mounted folder paths. The list is an array of null-terminated strings terminated by an additional NULL character. If the buffer is not large enough to hold the complete list, the buffer holds as much of the list as possible.</param>
            <param name="cchBufferLength">The length of the lpszVolumePathNames buffer, in TCHARs, including all NULL characters.</param>
            <param name="lpcchReturnLength">If the call is successful, this parameter is the number of TCHARs copied to the lpszVolumePathNames buffer. Otherwise, this parameter is the size of the buffer required to hold the complete list, in TCHARs.</param>
            <returns>
            If the function succeeds, the return value is nonzero. If the function fails, the return value is zero.
            To get extended error information, call GetLastError.
            If the buffer is not large enough to hold the complete list, the error code is ERROR_MORE_DATA and the lpcchReturnLength parameter receives the required buffer size.
            </returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.GetProcessAffinityMask(System.Void*,System.UIntPtr@,System.UIntPtr@)">
            <summary>
            Retrieves the process affinity mask for the specified process and the system affinity mask for the system.
            </summary>
            <param name="hProcess">A handle to the process whose affinity mask is desired. This handle must have the PROCESS_QUERY_INFORMATION or PROCESS_QUERY_LIMITED_INFORMATION access right.</param>
            <param name="lpProcessAffinityMask">A pointer to a variable that receives the affinity mask for the specified process.</param>
            <param name="lpSystemAffinityMask">A pointer to a variable that receives the affinity mask for the system.</param>
            <returns>
            If the function succeeds, the return value is nonzero and the function sets the variables pointed to by lpProcessAffinityMask and lpSystemAffinityMask to the appropriate affinity masks.
            On a system with more than 64 processors, if the threads of the calling process are in a single processor group, the function sets the variables pointed to by lpProcessAffinityMask and lpSystemAffinityMask to the process affinity mask and the processor mask of active logical processors for that group.If the calling process contains threads in multiple groups, the function returns zero for both affinity masks.
            If the function fails, the return value is zero, and the values of the variables pointed to by lpProcessAffinityMask and lpSystemAffinityMask are undefined. To get extended error information, call GetLastError.
            </returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.InitializeProcThreadAttributeList(System.Void*,System.UInt32,System.UInt32,System.UIntPtr@)">
            <summary>
            Initializes the specified list of attributes for process and thread creation.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.UpdateProcThreadAttribute(System.Void*,System.UInt32,System.UIntPtr,System.Void*,System.UIntPtr,System.Void*,System.Void*)">
            <summary>
            Updates the specified attribute in a list of attributes for process and thread creation.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.DeleteProcThreadAttributeList(System.Void*)">
            <summary>
            Deletes the specified list of attributes for process and thread creation.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.GetACP">
            <summary>
              <para>Returns the current Windows ANSI code page (ACP) identifier for the operating system. See Code Page Identifiers for a list of identifiers for Windows ANSI code pages and other code pages.</para>
              <para>The ANSI code pages can be different on different computers, or can be changed for a single computer, leading to data corruption. For the most consistent results, applications should use UTF-8 or UTF-16 when possible.</para>
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.GetProcessTimes(System.Void*,JetBrains.Interop.WinApi.Declarations.Structures.FILE_TIME*,JetBrains.Interop.WinApi.Declarations.Structures.FILE_TIME*,JetBrains.Interop.WinApi.Declarations.Structures.FILE_TIME*,JetBrains.Interop.WinApi.Declarations.Structures.FILE_TIME*)">
            <summary>
            Retrieves timing information for the specified process.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.QueryUnbiasedInterruptTime(System.UInt64*)">
            <summary>
            Gets the current unbiased interrupt-time count, in units of 100 nanoseconds. The unbiased interrupt-time count does not include time the system spends in sleep or hibernation.
            </summary>
            <returns>If the function succeeds, the return value is nonzero. If the function fails because it is called with a null parameter, the return value is zero.</returns>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Kernel32Dll.Helpers">
            <summary>
            Wrappers for the functions in this DLL.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Kernel32Dll.Helpers._performancefrequency">
            <summary>
            Frequency of the performance counter, for <see cref="M:JetBrains.Interop.WinApi.Kernel32Dll.Helpers.GetHighPrecisionSystemTime"/>.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.Helpers.CoCreateInstanceExplicit(System.String,System.Guid)">
            <summary>
            Creates an instance of a COM object without the Registry information, by loading the DLL and invoking its class factory.
            </summary>
            <param name="sDllFilename">Pathname of the DLL.</param>
            <param name="guidClsid">CLSID of the object to create.</param>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.Helpers.GetHighPrecisionSystemTime">
            <summary>
            Gets the high-precision system time value, in milliseconds.
            Throws if not supported on the system (unlikely).
            May yield irrelevant data on non-synchronized CPU cores.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.Helpers.GetProfileString(System.String,System.String,System.String,System.String)">
            <summary>
            Reads an .ini string.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.Helpers.GetWin32Resource(System.String,System.String,System.String)">
            <summary>
            Loads a native dll and looks up the resource.
            Throws on errors.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.Helpers.GetWin32Resource(System.String,JetBrains.Interop.WinApi.Declarations.Structures.NativeResourceTypeAndName)">
            <summary>
            Loads a native dll and looks up the resource.
            Throws on errors.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.Helpers.GetWin32Resource(System.Void*,JetBrains.Interop.WinApi.Declarations.Structures.NativeResourceTypeAndName,System.String)">
            <summary>
            Looks up the resource in the native DLL. <c>NULL</c> handle to look in the entry point executable.
            If everytyhing is OK, but the resource is missing, returns <c>NULL</c>.
            If the resource is found, but cannot be loaded, throws.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.Helpers.TryGetWin32Resource(System.Void*,JetBrains.Interop.WinApi.Declarations.Structures.NativeResourceTypeAndName,System.String)">
            <summary>
            Looks up the resource in the native DLL. <c>NULL</c> handle to look in the entry point executable.
            Throws on errors.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.Helpers.GetProcessInformation_ProcessMachineTypeInfo(System.Void*)">
            <summary>
            Calls the <c>GetProcessInformation</c> API function for PROCESS_INFORMATION_CLASS.ProcessMachineTypeInfo, if one is present on this OS version.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.Helpers.IsWow64Process2(System.Void*)">
            <summary>
            Calls the <c>IsWow64Process2</c> API function, if one is present on this OS version.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.Helpers.IsWow64Process_CompatibleUsageWithArm64(System.Void*)">
            <summary>
            Calls the <c>IsWow64Process</c> API function, if one is present on this OS version.
            As we now only run on Vista+, we can import and call this function directly.
            </summary>
            <param name="hProcess">The process handle</param>
            <returns>true: process is WOW64; false: process is not WOW64</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.Helpers.Is64BitProcess_CompatibleUsageWithArm64(System.Void*)">
            <summary>
            Indicates if the process is 32 or 64 bit.
            </summary>
            <param name="hProcess">The process handle</param>
            <returns>true: process is 64 bit; false: process is 32 bit.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.Helpers.WaitForSingleObject(System.IntPtr,System.TimeSpan)">
            <summary>
            Waits for the object, returns whether the wait was successful.
            The abandoned state is considered success.
            </summary>
            <param name="handle">Handle to wait for.</param>
            <param name="timeout">Timeout. <see cref="F:System.TimeSpan.Zero"/> to test without waiting, <see cref="F:System.TimeSpan.MaxValue"/> to wait infinitely.</param>
            <returns>Whether the wait has succeeded.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.Helpers.GetModulePath(System.Void*)">
            <summary>
            Retrieves the fully qualified path for the file that contains the specified module. The module must have been loaded by the current process.
            Wraps WinAPI function <see cref="M:JetBrains.Interop.WinApi.Kernel32Dll.GetModuleFileNameW(System.Void*,System.UInt16*,System.UInt32)" />.
            </summary>
            <param name="hModule">A handle to the loaded module whose path is being requested.
            If this parameter is NULL, GetModuleFileName retrieves the path of the executable file of the current process.</param>
            <returns>The fully qualified path of the module.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.Helpers.GlobalLock(System.IntPtr)">
            <summary>
            Locks a global memory object and returns a pointer to the first byte of the object's memory block.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.Helpers.GlobalUnlock(System.IntPtr)">
            <summary>
            Decrements the lock count associated with a memory object that was allocated with GMEM_MOVEABLE.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Kernel32Dll.Helpers.GlobalSize(System.IntPtr)">
            <summary>
            Retrieves the current size of the specified global memory object, in bytes.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Kernel32Dll.Helpers.DllGetClassObjectDelegate">
            <summary>
            Helper for the <see cref="M:JetBrains.Interop.WinApi.Kernel32Dll.Helpers.CoCreateInstanceExplicit(System.String,System.Guid)"/> function.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Macros">
            <summary>
            Hosts the scattered WinAPI macros, in the form of functions.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Macros.GET_X_LPARAM(System.IntPtr)">
            <summary>
            Gets a signed x-coordinate packed into an LPARAM, usually in Windows messgaes.
            To create a point from an LPARAM, use casting thru the <see cref="T:JetBrains.Interop.WinApi.POINT"/> class.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Macros.GET_Y_LPARAM(System.IntPtr)">
            <summary>
            Gets a signed y-coordinate packed into an LPARAM, usually in Windows messgaes.
            To create a point from an LPARAM, use casting thru the <see cref="T:JetBrains.Interop.WinApi.POINT"/> class.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Macros.MAKEDWORD(System.UInt16,System.UInt16)">
            <summary>
            In WinAPI, this is called <c>MAKELONG</c> (C's <c>long</c> is of the same size as a DWORD, whilst in C# it's a QWORD).
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.MscoreeDll.CLRCreateInstance(System.Guid,System.Guid,System.Object@)">
            <summary>
            Provides one of three interfaces: ICLRMetaHost, ICLRMetaHostPolicy, or ICLRDebugging.
            </summary>
            <param name="clsid">One of three class identifiers: CLSID_CLRMetaHost, CLSID_CLRMetaHostPolicy, or CLSID_CLRDebugging.</param>
            <param name="riid">One of three interface identifiers (IIDs): IID_ICLRMetaHost, IID_ICLRMetaHostPolicy, or IID_ICLRDebugging.</param>
            <param name="pInterface">One of three interfaces: ICLRMetaHost, ICLRMetaHostPolicy, or ICLRDebugging.</param>
            <returns>HRESULT</returns>
            <remarks>.NET Framework Versions: 4.5, 4</remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.MscoreeDll.GetVersionFromProcess(System.Void*,System.Text.StringBuilder,System.UInt32,System.UInt32@)">
            <summary>
            Gets the version number of the common language runtime (CLR) that is associated with the specified process handle. This function has been deprecated in the .NET Framework version 4.
            </summary>
            <param name="hProcess">A handle to a process.</param>
            <param name="buffer">A buffer that contains the version number string upon successful completion of the method.</param>
            <param name="bufferSize">The length of the version buffer.</param>
            <param name="bufferLength">A pointer to the length of the version number string.</param>
            <returns>HRESULT</returns>
            <remarks>.NET Framework Versions: 4.5, 4, 3.5 SP1, 3.5, 3.0 SP1, 3.0, 2.0 SP1, 2.0</remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.MscoreeDll.GetFileVersion(System.String,System.Text.StringBuilder,System.UInt32,System.UInt32@)">
            <summary>
            Gets the common language runtime (CLR) version information of the specified file, using the specified buffer. This function has been deprecated in the .NET Framework 4.
            </summary>
            <param name="fileName">The path of the file to be examined.</param>
            <param name="buffer">The buffer allocated for the version information that is returned.</param>
            <param name="bufferSize">The size, in wide characters, of szBuffer.</param>
            <param name="bufferLength">The size, in bytes, of the returned szBuffer.</param>
            <returns>HRESULT</returns>
            <remarks>.NET Framework Versions: 4.5, 4, 3.5 SP1, 3.5, 3.0 SP1, 3.0, 2.0 SP1, 2.0, 1.1</remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.MscoreeDll.GetRequestedRuntimeVersion(System.String,System.Text.StringBuilder,System.UInt32,System.UInt32@)">
            <summary>
            Gets the version number of the common language runtime (CLR) requested by the specified application. If that version is not installed, gets the most recent version that is installed before the requested version. This function has been deprecated in the .NET Framework 4.
            </summary>
            <param name="filePath">The name of the application.</param>
            <param name="buffer">A buffer that contains the version number string upon successful completion.</param>
            <param name="bufferSize">The length of the version buffer.</param>
            <param name="bufferLength">A pointer to the length of the version number string.</param>
            <returns>HRESULT</returns>
            <remarks>.NET Framework Versions: 4.5, 4, 3.5 SP1, 3.5, 3.0 SP1, 3.0, 2.0 SP1, 2.0, 1.1</remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.MsiDll.MsiCloseHandle(System.Void*)">
            <summary>
            The MsiCloseHandle function closes an open installation handle.
            </summary>
            <param name="hAny"></param>
            <returns></returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.MsiDll.MsiGetProductPropertyW(System.Void*,System.String,System.Char*,System.UInt32*)">
            <summary>
            The MsiGetProductProperty function retrieves product properties. These properties are in the product database.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.MsiDll.MsiOpenPackageExW(System.String,System.UInt32,System.Void**)">
            <summary>
            The MsiOpenPackageEx function opens a package to use with functions that access the product database. The MsiCloseHandle function must be called with the handle when the handle is no longer needed.
            </summary>
            <param name="szPackagePath"> </param>
            <param name="dwOptions">MSIOPENPACKAGEFLAGS_IGNOREMACHINESTATE = 1</param>
            <param name="hProduct"> </param>
        </member>
        <member name="T:JetBrains.Interop.WinApi.MsImg32Dll">
            <summary>
            MsImg32.dll functions.
            Must be 64bit-safe.
            </summary>
            <remarks>
            IMPORTANT! Rules for authoring the class (v1.1):
            (1) All the function declarations MUST be 64-bit aware.
            (2) When copypasting from older declarations, you MUST check against the MSDN help or header declaration, 
               and you MUST ensure that each parameter has a proper size.
            (3) Call the Wide version of the functions (UCS-2-LE) unless there's a strong reason for calling the ANSI version 
               (such a reason MUST be indicated in XmlDoc). <c>CharSet = CharSet.Unicode</c>.
            (4) ExactSpelling MUST be TRUE. Add the "…W" suffix wherever needed.
            (5) SetLastError SHOULD be considered individually for each function. Setting it to <c>True</c> allows to report the errors,
               but slows down the execution of critical members.
            (6) These properties MUST be explicitly set on DllImport attributes of EACH import: 
               CharSet, PreserveSig, SetLastError, ExactSpelling.
            (7) CLR names MUST be used for types instead of C# ones, eg "Int32" not "int" and "Int64" not "long".
               This greately improves the understanding of the parameter sizes.
            (8) Sign of the types MUST be favored, eg "DWORD" is "UInt32" not "Int32".
            (9) Unsafe pointer types should be used for explicit and implicit pointers rather than IntPtr. 
               This way we outline the unsafety of the native calls, and also make it more clear for the 64bit transition.
               Eg "HANDLE" is "void*". If the rule forces you to mark some assembly as unsafe, it's an indication a managed utility
               incapsulating the call and the handle should be provided in one of the already-unsafe assemblies.
            (A) Same rules must apply to members of the structures.
            (B) All of the structures MUST have the [StructLayout(LayoutKind.Sequential)], [NoReorder] attributes, as appropriate.
            </remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.MsImg32Dll.AlphaBlend(System.Void*,System.Int32,System.Int32,System.Int32,System.Int32,System.Void*,System.Int32,System.Int32,System.Int32,System.Int32,JetBrains.Interop.WinApi.Declarations.Structures.BLENDFUNCTION)">
            <summary>
            The AlphaBlend function displays bitmaps that have transparent or semitransparent pixels.
            </summary>
            <param name="hdcDest">
            [in] Handle to the destination device context. </param>
            <param name="nXOriginDest">
            [in] Specifies the x-coordinate, in logical units, of the upper-left corner of the destination rectangle. </param>
            <param name="nYOriginDest">
            [in] Specifies the y-coordinate, in logical units, of the upper-left corner of the destination rectangle. </param>
            <param name="nWidthDest">
            [in] Specifies the width, in logical units, of the destination rectangle. </param>
            <param name="nHeightDest">
            [in] Specifies the height, in logical units, of the destination rectangle. </param>
            <param name="hdcSrc">
            [in] Handle to the source device context. </param>
            <param name="nXOriginSrc">
            [in] Specifies the x-coordinate, in logical units, of the upper-left corner of the source rectangle. </param>
            <param name="nYOriginSrc">
            [in] Specifies the y-coordinate, in logical units, of the upper-left corner of the source rectangle. </param>
            <param name="nWidthSrc">
            [in] Specifies the width, in logical units, of the source rectangle. </param>
            <param name="nHeightSrc">
            [in] Specifies the height, in logical units, of the source rectangle. </param>
            <param name="blendFunction">
            [in] Specifies the alpha-blending function for source and destination bitmaps, a global alpha value to be applied to the entire source bitmap, and format information for the source bitmap. The source and destination blend functions are currently limited to AC_SRC_OVER. See the <see cref="T:JetBrains.Interop.WinApi.Declarations.Structures.BLENDFUNCTION"/> and EMRALPHABLEND structures. </param>
            <returns>If the function succeeds, the return value is TRUE. If the function fails, the return value is FALSE.</returns>
        </member>
        <member name="T:JetBrains.Interop.WinApi.NtDllDll">
            <summary>
            NtDll.dll functions.
            Must be 64bit-safe.
            </summary>
            <remarks>
            IMPORTANT! Rules for authoring the class (v1.1):
            (1) All the function declarations MUST be 64-bit aware.
            (2) When copypasting from older declarations, you MUST check against the MSDN help or header declaration, 
               and you MUST ensure that each parameter has a proper size.
            (3) Call the Wide version of the functions (UCS-2-LE) unless there's a strong reason for calling the ANSI version 
               (such a reason MUST be indicated in XmlDoc). <c>CharSet = CharSet.Unicode</c>.
            (4) ExactSpelling MUST be TRUE. Add the "…W" suffix wherever needed.
            (5) SetLastError SHOULD be considered individually for each function. Setting it to <c>True</c> allows to report the errors,
               but slows down the execution of critical members.
            (6) These properties MUST be explicitly set on DllImport attributes of EACH import: 
               CharSet, PreserveSig, SetLastError, ExactSpelling.
            (7) CLR names MUST be used for types instead of C# ones, eg "Int32" not "int" and "Int64" not "long".
               This greately improves the understanding of the parameter sizes.
            (8) Sign of the types MUST be favored, eg "DWORD" is "UInt32" not "Int32".
            (9) Unsafe pointer types should be used for explicit and implicit pointers rather than IntPtr. 
               This way we outline the unsafety of the native calls, and also make it more clear for the 64bit transition.
               Eg "HANDLE" is "void*". If the rule forces you to mark some assembly as unsafe, it's an indication a managed utility
               incapsulating the call and the handle should be provided in one of the already-unsafe assemblies.
            (A) Same rules must apply to members of the structures.
            (B) All of the structures MUST have the [StructLayout(LayoutKind.Sequential)], [NoReorder] attributes, as appropriate.
            </remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.NtDllDll.NtOpenSection(System.Void**,System.UInt32,System.Void*)">
            <summary>
            The NtOpenSection routine opens a handle for an existing section object.
            </summary>
            <param name="sectionHandle">Pointer to a HANDLE variable that receives a handle to the section object.</param>
            <param name="desiredAccess">Specifies an ACCESS_MASK value that determines the requested access to the object.</param>
            <param name="pObjectAttributes">Pointer to an OBJECT_ATTRIBUTES structure that specifies the object name and other attributes. Use InitializeObjectAttributes to initialize this structure.</param>
            <returns>Returns an <see cref="T:JetBrains.Interop.WinApi.Declarations.Constants.NTSTATUS"/> success or error code.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.NtDllDll.NtClose(System.Void*)">
            <summary>
            The NtClose routine closes an object handle.
            </summary>
            <param name="handle">Handle to an object of any type.</param>
            <returns>Returns an <see cref="T:JetBrains.Interop.WinApi.Declarations.Constants.NTSTATUS"/> success or error code.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.NtDllDll.NtQuerySystemInformation(System.UInt32,System.Void*,System.UInt32,System.UInt32*)">
            <summary>
            Retrieves the specified system information.
            </summary>
            <remarks>[NtQuerySystemInformation may be altered or unavailable in future versions of Windows. Applications should use the alternate functions listed in this topic.]</remarks>
            <param name="systemInfoClass">One of the values enumerated in <see cref="T:JetBrains.Interop.Windows.Declarations.Constants.SYSTEM_INFORMATION_CLASS"/>, which indicate the kind of system information to be retrieved. </param>
            <param name="pInfo">A pointer to a buffer that receives the requested information.
            The size and structure of this information varies depending on the value of the systemInfoClass parameter.</param>
            <param name="cbInfoSize">The size of the buffer pointed to by the pInfo parameter, in bytes.</param>
            <param name="cbReturnSize">An optional pointer to a location where the function writes the actual size of the information requested.
            If that size is less than or equal to the cbInfoSize parameter, the function copies the information into the pInfo buffer;
            otherwise, it returns an error code and returns in cbReturnSize the size of buffer required to receive the requested information.</param>
            <returns>Returns an <see cref="T:JetBrains.Interop.WinApi.Declarations.Constants.NTSTATUS"/> success or error code.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.NtDllDll.NtWow64QueryInformationProcess64(System.IntPtr,System.Int32,JetBrains.Interop.Windows.Declarations.Structures.PROCESS_BASIC_INFORMATION_WOW64@,System.Int32,System.Int32@)">
            <summary>
            Should be used if our process is 32-bit and the other process is 64-bit.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.NtDllDll.NtQueryObject(System.Void*,System.UInt32,System.Void*,System.UInt32,System.UInt32*)">
            <summary>
            Retrieves various kinds of object information.
            </summary>
            <param name="handle">The handle of the object for which information is being queried.</param>
            <param name="infoClass">One of the following values, as enumerated in <see cref="T:JetBrains.Interop.Windows.Declarations.Constants.OBJECT_INFORMATION_CLASS"/>, indicating the kind of object information to be retrieved.</param>
            <param name="pInfo">An optional pointer to a buffer where the requested information is to be returned. The size and structure of this information varies depending on the value of the pInfo parameter.</param>
            <param name="cbInfoSize">The size of the buffer pointed to by the pInfo parameter, in bytes.</param>
            <param name="cbReturnSize">An optional pointer to a location where the function writes the actual size of the information requested.
            If that size is less than or equal to the cbInfoSize parameter, the function copies the information into the pInfo buffer;
            otherwise, it returns an error code and returns in cbReturnSize the size of the buffer required to receive the requested information.</param>
            <returns>Returns an <see cref="T:JetBrains.Interop.WinApi.Declarations.Constants.NTSTATUS"/> success or error code.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.NtDllDll.RtlGetVersion(JetBrains.Interop.Windows.Declarations.Structures.RTL_OSVERSIONINFOEXW*)">
            <summary>
            Gets version information about the currently running operating system.
            </summary>
            <param name="lpVersionInformation">Pointer to either a RTL_OSVERSIONINFOW structure or a <see cref="T:JetBrains.Interop.Windows.Declarations.Structures.RTL_OSVERSIONINFOEXW" /> structure that contains the version information about the currently running operating system. A caller specifies which input structure is used by setting the dwOSVersionInfoSize member of the structure to the size in bytes of the structure that is used.</param>
            <returns>Returns <see cref="F:JetBrains.Interop.WinApi.Declarations.Constants.NTSTATUS.STATUS_SUCCESS" />.</returns>
            <remarks>
              <para>RtlGetVersion is the equivalent of the GetVersionEx function in the Windows SDK. See the example in the Windows SDK that shows how to get the system version.</para>
              <para>When using RtlGetVersion to determine whether a particular version of the operating system is running, a caller should check for version numbers that are greater than or equal to the required version number. This ensures that a version test succeeds for later versions of Windows.</para>
              <para>Because operating system features can be added in a redistributable DLL, checking only the major and minor version numbers is not the most reliable way to verify the presence of a specific system feature. A driver should use RtlVerifyVersionInfo to test for the presence of a specific system feature.</para>
            </remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.NtDllDll.Helpers.QuerySystemInformation(JetBrains.Interop.Windows.Declarations.Constants.SYSTEM_INFORMATION_CLASS)">
            <summary>
            A helper to retrieve the specified system information.
            </summary>
            <param name="infoClass">The system information class.</param>
            <returns>
            A pointer to a structure containing the information, or IntPtr.Zero if the method failed to obtain it.
            The type of the structure depends on the system information class.
            You must free the pointer using <see cref="M:System.Runtime.InteropServices.Marshal.FreeHGlobal(System.IntPtr)"/> when you no longer need it.
            </returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.NtDllDll.Helpers.QueryObject(System.Void*,JetBrains.Interop.Windows.Declarations.Constants.OBJECT_INFORMATION_CLASS)">
            <summary>
            A helper to retrieve the specified object information.
            </summary>
            <param name="handle">The handle of the object for which information is being queried.</param>
            <param name="infoClass">The object information class.</param>
            <returns>
            A pointer to a structure containing the information, or IntPtr.Zero if the method failed to obtain it.
            The type of the structure depends on the object information class.
            You must free the pointer using <see cref="M:System.Runtime.InteropServices.Marshal.FreeHGlobal(System.IntPtr)"/> when you no longer need it.
            </returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.NtDllDll.Helpers.QueryObjectType(System.Void*)">
            <summary>
            Retrieve object type name by its handle.
            </summary>
            <param name="handle">A handle of the object.</param>
            <returns>A type name string, or null if the method failed to obtain it.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.NtDllDll.Helpers.QueryObjectName(System.Void*)">
            <summary>
            Retrieve object name by its handle.
            </summary>
            <param name="handle">A handle of the object.</param>
            <returns>A name string, or null if the method failed to obtain it.</returns>
            <remarks>
            IMPORTANT: NtQueryObject may hang on file handles pointing to named pipes.
            </remarks>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Ole32Dll">
            <summary>
            Ole32.dll functions.
            Must be 64bit-safe.
            </summary>
            <remarks>
            IMPORTANT! Rules for authoring the class (v1.1):
            (1) All the function declarations MUST be 64-bit aware.
            (2) When copypasting from older declarations, you MUST check against the MSDN help or header declaration, 
               and you MUST ensure that each parameter has a proper size.
            (3) Call the Wide version of the functions (UCS-2-LE) unless there's a strong reason for calling the ANSI version 
               (such a reason MUST be indicated in XmlDoc). <c>CharSet = CharSet.Unicode</c>.
            (4) ExactSpelling MUST be TRUE. Add the "…W" suffix wherever needed.
            (5) SetLastError SHOULD be considered individually for each function. Setting it to <c>True</c> allows to report the errors,
               but slows down the execution of critical members.
            (6) These properties MUST be explicitly set on DllImport attributes of EACH import: 
               CharSet, PreserveSig, SetLastError, ExactSpelling.
            (7) CLR names MUST be used for types instead of C# ones, eg "Int32" not "int" and "Int64" not "long".
               This greately improves the understanding of the parameter sizes.
            (8) Sign of the types MUST be favored, eg "DWORD" is "UInt32" not "Int32".
            (9) Unsafe pointer types should be used for explicit and implicit pointers rather than IntPtr. 
               This way we outline the unsafety of the native calls, and also make it more clear for the 64bit transition.
               Eg "HANDLE" is "void*". If the rule forces you to mark some assembly as unsafe, it's an indication a managed utility
               incapsulating the call and the handle should be provided in one of the already-unsafe assemblies.
            (A) Same rules must apply to members of the structures.
            (B) All of the structures MUST have the [StructLayout(LayoutKind.Sequential)], [NoReorder] attributes, as appropriate.
            </remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Ole32Dll.CreateILockBytesOnHGlobal(System.Void*,System.Int32,JetBrains.Interop.WinApi.Declarations.Interfaces.ILockBytes@)">
            <summary>
            The CreateILockBytesOnHGlobal function creates a byte array object that uses an HGLOBAL memory handle to store the bytes intended for in-memory storage of a compound file. This object is the OLE-provided implementation of the ILockBytes interface.
            The returned byte array object supports both reading and writing, but does not support region locking . The object calls the GlobalReAlloc function to grow the memory block as required.
            </summary>
            <param name="hGlobal"></param>
            <param name="fDeleteOnRelease"></param>
            <param name="ppLkbyt"></param>
            <returns></returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Ole32Dll.CreateILockBytesOnHGlobal(System.Void*,System.Int32,System.Void**)">
            <summary>
            The CreateILockBytesOnHGlobal function creates a byte array object that uses an HGLOBAL memory handle to store the bytes intended for in-memory storage of a compound file. This object is the OLE-provided implementation of the ILockBytes interface.
            The returned byte array object supports both reading and writing, but does not support region locking . The object calls the GlobalReAlloc function to grow the memory block as required.
            </summary>
            <param name="hGlobal"></param>
            <param name="fDeleteOnRelease"></param>
            <param name="ppLkbyt"></param>
            <returns></returns>
        </member>
        <member name="T:JetBrains.Interop.WinApi.OleAut32Dll">
            <summary>
            OleAut32.dll functions.
            Must be 64bit-safe.
            </summary>
            <remarks>
            IMPORTANT! Rules for authoring the class (v1.1):
            (1) All the function declarations MUST be 64-bit aware.
            (2) When copypasting from older declarations, you MUST check against the MSDN help or header declaration,
               and you MUST ensure that each parameter has a proper size.
            (3) Call the Wide version of the functions (UCS-2-LE) unless there's a strong reason for calling the ANSI version
               (such a reason MUST be indicated in XmlDoc). <c>CharSet = CharSet.Unicode</c>.
            (4) ExactSpelling MUST be TRUE. Add the "…W" suffix wherever needed.
            (5) SetLastError SHOULD be considered individually for each function. Setting it to <c>True</c> allows to report the errors,
               but slows down the execution of critical members.
            (6) These properties MUST be explicitly set on DllImport attributes of EACH import:
               CharSet, PreserveSig, SetLastError, ExactSpelling.
            (7) CLR names MUST be used for types instead of C# ones, eg "Int32" not "int" and "Int64" not "long".
               This greately improves the understanding of the parameter sizes.
            (8) Sign of the types MUST be favored, eg "DWORD" is "UInt32" not "Int32".
            (9) Unsafe pointer types should be used for explicit and implicit pointers rather than IntPtr.
               This way we outline the unsafety of the native calls, and also make it more clear for the 64bit transition.
               Eg "HANDLE" is "void*". If the rule forces you to mark some assembly as unsafe, it's an indication a managed utility
               incapsulating the call and the handle should be provided in one of the already-unsafe assemblies.
            (A) Same rules must apply to members of the structures.
            (B) All of the structures MUST have the [StructLayout(LayoutKind.Sequential)], [NoReorder] attributes, as appropriate.
            </remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.OleAut32Dll.VariantClear(System.Void*)">
            <summary>
             Clears a variant.
            </summary>
            <param name="pvarg">Pointer to the <c>VARIANTARG</c> to clear.</param>
            <returns>The return value obtained from the returned HRESULT is one of the following.</returns>
            <remarks>
             Use this function to clear variables of type VARIANTARG (or VARIANT) before the memory containing the VARIANTARG is freed (as when a local variable goes out of scope).
             The function clears a VARIANTARG by setting the vt field to VT_EMPTY. The current contents of the VARIANTARG are released first. If the vtfield is VT_BSTR, the string is freed. If the vtfield is VT_DISPATCH, the object is released. If the vt field has the VT_ARRAY bit set, the array is freed.
             If the variant to be cleared is a COM object that is passed by reference, the vtfield of the pvargparameter is VT_DISPATCH | VT_BYREF or VT_UNKNOWN | VT_BYREF. In this case, VariantClear does not release the object. Because the variant being cleared is a pointer to a reference to an object, VariantClear has no way to determine if it is necessary to release the object. It is therefore the responsibility of the caller to release the object or not, as appropriate.
             In certain cases, it may be preferable to clear a variant in code without calling VariantClear. For example, you can change the type of a VT_I4 variant to another type without calling this function. Safearrays of BSTR will have SysFreeString called on each element not VariantClear. However, you must call VariantClear if a VT_type is received but cannot be handled. Safearrays of variant will also have VariantClear called on each member. Using VariantClear in these cases ensures that code will continue to work if Automation adds new variant types in the future.
             Do not use VariantClear on unitialized variants; use VariantInit to initialize a new VARIANTARG or VARIANT.
             Variants containing arrays with outstanding references cannot be cleared. Attempts to do so will return an HRESULT containing DISP_E_ARRAYISLOCKED.
            </remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.OleAut32Dll.VariantInit(System.Void*)">
            <summary>
            Initializes a variant.
            </summary>
            <param name="pvarg">Pointer to the VARIANTARG that will be initialized.</param>
            <remarks>The VariantInit function initializes the VARIANTARG by setting the vt field to VT_EMPTY. Unlike VariantClear, this function does not interpret the current contents of the VARIANTARG. Use VariantInit to initialize new local variables of type VARIANTARG (or VARIANT). </remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.OleAut32Dll.VarR8FromStr(System.String,System.UInt32,System.UInt32,System.Double*)">
            <summary>
            Converts an OLECHAR string to a double value.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.OleAut32Dll.VarR8FromStr(System.Char*,System.UInt32,System.UInt32,System.Double*)">
            <summary>
            Converts an OLECHAR string to a double value.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.OleAut32Dll.LoadTypeLib(System.String,System.Runtime.InteropServices.ComTypes.ITypeLib@)">
            <summary>
            Loads and registers a type library.
            </summary>
            <param name="szFile">The name of the file from which the method should attempt to load a type library.</param>
            <param name="pptlib">The loaded type library.</param>
            <returns> This function can return one of these values:
             S_OK - Success.
             E_INVALIDARG - One or more of the arguments is not valid.
             E_OUTOFMEMORY - Insufficient memory to complete the operation.
             TYPE_E_IOERROR - The function could not write to the file.
             TYPE_E_INVALIDSTATE - The type library could not be opened.
             TYPE_E_INVDATAREAD - The function could not read from the file.
             TYPE_E_UNSUPFORMAT - The type library has an older format.
             TYPE_E_UNKNOWNLCID - The LCID could not be found in the OLE-supported DLLs.
             TYPE_E_CANTLOADLIBRARY - The type library or DLL could not be loaded.
            </returns>
        </member>
        <member name="T:JetBrains.Interop.WinApi.PsApiDll">
            <summary>
            Kernel32.dll functions.
            Must be 64bit-safe.
            </summary>
            <remarks>
            IMPORTANT! Rules for authoring the class (v1.1):
            (1) All the function declarations MUST be 64-bit aware.
            (2) When copypasting from older declarations, you MUST check against the MSDN help or header declaration, 
               and you MUST ensure that each parameter has a proper size.
            (3) Call the Wide version of the functions (UCS-2-LE) unless there's a strong reason for calling the ANSI version 
               (such a reason MUST be indicated in XmlDoc). <c>CharSet = CharSet.Unicode</c>.
            (4) ExactSpelling MUST be TRUE. Add the "…W" suffix wherever needed.
            (5) SetLastError SHOULD be considered individually for each function. Setting it to <c>True</c> allows to report the errors,
               but slows down the execution of critical members.
            (6) These properties MUST be explicitly set on DllImport attributes of EACH import: 
               CharSet, PreserveSig, SetLastError, ExactSpelling.
            (7) CLR names MUST be used for types instead of C# ones, eg "Int32" not "int" and "Int64" not "long".
               This greately improves the understanding of the parameter sizes.
            (8) Sign of the types MUST be favored, eg "DWORD" is "UInt32" not "Int32".
            (9) Unsafe pointer types should be used for explicit and implicit pointers rather than IntPtr. 
               This way we outline the unsafety of the native calls, and also make it more clear for the 64bit transition.
               Eg "HANDLE" is "void*". If the rule forces you to mark some assembly as unsafe, it's an indication a managed utility
               incapsulating the call and the handle should be provided in one of the already-unsafe assemblies.
            (A) Same rules must apply to members of the structures.
            (B) All of the structures MUST have the [StructLayout(LayoutKind.Sequential)], [NoReorder] attributes, as appropriate.
            </remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.PsApiDll.EnumProcessModules(System.Void*,System.Void**,System.UInt32,System.UInt32*)">
            <summary>
            Retrieves a handle for each module in the specified process.
            To control whether a 64-bit application enumerates 32-bit modules, 64-bit modules, or both types of modules, use the EnumProcessModulesEx function.
            </summary>
            <param name="hProcess">A handle to the process.</param>
            <param name="lphModule">An array that receives the list of module handles.</param>
            <param name="cb">The size of the lphModule array, in bytes.</param>
            <param name="lpcbNeeded">The number of bytes required to store all module handles in the lphModule array.</param>
            <returns>If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. To get extended error information, call GetLastError.</returns>
            <remarks>
            […]
            It is a good idea to specify a large array of HMODULE values, because it is hard to predict how many modules there will be in the process at the time you call EnumProcessModules. To determine if the lphModule array is too small to hold all module handles for the process, compare the value returned in lpcbNeeded with the value specified in cb. If lpcbNeeded is greater than cb, increase the size of the array and call EnumProcessModules again.
            To determine how many modules were enumerated by the call to EnumProcessModules, divide the resulting value in the lpcbNeeded parameter by sizeof(HMODULE).
            […]
            </remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.PsApiDll.GetModuleFileNameExW(System.Void*,System.Void*,System.Text.StringBuilder,System.UInt32)">
            <summary>
            Retrieves the fully qualified path for the file containing the specified module.
            </summary>
            <param name="hProcess">A handle to the process that contains the module. The handle must have the PROCESS_QUERY_INFORMATION and PROCESS_VM_READ access rights. </param>
            <param name="hModule">A handle to the module. If this parameter is NULL, GetModuleFileNameEx returns the path of the executable file of the process specified in hProcess.</param>
            <param name="lpFilename">A pointer to a buffer that receives the fully qualified path to the module. If the size of the file name is larger than the value of the nSize parameter, the function succeeds but the file name is truncated and null-terminated.</param>
            <param name="size">The size of the lpFilename buffer, in characters.</param>
            <returns>If the function succeeds, the return value specifies the length of the string copied to the buffer. If the function fails, the return value is zero. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.PsApiDll.GetProcessImageFileNameW(System.Void*,System.Text.StringBuilder,System.UInt32)">
            <summary>
            Retrieves the name of the executable file for the specified process.
            </summary>
            <param name="hProcess">A handle to the process. The handle must have the PROCESS_QUERY_INFORMATION or PROCESS_QUERY_LIMITED_INFORMATION access right.</param>
            <param name="lpFilename">A pointer to a buffer that receives the full path to the executable file.</param>
            <param name="size">The size of the lpImageFileName buffer, in characters.</param>
            <returns>If the function succeeds, the return value specifies the length of the string copied to the buffer. If the function fails, the return value is zero. </returns>
            <remarks>The GetProcessImageFileName function returns the path in device form, rather than drive letters. For example, the file name "C:\Windows\System32\Ctype.nls" would look as follows in device form: "\Device\Harddisk0\Partition1\Windows\System32\Ctype.nls".</remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.PsApiDll.GetProcessMemoryInfo(System.Void*,JetBrains.Interop.Windows.Declarations.Structures.PROCESS_MEMORY_COUNTERS_EX*,System.UInt32)">
            <summary>
            Retrieves information about the memory usage of the specified process.
            </summary>
            <param name="hProcess">A handle to the process.
            The handle must have the PROCESS_QUERY_INFORMATION or PROCESS_QUERY_LIMITED_INFORMATION access right and the PROCESS_VM_READ access right.</param>
            <param name="pCounters">A pointer to the PROCESS_MEMORY_COUNTERS or <see cref="T:JetBrains.Interop.Windows.Declarations.Structures.PROCESS_MEMORY_COUNTERS_EX"/> structure that receives information about the memory usage of the process.</param>
            <param name="cb">The size of the <see cref="!:pCounters"/> structure, in bytes.</param>
            <returns>If the function succeeds, the return value is nonzero. If the function fails, the return value is zero.</returns>
        </member>
        <member name="T:JetBrains.Interop.WinApi.RstrtmgrDll">
            <summary>
             Rstrtmgr.dll (Restart Manager) functions.
             Must be 64bit-safe.
            </summary>
            <remarks>
             IMPORTANT! Rules for authoring the class (v1.1):
             (1) All the function declarations MUST be 64-bit aware.
             (2) When copypasting from older declarations, you MUST check against the MSDN help or header declaration,
                and you MUST ensure that each parameter has a proper size.
             (3) Call the Wide version of the functions (UCS-2-LE) unless there's a strong reason for calling the ANSI version
                (such a reason MUST be indicated in XmlDoc). <c>CharSet = CharSet.Unicode</c>.
             (4) ExactSpelling MUST be TRUE. Add the "…W" suffix wherever needed.
             (5) SetLastError SHOULD be considered individually for each function. Setting it to <c>True</c> allows to report the errors,
                but slows down the execution of critical members.
             (6) These properties MUST be explicitly set on DllImport attributes of EACH import:
                CharSet, PreserveSig, SetLastError, ExactSpelling.
             (7) CLR names MUST be used for types instead of C# ones, eg "Int32" not "int" and "Int64" not "long".
                This greately improves the understanding of the parameter sizes.
             (8) Sign of the types MUST be favored, eg "DWORD" is "UInt32" not "Int32".
             (9) Unsafe pointer types should be used for explicit and implicit pointers rather than IntPtr.
                This way we outline the unsafety of the native calls, and also make it more clear for the 64bit transition.
                Eg "HANDLE" is "void*". If the rule forces you to mark some assembly as unsafe, it's an indication a managed utility
                incapsulating the call and the handle should be provided in one of the already-unsafe assemblies.
             (A) Same rules must apply to members of the structures.
             (B) All of the structures MUST have the [StructLayout(LayoutKind.Sequential)], [NoReorder] attributes, as appropriate.
            </remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.RstrtmgrDll.RmEndSession(System.UInt32)">
            <summary>
            Ends the Restart Manager session. This function should be called by the primary installer that has previously started the session by calling the RmStartSession function. The RmEndSession function can be called by a secondary installer that is joined to the session once no more resources need to be registered by the secondary installer.
            </summary>
            <param name="dwSessionHandle">A handle to an existing Restart Manager session.</param>
            <returns>This is the most recent error received. The function can return one of the system error codes that are defined in Winerror.h.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.RstrtmgrDll.RmGetList(System.UInt32,System.UInt32*,System.UInt32*,JetBrains.Interop.WinApi.RM_PROCESS_INFO*,System.UInt32*)">
            <summary>
            Gets a list of all applications and services that are currently using resources that have been registered with the Restart Manager session.
            </summary>
            <param name="dwSessionHandle">A handle to an existing Restart Manager session.</param>
            <param name="pnProcInfoNeeded">A pointer to an array size necessary to receive RM_PROCESS_INFO structures required to return information for all affected applications and services.</param>
            <param name="pnProcInfo">A pointer to the total number of RM_PROCESS_INFO structures in an array and number of structures filled.</param>
            <param name="rgAffectedApps">An array of RM_PROCESS_INFO structures that list the applications and services using resources that have been registered with the session.</param>
            <param name="lpdwRebootReasons">Pointer to location that receives a value of the RM_REBOOT_REASON enumeration that describes the reason a system restart is needed.</param>
            <returns>This is the most recent error received. The function can return one of the system error codes that are defined in Winerror.h.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.RstrtmgrDll.RmRegisterResources(System.UInt32,System.UInt32,System.Char**,System.UInt32,JetBrains.Interop.WinApi.RM_UNIQUE_PROCESS*,System.UInt32,System.Char**)">
            <summary>
            Registers resources to a Restart Manager session. The Restart Manager uses the list of resources registered with the session to determine which applications and services must be shut down and restarted. Resources can be identified by filenames, service short names, or <see cref="T:JetBrains.Interop.WinApi.RM_UNIQUE_PROCESS" /> structures that describe running applications. The RmRegisterResources function can be used by a primary or secondary installer.
            </summary>
            <param name="dwSessionHandle">A handle to an existing Restart Manager session.</param>
            <param name="nFiles">The number of files being registered.</param>
            <param name="rgsFilenames">An array of null-terminated strings of full filename paths. This parameter can be NULL if nFiles is 0.</param>
            <param name="nApplications">The number of processes being registered.</param>
            <param name="rgApplications">An array of <see cref="T:JetBrains.Interop.WinApi.RM_UNIQUE_PROCESS" /> structures. This parameter can be NULL if nApplications is 0.</param>
            <param name="nServices">The number of services to be registered.</param>
            <param name="rgsServiceNames">An array of null-terminated strings of service short names. This parameter can be NULL if nServices is 0.</param>
            <returns>This is the most recent error received. The function can return one of the system error codes that are defined in Winerror.h. </returns>
            <remarks>Each call to the RmRegisterResources function performs relatively expensive write operations. Do not call this function once per file, instead group related files together into components and register these together.</remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.RstrtmgrDll.RmStartSession(System.UInt32*,System.UInt32,System.Char*)">
            <summary>
            Starts a new Restart Manager session. A maximum of 64 Restart Manager sessions per user session can be open on the system at the same time. When this function starts a session, it returns a session handle and session key that can be used in subsequent calls to the Restart Manager API.
            </summary>
            <param name="pSessionHandle">A pointer to the handle of a Restart Manager session. The session handle can be passed in subsequent calls to the Restart Manager API.</param>
            <param name="dwSessionFlags">Reserved. This parameter should be 0.</param>
            <param name="strSessionKey">A null-terminated string that contains the session key to the new session. The string must be allocated before calling the RmStartSession function. Must be at least CCH_RM_SESSION_KEY+1 unicode characters in length.</param>
            <returns>This is the most recent error received. The function can return one of the system error codes that are defined in Winerror.h.</returns>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Secur32Dll">
            <summary>
            Secur32.dll functions.
            Must be 64bit-safe.
            </summary>
            <remarks>
            IMPORTANT! Rules for authoring the class (v1.1):
            (1) All the function declarations MUST be 64-bit aware.
            (2) When copypasting from older declarations, you MUST check against the MSDN help or header declaration,
               and you MUST ensure that each parameter has a proper size.
            (3) Call the Wide version of the functions (UCS-2-LE) unless there's a strong reason for calling the ANSI version
               (such a reason MUST be indicated in XmlDoc). <c>CharSet = CharSet.Unicode</c>.
            (4) ExactSpelling MUST be TRUE. Add the "…W" suffix wherever needed.
            (5) SetLastError SHOULD be considered individually for each function. Setting it to <c>True</c> allows to report the errors,
               but slows down the execution of critical members.
            (6) These properties MUST be explicitly set on DllImport attributes of EACH import:
               CharSet, PreserveSig, SetLastError, ExactSpelling.
            (7) CLR names MUST be used for types instead of C# ones, eg "Int32" not "int" and "Int64" not "long".
               This greately improves the understanding of the parameter sizes.
            (8) Sign of the types MUST be favored, eg "DWORD" is "UInt32" not "Int32".
            (9) Unsafe pointer types should be used for explicit and implicit pointers rather than IntPtr.
               This way we outline the unsafety of the native calls, and also make it more clear for the 64bit transition.
               Eg "HANDLE" is "void*". If the rule forces you to mark some assembly as unsafe, it's an indication a managed utility
               incapsulating the call and the handle should be provided in one of the already-unsafe assemblies.
            (A) Same rules must apply to members of the structures.
            (B) All of the structures MUST have the [StructLayout(LayoutKind.Sequential)], [NoReorder] attributes, as appropriate.
            </remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Secur32Dll.GetUserNameExW(JetBrains.Interop.WinApi.Constants.EXTENDED_NAME_FORMAT,System.Char*,System.UInt32*)">
            <summary>
            Retrieves the name of the user or other security principal associated with the calling thread. You can specify the format of the returned name.
            If the thread is impersonating a client, GetUserNameEx returns the name of the client.
            </summary>
            <param name="NameFormat"></param>
            <param name="lpNameBuffer"></param>
            <param name="lpnSize"></param>
            <returns>If the function succeeds, the return value is a nonzero value.</returns>
        </member>
        <member name="T:JetBrains.Interop.WinApi.ShcoreDll">
            <summary>
            Shcore.dll functions.
            Must be 64bit-safe.
            </summary>
            <remarks>
            IMPORTANT! Rules for authoring the class (v1.1):
            (1) All the function declarations MUST be 64-bit aware.
            (2) When copypasting from older declarations, you MUST check against the MSDN help or header declaration,
               and you MUST ensure that each parameter has a proper size.
            (3) Call the Wide version of the functions (UCS-2-LE) unless there's a strong reason for calling the ANSI version
               (such a reason MUST be indicated in XmlDoc). <c>CharSet = CharSet.Unicode</c>.
            (4) ExactSpelling MUST be TRUE. Add the "…W" suffix wherever needed.
            (5) SetLastError SHOULD be considered individually for each function. Setting it to <c>True</c> allows to report the errors,
               but slows down the execution of critical members.
            (6) These properties MUST be explicitly set on DllImport attributes of EACH import:
               CharSet, PreserveSig, SetLastError, ExactSpelling.
            (7) CLR names MUST be used for types instead of C# ones, eg "Int32" not "int" and "Int64" not "long".
               This greately improves the understanding of the parameter sizes.
            (8) Sign of the types MUST be favored, eg "DWORD" is "UInt32" not "Int32".
            (9) Unsafe pointer types should be used for explicit and implicit pointers rather than IntPtr.
               This way we outline the unsafety of the native calls, and also make it more clear for the 64bit transition.
               Eg "HANDLE" is "void*". If the rule forces you to mark some assembly as unsafe, it's an indication a managed utility
               incapsulating the call and the handle should be provided in one of the already-unsafe assemblies.
            (A) Same rules must apply to members of the structures.
            (B) All of the structures MUST have the [StructLayout(LayoutKind.Sequential)], [NoReorder] attributes, as appropriate.
            </remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.ShcoreDll.GetDpiForMonitor(System.Void*,System.Int32,System.UInt32*,System.UInt32*)">
            <summary>
            Queries the dots per inch (dpi) of a display.
            </summary>
            <param name="hmonitor">Handle of the monitor being queried.</param>
            <param name="dpiType">The type of DPI being queried. Possible values are from the <see cref="T:JetBrains.Interop.WinApi.Constants.MONITOR_DPI_TYPE">MONITOR_DPI_TYPE</see> enumeration. </param>
            <param name="dpiX">The value of the DPI along the X axis. This value always refers to the horizontal edge, even when the screen is rotated.</param>
            <param name="dpiY">The value of the DPI along the Y axis. This value always refers to the vertical edge, even when the screen is rotated.</param>
            <returns><see cref="T:JetBrains.Interop.WinApi.HResults" /></returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.ShcoreDll.GetProcessDpiAwareness(System.Void*,JetBrains.Interop.WinApi.Constants.PROCESS_DPI_AWARENESS*)">
            <summary>
            Retrieves the dots per inch (dpi) awareness of the specified process.
            </summary>
            <param name="hprocess">Handle of the process that is being queried. If this parameter is NULL, the current process is queried.</param>
            <param name="value">The DPI awareness of the specified process. Possible values are from the <see cref="T:JetBrains.Interop.WinApi.Constants.PROCESS_DPI_AWARENESS"/> enumeration.</param>
            <returns><see cref="T:JetBrains.Interop.WinApi.HResults" /></returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.ShcoreDll.SetProcessDpiAwareness(System.Int32)">
            <summary>
            Sets the current process to a specified dots per inch (dpi) awareness level. The DPI awareness levels are from the <see cref="T:JetBrains.Interop.WinApi.Constants.PROCESS_DPI_AWARENESS" /> enumeration.
            </summary>
            <param name="value">The DPI awareness value to set. Possible values are from the <see cref="T:JetBrains.Interop.WinApi.Constants.PROCESS_DPI_AWARENESS" /> enumeration.</param>
            <returns><see cref="T:JetBrains.Interop.WinApi.HResults" /></returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Shell32Dll.SHGetFileInfoW(System.String,System.UInt32,JetBrains.Interop.WinApi.SHFILEINFO*,System.UInt32,System.UInt32)">
            <summary>
            Retrieves information about an object in the file system, such as a file, folder, directory, or drive root.
            </summary>
            <param name="pszPath">Type: LPCTSTR A pointer to a null-terminated string of maximum length MAX_PATH that contains the path and file name. Both absolute and relative paths are valid.  If the uFlags parameter includes the SHGFI_PIDL flag, this parameter must be the address of an ITEMIDLIST (PIDL) structure that contains the list of item identifiers that uniquely identifies the file within the Shell's namespace. The PIDL must be a fully qualified PIDL. Relative PIDLs are not allowed. If the uFlags parameter includes the SHGFI_USEFILEATTRIBUTES flag, this parameter does not have to be a valid file name. The function will proceed as if the file exists with the specified name and with the file attributes passed in the dwFileAttributes parameter. This allows you to obtain information about a file type by passing just the extension for pszPath and passing FILE_ATTRIBUTE_NORMAL in dwFileAttributes. This string can use either short (the 8.3 form) or long file names.</param>
            <param name="dwFileAttributes">A combination of one or more file attribute flags (FILE_ATTRIBUTE_ values as defined in Winnt.h). If uFlags does not include the SHGFI_USEFILEATTRIBUTES flag, this parameter is ignored.</param>
            <param name="psfi">Pointer to a SHFILEINFO structure to receive the file information.</param>
            <param name="cbFileInfo">The size, in bytes, of the SHFILEINFO structure pointed to by the psfi parameter.</param>
            <param name="uFlags">The flags that specify the file information to retrieve. This parameter can be a combination of the following values. <see cref="T:JetBrains.Interop.WinApi.Declarations.Constants.SHGetFileInfoFlags"/>.</param>
            <returns>Returns a value whose meaning depends on the uFlags parameter. If uFlags does not contain SHGFI_EXETYPE or SHGFI_SYSICONINDEX, the return value is nonzero if successful, or zero otherwise. If uFlags contains the SHGFI_EXETYPE flag, the return value specifies the type of the executable file. It will be one of the following values.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Shell32Dll.SHChangeNotify(JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyEvents,JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyFlags,System.Void*,System.Void*)">
            <summary>
            Notifies the system of an event that an application has performed. An application should use this function if it performs an action that may affect the Shell.
            </summary>
            <param name="wEventId">Describes the event that has occurred. Typically, only one event is specified at a time. If more than one event is specified, the values contained in the dwItem1 and dwItem2 parameters must be the same, respectively, for all specified events. This parameter can be one or more of the <see cref="T:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyEvents"/> values.</param>
            <param name="uFlags">Flags that, when combined bitwise with SHCNF_TYPE, indicate the meaning of the dwItem1 and dwItem2 parameters. The uFlags parameter must be one of the <see cref="T:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyFlags"/> values.</param>
            <param name="dwItem1">LPCVOID. Optional. First event-dependent value.</param>
            <param name="dwItem2">LPCVOID. Optional. Second event-dependent value.</param>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Shell32Dll.SHOpenFolderAndSelectItems(System.IntPtr,System.UInt32,System.IntPtr[],System.UInt32)">
            <summary>
            Opens a Windows Explorer window with specified items in a particular folder selected.
            https://docs.microsoft.com/en-us/windows/win32/api/shlobj_core/nf-shlobj_core-shopenfolderandselectitems
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Shell32Dll.SHParseDisplayName(System.String,System.IntPtr,System.IntPtr@,System.UInt32,System.UInt32@)">
            <summary>
            Translates a Shell namespace object's display name into an item identifier list and returns the attributes of the object. This function is the preferred method to convert a string to a pointer to an item identifier list (PIDL).
            https://docs.microsoft.com/en-us/windows/win32/api/shlobj_core/nf-shlobj_core-shparsedisplayname
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.SHFolderDll.SHGetFolderPathW(System.Void*,System.Int32,System.Void*,System.UInt32,System.Text.StringBuilder)">
            <param name="hwndOwner"></param>
            <param name="nFolder"><see cref="T:JetBrains.Interop.WinApi.CSIDL"/></param>
            <param name="hToken"></param>
            <param name="dwFlags"><see cref="T:JetBrains.Interop.WinApi.SHGFP_TYPE"/></param>
            <param name="lpszPath"></param>
        </member>
        <member name="T:JetBrains.Interop.WinApi.ShlwapiDll">
            <summary>
            Shlwapi.dll functions.
            Must be 64bit-safe.
            </summary>
            <remarks>
            IMPORTANT! Rules for authoring the class (v1.1):
            (1) All the function declarations MUST be 64-bit aware.
            (2) When copypasting from older declarations, you MUST check against the MSDN help or header declaration,
               and you MUST ensure that each parameter has a proper size.
            (3) Call the Wide version of the functions (UCS-2-LE) unless there's a strong reason for calling the ANSI version
               (such a reason MUST be indicated in XmlDoc). <c>CharSet = CharSet.Unicode</c>.
            (4) ExactSpelling MUST be TRUE. Add the "…W" suffix wherever needed.
            (5) SetLastError SHOULD be considered individually for each function. Setting it to <c>True</c> allows to report the errors,
               but slows down the execution of critical members.
            (6) These properties MUST be explicitly set on DllImport attributes of EACH import:
               CharSet, PreserveSig, SetLastError, ExactSpelling.
            (7) CLR names MUST be used for types instead of C# ones, eg "Int32" not "int" and "Int64" not "long".
               This greately improves the understanding of the parameter sizes.
            (8) Sign of the types MUST be favored, eg "DWORD" is "UInt32" not "Int32".
            (9) Unsafe pointer types should be used for explicit and implicit pointers rather than IntPtr.
               This way we outline the unsafety of the native calls, and also make it more clear for the 64bit transition.
               Eg "HANDLE" is "void*". If the rule forces you to mark some assembly as unsafe, it's an indication a managed utility
               incapsulating the call and the handle should be provided in one of the already-unsafe assemblies.
            (A) Same rules must apply to members of the structures.
            (B) All of the structures MUST have the [StructLayout(LayoutKind.Sequential)], [NoReorder] attributes, as appropriate.
            </remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.ShlwapiDll.StrFormatByteSize64A(System.Int64,System.Byte*,System.UInt32)">
            <summary>
            Converts a numeric value into a string that represents the number expressed as a size value in bytes, kilobytes, megabytes, or gigabytes, depending on the size.
            </summary>
            <param name="qdw">Numeric value to be converted.</param>
            <param name="pszBuf">Pointer to a buffer to hold the converted number. Note: this function is bound to call the ANSI version.</param>
            <param name="cchBuf">Size of the buffer, in characters. Note: in our case, in bytes.</param>
            <returns>Returns the address of the converted string, or <see cref="F:System.IntPtr.Zero" /> if the conversion fails.</returns>
            <remarks>
            The following table illustrates how this function converts a numeric value into a text string.
            Numeric value -> Text string
            532 -> 532 bytes
            1340 -> 1.30KB
            23506 -> 22.9KB
            2400016 -> 2.29MB
            2400000000 -> 2.23GB
            </remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.ShlwapiDll.Helpers.StrFormatByteSize(System.Int64)">
            <summary>
            Converts a numeric value into a string that represents the number expressed as a size value in bytes, kilobytes, megabytes, or gigabytes, depending on the size.
            </summary>
            <param name="nSize">Numeric value to be converted.</param>
            <returns>Returns the size string.</returns>
            <remarks>
            The following table illustrates how this function converts a numeric value into a text string.
            Numeric value -> Text string
            532 532 -> bytes
            1340 -> 1.30KB
            23506 -> 22.9KB
            2400016 -> 2.29MB
            2400000000 -> 2.23GB
            </remarks>
        </member>
        <member name="T:JetBrains.Interop.WinApi.CWPRETSTRUCT">
            <summary>
            The CWPRETSTRUCT structure defines the message parameters passed to a WH_CALLWNDPROCRET hook procedure, CallWndRetProc.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.CWPRETSTRUCT.lResult">
            <summary>
            Specifies the return value of the window procedure that processed the message specified by the message value. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.CWPRETSTRUCT.lParam">
            <summary>
            Specifies additional information about the message. The exact meaning depends on the message value. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.CWPRETSTRUCT.wParam">
            <summary>
            Specifies additional information about the message. The exact meaning depends on the message value. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.CWPRETSTRUCT.message">
            <summary>
            Specifies the message. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.CWPRETSTRUCT.hwnd">
            <summary>
            Handle to the window that processed the message specified by the message value.   
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.CWPSTRUCT">
            <summary>
            The CWPSTRUCT structure defines the message parameters passed to a WH_CALLWNDPROC hook procedure, CallWndProc. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.CWPSTRUCT.lParam">
            <summary>
            Specifies additional information about the message. The exact meaning depends on the message value. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.CWPSTRUCT.wParam">
            <summary>
            Specifies additional information about the message. The exact meaning depends on the message value. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.CWPSTRUCT.message">
            <summary>
            Specifies the message. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.CWPSTRUCT.hwnd">
            <summary>
            Handle to the window to receive the message.   
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.DEBUG_EVENT.dwDebugEventCode">
            <summary><see cref="T:JetBrains.Interop.WinApi.Constants.DebugEventCode"/></summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.EVENT_RECORD">
            <summary>
            The EVENT_RECORD structure defines the layout of an event that ETW delivers.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.EVENT_TRACE">
            <summary>
            The EVENT_TRACE structure is used to deliver event information to an event trace consumer.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.EVENT_TRACE_LOGFILE">
            <summary>
            The EVENT_TRACE_LOGFILE structure specifies how the consumer wants to read events (from a log file or in real-time) and the callbacks that will receive the events.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.EventRecordCallback">
            <summary>
            Consumers implement this function to receive events from a session.
            </summary>
            <param name="eventRecord">Pointer to an EVENT_TRACE structure that contains the event information.</param>
            <remarks>
            <para>To specify the function that ETW calls to deliver the events, set the EventCallback member of the EVENT_TRACE_LOGFILE structure that you pass to the OpenTrace function.</para>
            <para>This callback receives all events that the session generates from the time you call the OpenTrace function to open the trace. Call the ProcessTrace function to begin receiving the events.</para>
            <para>The event data for the first event you always receive contains the TRACE_LOGFILE_HEADER information. All the other events you receive contain provider-specific event data. You use the Header.Guid and Header.Class.Type members of EVENT_TRACE to determine the type of event you received.</para>
            </remarks>
        </member>
        <member name="T:JetBrains.Interop.WinApi.EventTraceBufferCallback">
            <summary>
            Consumers implement this function to receive statistics about each buffer of events that ETW delivers to an event trace consumer. ETW calls this function after the events for each buffer are delivered.
            </summary>
            <param name="logfile">Pointer to an EVENT_TRACE_LOGFILE structure that contains information about the buffer.</param>
            <returns>To continue processing events, return TRUE. Otherwise, return FALSE. Returning FALSE will terminate the ProcessTrace function.</returns>
            <remarks>To specify the function that ETW calls to deliver the buffer statistics, set the BufferCallback member of the EVENT_TRACE_LOGFILE structure that you pass to the OpenTrace function.</remarks>
        </member>
        <member name="T:JetBrains.Interop.WinApi.EVENT_TRACE_PROPERTIES">
            <summary>
            The EVENT_TRACE_PROPERTIES structure contains information about an event tracing session. You use this structure when you define a session, change the properties of a session, or query for the properties of a session.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.EventTrace_LogFileMode">
            <summary>
            Logger Mode flags
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.FILE_DISPOSITION_INFORMATION">
            <summary>
            The FILE_DISPOSITION_INFORMATION structure is used as an argument to the ZwSetInformationFile routine <code>NtDllDll.ZwSetInformationFile</code>.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.FILE_DISPOSITION_INFORMATION.DeleteFile">
            <summary>
            Indicates whether the operating system file should delete the file when the file is closed. 
            Set this member to TRUE to delete the file when it is closed. Otherwise, set to FALSE. Setting this member to FALSE has no effect if the handle was opened with FILE_FLAG_DELETE_ON_CLOSE.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.GUITHREADINFO">
            <summary>
            The GUITHREADINFO structure contains information about a graphical user interface (GUI) thread.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.GUITHREADINFO.cbSize">
            <summary>
            Specifies the size of this structure, in bytes. The caller must set this to sizeof(GUITHREADINFO). 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.GUITHREADINFO.flags">
            <summary>
            Specifies the thread state.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.GUITHREADINFO.hwndActive">
            <summary>
            Handle to the active window within the thread. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.GUITHREADINFO.hwndFocus">
            <summary>
            Handle to the window that has the keyboard focus. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.GUITHREADINFO.hwndCapture">
            <summary>
            Handle to the window that has captured the mouse. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.GUITHREADINFO.hwndMenuOwner">
            <summary>
            Handle to the window that owns any active menus. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.GUITHREADINFO.hwndMoveSize">
            <summary>
            Handle to the window in a move or size loop. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.GUITHREADINFO.hwndCaret">
            <summary>
            Handle to the window that is displaying the caret. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.GUITHREADINFO.rcCaret">
            <summary>
            A <c>RECT</c> structure that describes the caret's bounding rectangle, in client coordinates, relative to the window specified by the hwndCaret member. 
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.JOBOBJECT_BASIC_PROCESS_ID_LIST">
            <summary>
            Contains the process identifier list for a job object. If the job is nested, the process identifier list consists of all processes associated with the job and its child jobs.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.JOBOBJECT_BASIC_PROCESS_ID_LIST.NumberOfAssignedProcesses">
            <summary>
            The number of process identifiers to be stored in ProcessIdList.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.JOBOBJECT_BASIC_PROCESS_ID_LIST.NumberOfProcessIdsInList">
            <summary>
            The number of process identifiers returned in the ProcessIdList buffer. If this number is less than NumberOfAssignedProcesses, increase the size of the buffer to accommodate the complete list.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.JOBOBJECT_BASIC_PROCESS_ID_LIST.ProcessIdList_Item0">
            <summary>
            A variable-length array of process identifiers returned by this call. Array elements 0 through NumberOfProcessIdsInList – 1 contain valid process identifiers.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.MARGINS">
            <summary>
            Manages DWM window glass.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.MARGINS.#ctor(System.Int32)">
            <summary>
            Sets all margins to the same value.
            </summary>
        </member>
        <member name="P:JetBrains.Interop.WinApi.MARGINS.WholeSurface">
            <summary>
            Sets the margins so that they cover the whole surface.
            </summary>
        </member>
        <member name="P:JetBrains.Interop.WinApi.MARGINS.Null">
            <summary>
            Sets the margins so that they cover none of the window inner surface.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.MEMORYSTATUSEX">
            <summary>
            Helper structure for the <see cref="M:JetBrains.Interop.WinApi.Kernel32Dll.GlobalMemoryStatusEx(JetBrains.Interop.WinApi.MEMORYSTATUSEX*)"/> function.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.MONITORINFO">
            <summary>
            The MONITORINFO structure contains information about a display monitor. The GetMonitorInfo function stores information in a MONITORINFO structure or a MONITORINFOEX structure. The MONITORINFO structure is a subset of the MONITORINFOEX structure. The MONITORINFOEX structure adds a string member to contain a name for the display monitor.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.MONITORINFO.cbSize">
            <summary>
            The size of the structure, in bytes. Set this member to sizeof ( MONITORINFO ) before calling the GetMonitorInfo function. Doing so lets the function determine the type of structure you are passing to it.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.MONITORINFO.rcMonitor">
            <summary>
            A RECT structure that specifies the display monitor rectangle, expressed in virtual-screen coordinates. Note that if the monitor is not the primary display monitor, some of the rectangle's coordinates may be negative values.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.MONITORINFO.rcWork">
            <summary>
            A RECT structure that specifies the work area rectangle of the display monitor, expressed in virtual-screen coordinates. Note that if the monitor is not the primary display monitor, some of the rectangle's coordinates may be negative values.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.MONITORINFO.dwFlags">
            <summary>
            A set of flags that represent attributes of the display monitor.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.MONITORINFOEX">
            <summary>
            The MONITORINFOEX structure contains information about a display monitor. The GetMonitorInfo function stores information into a MONITORINFOEX structure or a MONITORINFO structure. The MONITORINFOEX structure is a superset of the MONITORINFO structure. The MONITORINFOEX structure adds a string member to contain a name for the display monitor.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.MONITORINFOEX.cbSize">
            <summary>
            The size of the structure, in bytes. Set this member to sizeof ( MONITORINFO ) before calling the GetMonitorInfo function. Doing so lets the function determine the type of structure you are passing to it.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.MONITORINFOEX.rcMonitor">
            <summary>
            A RECT structure that specifies the display monitor rectangle, expressed in virtual-screen coordinates. Note that if the monitor is not the primary display monitor, some of the rectangle's coordinates may be negative values.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.MONITORINFOEX.rcWork">
            <summary>
            A RECT structure that specifies the work area rectangle of the display monitor, expressed in virtual-screen coordinates. Note that if the monitor is not the primary display monitor, some of the rectangle's coordinates may be negative values.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.MONITORINFOEX.dwFlags">
            <summary>
            The attributes of the display monitor. This member can be the following value. <c>MONITORINFOF_PRIMARY</c>
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.MONITORINFOEX.szDevice">
            <summary>
            A string that specifies the device name of the monitor being used. Most applications have no use for a display monitor name, and so can save some bytes by using a MONITORINFO structure.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.MOUSEHOOKSTRUCT">
            <summary>
            The MOUSEHOOKSTRUCT structure contains information about a mouse event passed to a WH_MOUSE hook procedure, MouseProc. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.MOUSEHOOKSTRUCT.pt">
            <summary>
            Specifies a POINT structure that contains the x- and y-coordinates of the cursor, in screen coordinates. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.MOUSEHOOKSTRUCT.hwnd">
            <summary>
            Handle to the window that will receive the mouse message corresponding to the mouse event. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.MOUSEHOOKSTRUCT.wHitTestCode">
            <summary>
            Specifies the hit-test value. For a list of hit-test values, see the description of the WM_NCHITTEST message. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.MOUSEHOOKSTRUCT.dwExtraInfo">
            <summary>
            Specifies extra information associated with the message. 
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.MSG">
            <summary>
            The MSG structure contains message information from a thread's message queue.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.MSG.hwnd">
            <summary>
            Handle to the window whose window procedure receives the message. hwnd is NULL when the message is a thread message.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.MSG.message">
            <summary>
            Specifies the message identifier. Applications can only use the low word; the high word is reserved by the system.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.MSG.wParam">
            <summary>
            Specifies additional information about the message. The exact meaning depends on the value of the message member.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.MSG.lParam">
            <summary>
            Specifies additional information about the message. The exact meaning depends on the value of the message member.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.MSG.time">
            <summary>
            Specifies the time at which the message was posted.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.MSG.pt">
            <summary>
            Specifies the cursor position, in screen coordinates, when the message was posted.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.MSLLHOOKSTRUCT">
            <summary>
            The MSLLHOOKSTRUCT structure contains information about a low-level keyboard input event. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.MSLLHOOKSTRUCT.pt">
            <summary>
            Specifies a POINT structure that contains the x- and y-coordinates of the cursor, in screen coordinates. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.MSLLHOOKSTRUCT.mouseData">
            <summary>
            <para>If the message is WM_MOUSEWHEEL, the high-order word of this member is the wheel delta. The low-order word is reserved. A positive value indicates that the wheel was rotated forward, away from the user; a negative value indicates that the wheel was rotated backward, toward the user. One wheel click is defined as WHEEL_DELTA, which is 120. </para>
            <para>If the message is WM_XBUTTONDOWN, WM_XBUTTONUP, WM_XBUTTONDBLCLK, WM_NCXBUTTONDOWN, WM_NCXBUTTONUP, or WM_NCXBUTTONDBLCLK, the high-order word specifies which X button was pressed or released, and the low-order word is reserved. This value can be one or more of the following values. Otherwise, mouseData is not used.</para>
            <para>XBUTTON1  The first X button was pressed or released.</para>
            <para>XBUTTON2  The second X button was pressed or released.</para>
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.MSLLHOOKSTRUCT.flags">
            <summary>
            <para>Specifies the event-injected flag. An application can use the following value to test the mouse flags. </para>
            <para>LLMHF_INJECTED Test the event-injected flag.</para>
            <para>0  Specifies whether the event was injected. The value is 1 if the event was injected; otherwise, it is 0.</para>
            <para>1-15  Reserved.</para>
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.MSLLHOOKSTRUCT.time">
            <summary>
            Specifies the time stamp for this message. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.MSLLHOOKSTRUCT.dwExtraInfo">
            <summary>
            Specifies extra information associated with the message.   
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.MSOCRINFO">
            <summary>
            Specifies registration information for a MSO component.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.MSOCRINFO.cbSize">
            <summary>
            The size, in bytes, of the MSOCRINFO structure.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.MSOCRINFO.uIdleTimeInterval">
            <summary>
            The interval time, in milliseconds, of when a periodic idle phase should occur. During the idle phase, the component needs to perform idle-time tasks. 
            This member applies only if the msocrfNeedPeriodicIdleTime bit flag is registered in the grfcrf member
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.MSOCRINFO.grfcrf">
            <summary>
            Bit flags composed from the Msocrf enumeration.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.MSOCRINFO.grfcadvf">
            <summary>
            Bit flags composed from the Msocadvf enumeration.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.NMHDR">
            <summary>
            Contains information about a notification message.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.NMHDR.hwndFrom">
            <summary>
            A window handle to the control sending the message.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.NMHDR.idFrom">
            <summary>
            An identifier of the control sending the message.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.NMHDR.code">
            <summary>
            A notification code. This member can be one of the common notification codes (see Notifications under General Control Reference), or it can be a control-specific notification code.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.OVERLAPPED.PointerOrOffset">
            <summary>
            NOTE(H): this is a union of two DWORDS and a pointer, so it would always be at least a QWORD, hope pointers never get above 64bit.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.PAINTSTRUCT">
            <summary>
            The PAINTSTRUCT structure contains information for an application. This information can be used to paint the client area of a window owned by that application.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.POINT">
            <summary>
            The POINT structure defines the x- and y- coordinates of a point.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.POINT.x">
            <summary>
            Specifies the x-coordinate of the point.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.POINT.y">
            <summary>
            Specifies the y-coordinate of the point.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.POINT.#ctor(System.IntPtr)">
            <summary>
            Creates a new point, unpacking its signed coordinates from an LPARAM, using the <see cref="M:JetBrains.Interop.WinApi.Macros.GET_X_LPARAM(System.IntPtr)" /> and <see cref="M:JetBrains.Interop.WinApi.Macros.GET_Y_LPARAM(System.IntPtr)" /> functions.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.POINT.ToString">
            <summary>
            Returns a <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
            </summary>
            <returns>
            A <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
            </returns>
            <filterpriority>2</filterpriority>
        </member>
        <member name="T:JetBrains.Interop.WinApi.RECT">
            <summary>
            The RECT structure defines the coordinates of the upper-left and lower-right corners of a rectangle.
            By convention, the right and bottom edges of the rectangle are normally considered exclusive. In other words, the pixel whose coordinates are (right, bottom) lies immediately outside of the the rectangle. For example, when RECT is passed to the FillRect function, the rectangle is filled up to, but not including, the right column and bottom row of pixels. This structure is identical to the RECTL structure.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.RECT.ToString">
            <summary>
            Returns a <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
            </summary>
            <returns>
            A <see cref="T:System.String"></see> that represents the current <see cref="T:System.Object"></see>.
            </returns>
            <filterpriority>2</filterpriority>
        </member>
        <member name="M:JetBrains.Interop.WinApi.RECT.Equals(JetBrains.Interop.WinApi.RECT)">
            <inheritdoc />
        </member>
        <member name="M:JetBrains.Interop.WinApi.RECT.Equals(System.Object)">
            <inheritdoc />
        </member>
        <member name="M:JetBrains.Interop.WinApi.RECT.GetHashCode">
            <inheritdoc />
        </member>
        <member name="T:JetBrains.Interop.WinApi.REPARSE_DATA_BUFFER_HEADER">
            <summary>
            The common part of the <c>REPARSE_DATA_BUFFER</c> structure.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.REPARSE_DATA_BUFFER_HEADER.ReparseData">
            <summary>
            Either <see cref="T:JetBrains.Interop.WinApi.REPARSE_DATA_MOUNT_POINT"/> or symlink or any custom data.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.REPARSE_DATA_MOUNT_POINT">
            <summary>
            Part of the <c>REPARSE_DATA_BUFFER</c> structure after <see cref="T:JetBrains.Interop.WinApi.REPARSE_DATA_BUFFER_HEADER"/> for the MOUNT POINT case.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.REPARSE_GUID_DATA_BUFFER">
            <summary>
            The reparse GUID structure is used by all 3rd party layered drivers to
            store data in a reparse point. For non-Microsoft tags, The GUID field
            cannot be GUID_NULL.
            The constraints on reparse tags are defined below.
            Microsoft tags can also be used with this format of the reparse point buffer.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.RM_PROCESS_INFO">
            <summary>
            Describes an application that is to be registered with the Restart Manager.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.RM_PROCESS_INFO.Process">
            <summary>
            Contains an RM_UNIQUE_PROCESS structure that uniquely identifies the application by its PID and the time the process began.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.RM_PROCESS_INFO.strAppName">
            <summary>
            If the process is a service, this parameter returns the long name for the service. If the process is not a service, this parameter returns the user-friendly name for the application. If the process is a critical process, and the installer is run with elevated privileges, this parameter returns the name of the executable file of the critical process. If the process is a critical process, and the installer is run as a service, this parameter returns the long name of the critical process.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.RM_PROCESS_INFO.strServiceShortName">
            <summary>
            If the process is a service, this is the short name for the service. This member is not used if the process is not a service.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.RM_PROCESS_INFO.ApplicationType">
            <summary>
            Contains an RM_APP_TYPE enumeration value that specifies the type of application as RmUnknownApp, RmMainWindow, RmOtherWindow, RmService, RmExplorer or RmCritical.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.RM_PROCESS_INFO.AppStatus">
            <summary>
            Contains a bit mask that describes the current status of the application. See the RM_APP_STATUS enumeration.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.RM_PROCESS_INFO.TSSessionId">
            <summary>
            Contains the Terminal Services session ID of the process. If the terminal session of the process cannot be determined, the value of this member is set to RM_INVALID_SESSION (-1). This member is not used if the process is a service or a system critical process.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.RM_PROCESS_INFO.bRestartable">
            <summary>
            TRUE if the application can be restarted by the Restart Manager; otherwise, FALSE. This member is always TRUE if the process is a service. This member is always FALSE if the process is a critical system process.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.RM_UNIQUE_PROCESS">
            <summary>
            Uniquely identifies a process by its PID and the time the process began. An array of RM_UNIQUE_PROCESS structures can be passed to the RmRegisterResources function.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.RM_UNIQUE_PROCESS.dwProcessId">
            <summary>
            The product identifier (PID).
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.RM_UNIQUE_PROCESS.ProcessStartTime">
            <summary>
            The creation time of the process. The time is provided as a FILETIME structure that is returned by the lpCreationTime parameter of the GetProcessTimes function.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.SECURITY_ATTRIBUTES">
            <summary>
            The <see cref="T:JetBrains.Interop.WinApi.SECURITY_ATTRIBUTES" /> structure contains the security descriptor for an object and specifies whether the handle retrieved by specifying this structure is inheritable. This structure provides security settings for objects created by various functions, such as CreateFile, CreatePipe, CreateProcess, RegCreateKeyEx, or RegSaveKeyEx.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SECURITY_ATTRIBUTES.nLength">
            <summary>
            The size, in bytes, of this structure. Set this value to the size of the SECURITY_ATTRIBUTES structure.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SECURITY_ATTRIBUTES.lpSecurityDescriptor">
            <summary>
            A pointer to a security descriptor for the object that controls the sharing of it. If NULL is specified for this member, the object is assigned the default security descriptor of the calling process. This is not the same as granting access to everyone by assigning a NULL discretionary access control list (DACL). The default security descriptor is based on the default DACL of the access token belonging to the calling process. By default, the default DACL in the access token of a process allows access only to the user represented by the access token. If other users must access the object, you can either create a security descriptor with the appropriate access, or add ACEs to the DACL that grants access to a group of users.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SECURITY_ATTRIBUTES.bInheritHandle">
            <summary>
            A Boolean value that specifies whether the returned handle is inherited when a new process is created. If this member is TRUE, the new process inherits the handle.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SERVICE_STATUS_PROCESS.dwServiceType">
            <summary>
            See <see cref="T:JetBrains.Interop.WinApi.ServiceType"/>
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SERVICE_STATUS_PROCESS.dwCurrentState">
            <summary>
            See <see cref="T:JetBrains.Interop.WinApi.ServiceState"/>
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SERVICE_STATUS_PROCESS.dwControlsAccepted">
            <summary>
            See <see cref="T:JetBrains.Interop.WinApi.ServiceAccept"/>
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SERVICE_STATUS_PROCESS.dwServiceFlags">
            <summary>
            See <see cref="T:JetBrains.Interop.WinApi.ServiceFlags"/>
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.SHFILEINFO">
            <summary>
            Contains information about a file object.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SHFILEINFO.hIcon">
            <summary>
            A handle to the icon that represents the file. You are responsible for destroying this handle with DestroyIcon when you no longer need it.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SHFILEINFO.iIcon">
            <summary>
            The index of the icon image within the system image list.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SHFILEINFO.dwAttributes">
            <summary>
            An array of values that indicates the attributes of the file object. For information about these values, see the IShellFolder::GetAttributesOf method.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SHFILEINFO.szDisplayName">
            <summary>
            A string that contains the name of the file as it appears in the Windows Shell, or the path and file name of the file that contains the icon representing the file.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SHFILEINFO.szTypeName">
            <summary>
            A string that describes the type of file.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.SYSTEMTIME">
            <summary>
            Specifies a date and time, using individual members for the month, day, year, weekday, hour, minute, second, and millisecond. The time is either in coordinated universal time (UTC) or local time, depending on the function that is being called.
            </summary>
            <remarks>Winbase.h (include Windows.h)</remarks>
        </member>
        <member name="F:JetBrains.Interop.WinApi.SYSTEM_INFO.wProcessorArchitecture">
            <seealso cref="T:JetBrains.Interop.WinApi.ProcessorArchitecture"/>
        </member>
        <member name="T:JetBrains.Interop.WinApi.TIME_ZONE_INFORMATION">
            <summary>
            Specifies settings for a time zone.
            </summary>
            <remarks>Winbase.h (include Windows.h)</remarks>
        </member>
        <member name="T:JetBrains.Interop.WinApi.TRACE_GUID_PROPERTIES">
            <summary>
            The TRACE_GUID_PROPERTIES structure contains information about an event trace provider.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.UNICODE_STRING.Length">
            <summary>
            Specifies the length, in bytes, of the string pointed to by the Buffer member, not including the terminating NULL character, if any.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.UNICODE_STRING.MaximumLength">
            <summary>
            Specifies the total size, in bytes, of memory allocated for Buffer.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.UNICODE_STRING.Buffer">
            <summary>
            Pointer to a wide-character string. Note that the strings returned by the various LSA functions might not be null-terminated.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.UNICODE_STRING.AllocAndInit(System.String)">
            <summary>
            Allocate a new UNICODE_STRING and init it with the specified string.
            </summary>
            <returns>A pointer to a new UNICODE_STRING object. Use <see cref="M:System.Runtime.InteropServices.Marshal.FreeHGlobal(System.IntPtr)"/> to free the object when you don't need it anymore.</returns>
        </member>
        <member name="T:JetBrains.Interop.WinApi.WNDCLASSEXW">
            <summary>
            Contains window class information. It is used with the RegisterClassEx and GetClassInfoEx functions.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WNDCLASSEXW.cbSize">
            <summary>
            The size, in bytes, of this structure. Set this member to sizeof(WNDCLASSEX). Be sure to set this member before calling the GetClassInfoEx function.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WNDCLASSEXW.style">
            <summary>
            The class style(s). This member can be any combination of the Class Styles.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WNDCLASSEXW.lpfnWndProc">
            <summary>
            Type: WNDPROC. A pointer to the window procedure. You must use the CallWindowProc function to call the window procedure. For more information, see WindowProc.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WNDCLASSEXW.cbClsExtra">
            <summary>
            The number of extra bytes to allocate following the window-class structure. The system initializes the bytes to zero.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WNDCLASSEXW.cbWndExtra">
            <summary>
            The number of extra bytes to allocate following the window instance. The system initializes the bytes to zero. If an application uses WNDCLASSEX to register a dialog box created by using the CLASS directive in the resource file, it must set this member to DLGWINDOWEXTRA.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WNDCLASSEXW.hInstance">
            <summary>
            Type: HINSTANCE. A handle to the instance that contains the window procedure for the class.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WNDCLASSEXW.hIcon">
            <summary>
            Type: HICON. A handle to the class icon. This member must be a handle to an icon resource. If this member is NULL, the system provides a default icon.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WNDCLASSEXW.hCursor">
            <summary>
            Type: HCURSOR. A handle to the class cursor. This member must be a handle to a cursor resource. If this member is NULL, an application must explicitly set the cursor shape whenever the mouse moves into the application's window.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WNDCLASSEXW.hbrBackground">
            <summary>
            Type: HBRUSH. A handle to the class background brush. This member can be a handle to the brush to be used for painting the background, or it can be a color value. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WNDCLASSEXW.lpszMenuName">
            <summary>
            Pointer to a null-terminated character string that specifies the resource name of the class menu, as the name appears in the resource file. If you use an integer to identify the menu, use the MAKEINTRESOURCE macro. If this member is NULL, windows belonging to this class have no default menu.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WNDCLASSEXW.lpszClassName">
            <summary>
            A pointer to a null-terminated string or is an atom. If this parameter is an atom, it must be a class atom created by a previous call to the RegisterClass or RegisterClassEx function. The atom must be in the low-order word of lpszClassName; the high-order word must be zero.
            </summary>
            <remarks>The maximum length for lpszClassName is 256. If lpszClassName is greater than the maximum length, the RegisterClassEx function will fail.</remarks>>
        </member>
        <member name="F:JetBrains.Interop.WinApi.WNDCLASSEXW.hIconSm">
            <summary>
            A handle to a small icon that is associated with the window class. If this member is NULL, the system searches the icon resource specified by the hIcon member for an icon of the appropriate size to use as the small icon.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.User32Dll">
            <summary>
            User32.dll functions.
            Must be 64bit-safe.
            </summary>
            <remarks>
            IMPORTANT! Rules for authoring the class (v1.1):
            (1) All the function declarations MUST be 64-bit aware.
            (2) When copypasting from older declarations, you MUST check against the MSDN help or header declaration, 
               and you MUST ensure that each parameter has a proper size.
            (3) Call the Wide version of the functions (UCS-2-LE) unless there's a strong reason for calling the ANSI version 
               (such a reason MUST be indicated in XmlDoc). <c>CharSet = CharSet.Unicode</c>.
            (4) ExactSpelling MUST be TRUE. Add the "…W" suffix wherever needed.
            (5) SetLastError SHOULD be considered individually for each function. Setting it to <c>True</c> allows to report the errors,
               but slows down the execution of critical members.
            (6) These properties MUST be explicitly set on DllImport attributes of EACH import: 
               CharSet, PreserveSig, SetLastError, ExactSpelling.
            (7) CLR names MUST be used for types instead of C# ones, eg "Int32" not "int" and "Int64" not "long".
               This greately improves the understanding of the parameter sizes.
            (8) Sign of the types MUST be favored, eg "DWORD" is "UInt32" not "Int32".
            (9) Unsafe pointer types should be used for explicit and implicit pointers rather than IntPtr. 
               This way we outline the unsafety of the native calls, and also make it more clear for the 64bit transition.
               Eg "HANDLE" is "void*". If the rule forces you to mark some assembly as unsafe, it's an indication a managed utility
               incapsulating the call and the handle should be provided in one of the already-unsafe assemblies.
            (A) Same rules must apply to members of the structures.
            (B) All of the structures MUST have the [StructLayout(LayoutKind.Sequential)], [NoReorder] attributes, as appropriate.
            </remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.RegisterClassExW(JetBrains.Interop.WinApi.WNDCLASSEXW*)">
            <summary>
            Registers a window class for subsequent use in calls to the CreateWindow or CreateWindowEx function.
            </summary>
            <param name="lpwcx">A pointer to a WNDCLASSEX structure. You must fill the structure with the appropriate class attributes before passing it to the function.</param>
            <returns>
            Type: ATOM. If the function succeeds, the return value is a class atom that uniquely identifies the class being registered. This atom can only be used by the CreateWindow, CreateWindowEx, GetClassInfo, GetClassInfoEx, FindWindow, FindWindowEx, and UnregisterClass functions and the IActiveIMMap::FilterClientWindows method.
            If the function fails, the return value is zero. To get extended error information, call GetLastError.
            </returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.CreateWindowExW(System.UInt32,System.Char*,System.Char*,System.UInt32,System.Int32,System.Int32,System.Int32,System.Int32,System.Void*,System.Void*,System.Void*,System.Void*)">
            <summary>
            Creates an overlapped, pop-up, or child window with an extended window style; otherwise, this function is identical to the CreateWindow function.
            </summary>
            <param name="dwExStyle">The extended window style of the window being created <see cref="T:JetBrains.Interop.WinApi.WindowExStyles"/>.</param>
            <param name="lpClassName">A null-terminated string or a class atom created by a previous call to the RegisterClass or RegisterClassEx function. The atom must be in the low-order word of lpClassName; the high-order word must be zero. If lpClassName is a string, it specifies the window class name. The class name can be any name registered with RegisterClass or RegisterClassEx, provided that the module that registers the class is also the module that creates the window. The class name can also be any of the predefined system class names.</param>
            <param name="lpWindowName">The window name. If the window style specifies a title bar, the window title pointed to by lpWindowName is displayed in the title bar. When using CreateWindow to create controls, such as buttons, check boxes, and static controls, use lpWindowName to specify the text of the control. When creating a static control with the SS_ICON style, use lpWindowName to specify the icon name or identifier. To specify an identifier, use the syntax "#num".</param>
            <param name="dwStyle">The style of the window being created. This parameter can be a combination of the window style values <see cref="T:JetBrains.Interop.WinApi.WindowStyles"/>, plus the control styles.</param>
            <param name="x">The initial horizontal position of the window. For an overlapped or pop-up window, the x parameter is the initial x-coordinate of the window's upper-left corner, in screen coordinates. For a child window, x is the x-coordinate of the upper-left corner of the window relative to the upper-left corner of the parent window's client area. If x is set to CW_USEDEFAULT, the system selects the default position for the window's upper-left corner and ignores the y parameter. CW_USEDEFAULT is valid only for overlapped windows; if it is specified for a pop-up or child window, the x and y parameters are set to zero.</param>
            <param name="y">The initial vertical position of the window. For an overlapped or pop-up window, the y parameter is the initial y-coordinate of the window's upper-left corner, in screen coordinates. For a child window, y is the initial y-coordinate of the upper-left corner of the child window relative to the upper-left corner of the parent window's client area. For a list box y is the initial y-coordinate of the upper-left corner of the list box's client area relative to the upper-left corner of the parent window's client area.</param>
            <param name="nWidth">The width, in device units, of the window. For overlapped windows, nWidth is the window's width, in screen coordinates, or CW_USEDEFAULT. If nWidth is CW_USEDEFAULT, the system selects a default width and height for the window; the default width extends from the initial x-coordinates to the right edge of the screen; the default height extends from the initial y-coordinate to the top of the icon area. CW_USEDEFAULT is valid only for overlapped windows; if CW_USEDEFAULT is specified for a pop-up or child window, the nWidth and nHeight parameter are set to zero.</param>
            <param name="nHeight">The height, in device units, of the window. For overlapped windows, nHeight is the window's height, in screen coordinates. If the nWidth parameter is set to CW_USEDEFAULT, the system ignores nHeight.</param>
            <param name="hWndParent">Type: HWND. A handle to the parent or owner window of the window being created. To create a child window or an owned window, supply a valid window handle. This parameter is optional for pop-up windows. To create a message-only window, supply HWND_MESSAGE or a handle to an existing message-only window.</param>
            <param name="hMenu">Type: HMENU. A handle to a menu, or specifies a child-window identifier, depending on the window style. For an overlapped or pop-up window, hMenu identifies the menu to be used with the window; it can be NULL if the class menu is to be used. For a child window, hMenu specifies the child-window identifier, an integer value used by a dialog box control to notify its parent about events. The application determines the child-window identifier; it must be unique for all child windows with the same parent window.</param>
            <param name="hInstance">ype: HINSTANCE. A handle to the instance of the module to be associated with the window.</param>
            <param name="lpParam">Pointer to a value to be passed to the window through the CREATESTRUCT structure (lpCreateParams member) pointed to by the lParam param of the WM_CREATE message. This message is sent to the created window by this function before it returns.</param>
            <returns>Type: HWND. If the function succeeds, the return value is a handle to the new window. If the function fails, the return value is NULL. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.DefWindowProcW(System.Void*,System.UInt32,System.IntPtr,System.IntPtr)">
            <summary>
            Calls the default window procedure to provide default processing for any window messages that an application does not process. This function ensures that every message is processed. DefWindowProc is called with the same parameters received by the window procedure.
            </summary>
            <param name="hwnd">Type: HWND. A handle to the window.</param>
            <param name="msg">The message.</param>
            <param name="wParam">Additional message information.</param>
            <param name="lParam">Additional message information.</param>
            <returns>Type: LRESULT. The return value is the result of the message processing and depends on the message sent.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.BringWindowToTop(System.Void*)">
            <summary>
            The BringWindowToTop function brings the specified window to the top of the Z order. If the window is a top-level
            window, it is activated. If the window is a child window, the top-level parent window associated with the child window is activated.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.ClientToScreen(System.Void*,JetBrains.Interop.WinApi.POINT*)">
            <summary>
            The ClientToScreen function converts the client-area coordinates of a specified point to screen coordinates. 
            </summary>
            <param name="hWnd">[in] Handle to the window whose client area is used for the conversion. </param>
            <param name="lpPoint">[in/out] Pointer to a POINT structure that contains the client coordinates to be converted. The new screen coordinates are copied into this structure if the function succeeds. </param>
            <returns>If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. Windows NT/2000/XP: To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.CreateDesktopW(System.String,System.String,System.Void*,System.UInt32,System.UInt32,System.Void*)">
            <summary>
            Creates a new desktop, associates it with the current window station of the calling process, and assigns it to the calling thread. The calling process must have an associated window station, either assigned by the system at process creation time or set by the SetProcessWindowStation function.
            </summary>
            <param name="lpszDesktop">The name of the desktop to be created. Desktop names are case-insensitive and may not contain backslash characters (\).</param>
            <param name="lpszDevice">Reserved; must be NULL.</param>
            <param name="pDevmode">Reserved; must be NULL.</param>
            <param name="dwFlags">This parameter can be zero or the following value. <c>DF_ALLOWOTHERACCOUNTHOOK</c> <c>0x0001</c> Enables processes running in other accounts on the desktop to set hooks in this process. </param>
            <param name="dwDesiredAccess">The access to the desktop. For a list of values, see Desktop Security and Access Rights. This parameter must include the DESKTOP_CREATEWINDOW access right, because internally CreateDesktop uses the handle to create a window.</param>
            <param name="lpsa">A pointer to a SECURITY_ATTRIBUTES structure that determines whether the returned handle can be inherited by child processes. If lpsa is NULL, the handle cannot be inherited. The lpSecurityDescriptor member of the structure specifies a security descriptor for the new desktop. If this parameter is NULL, the desktop inherits its security descriptor from the parent window station.</param>
            <returns>If the function succeeds, the return value is a handle to the newly created desktop. If the specified desktop already exists, the function succeeds and returns a handle to the existing desktop. When you are finished using the handle, call the CloseDesktop function to close it. If the function fails, the return value is NULL. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.DestroyIcon(System.Void*)">
            <summary>
            Destroys an icon and frees any memory the icon occupied. 
            </summary>
            <param name="hIcon">[in] Handle to the icon to be destroyed. The icon must not be in use. </param>
            <returns>If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. To get extended error information, call GetLastError. </returns>
            <remarks>
            It is only necessary to call DestroyIcon for icons and cursors created with the following functions: CreateIconFromResourceEx (if called without the LR_SHARED flag), CreateIconIndirect, and CopyIcon. Do not use this function to destroy a shared icon. A shared icon is valid as long as the module from which it was loaded remains in memory. The following functions obtain a shared icon: LoadIcon, LoadImage (if you use the LR_SHARED flag), CopyImage (if you use the LR_COPYRETURNORG flag and the hImage parameter is a shared icon), CreateIconFromResource, CreateIconFromResourceEx (if you use the LR_SHARED flag) 
            </remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.DestroyWindow(System.Void*)">
            <summary>
            The DestroyWindow function destroys the specified window. The function sends WM_DESTROY and WM_NCDESTROY messages to the window to deactivate it and remove the keyboard focus from it. The function also destroys the window's menu, flushes the thread message queue, destroys timers, removes clipboard ownership, and breaks the clipboard viewer chain (if the window is at the top of the viewer chain). If the specified window is a parent or owner window, DestroyWindow automatically destroys the associated child or owned windows when it destroys the parent or owner window. The function first destroys child or owned windows, and then it destroys the parent or owner window. DestroyWindow also destroys modeless dialog boxes created by the CreateDialog function.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.DispatchMessageW(JetBrains.Interop.WinApi.MSG*)">
            <summary>
            The DispatchMessage function dispatches a message to a window procedure. It is typically used to dispatch a message retrieved by the GetMessage function.
            </summary>
            <param name="lpmsg">[in] Pointer to an MSG structure that contains the message.</param>
            <returns>The return value specifies the value returned by the window procedure. Although its meaning depends on the message being dispatched, the return value generally is ignored.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.EnableWindow(System.Void*,System.Int32)">
            <summary>
            The EnableWindow function enables or disables mouse and keyboard input to the specified window or control. When input is disabled, the window does not receive input such as mouse clicks and key presses. When input is enabled, the window receives all input.
            </summary>
            <param name="hWnd">[in] Handle to the window to be enabled or disabled.</param>
            <param name="bEnable">[in] Specifies whether to enable or disable the window. If this parameter is TRUE, the window is enabled. If the parameter is FALSE, the window is disabled.</param>
            <returns>If the window was previously disabled, the return value is nonzero. If the window was not previously disabled, the return value is zero.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.EnumChildWindows(System.Void*,System.Void*,System.IntPtr)">
            <summary>
            The EnumChildWindows function enumerates the child windows that belong to the specified parent window by passing the handle to each child window, in turn, to an application-defined callback function. EnumChildWindows continues until the last child window is enumerated or the callback function returns FALSE.
            </summary>
            <param name="hWndParent">[in] Handle to the parent window whose child windows are to be enumerated. If this parameter is NULL, this function is equivalent to EnumWindows. Windows 95/98/Me: hWndParent cannot be NULL.</param>
            <param name="lpEnumFunc">[in] Pointer to an application-defined callback function. For more information, see EnumChildProc.</param>
            <param name="lParam">[in] Specifies an application-defined value to be passed to the callback function.</param>
            <returns>Not used.</returns>
            <remarks>If a child window has created child windows of its own, EnumChildWindows enumerates those windows as well. A child window that is moved or repositioned in the Z order during the enumeration process will be properly enumerated. The function does not enumerate a child window that is destroyed before being enumerated or that is created during the enumeration process. </remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.EnumThreadWindows(System.UInt32,System.Void*,System.IntPtr)">
            <summary>
            The EnumThreadWindows function enumerates all nonchild windows associated with a thread by passing the handle to each window, in turn, to an application-defined callback function. EnumThreadWindows continues until the last window is enumerated or the callback function returns FALSE. To enumerate child windows of a particular window, use the EnumChildWindows function. 
            </summary>
            <param name="dwThreadId">[in] Identifies the thread whose windows are to be enumerated. </param>
            <param name="lpfn">[in] Pointer to an application-defined callback function. For more information, see EnumThreadWndProc. </param>
            <param name="lParam">[in] Specifies an application-defined value to be passed to the callback function. </param>
            <returns>If the callback function returns TRUE for all windows in the thread specified by dwThreadId, the return value is TRUE. If the callback function returns FALSE on any enumerated window, or if there are no windows found in the thread specified by dwThreadId, the return value is FALSE.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.EnumWindows(System.Void*,System.IntPtr)">
            <summary>
            The EnumWindows function enumerates all top-level windows on the screen by passing the handle to each window, in turn, to an application-defined callback function. EnumWindows continues until the last top-level window is enumerated or the callback function returns FALSE. 
            </summary>
            <param name="lpEnumFunc">[in] Pointer to an application-defined callback function. For more information, see EnumWindowsProc. </param>
            <param name="lParam">[in] Specifies an application-defined value to be passed to the callback function. </param>
            <returns>If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. To get extended error information, call GetLastError.  If EnumWindowsProc returns zero, the return value is also zero. In this case, the callback function should call SetLastError to obtain a meaningful error code to be returned to the caller of EnumWindows. </returns>
            <remarks>
            The EnumWindows function does not enumerate child windows, with the exception of a few top-level windows owned by the system that have the WS_CHILD style.
            This function is more reliable than calling the GetWindow function in a loop. An application that calls GetWindow to perform this task risks being caught in an infinite loop or referencing a handle to a window that has been destroyed. 
            </remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.FillRect(System.Void*,JetBrains.Interop.WinApi.RECT*,System.Void*)">
            <summary>
            The FillRect function fills a rectangle by using the specified brush. This function includes the left and top borders, but excludes the right and bottom borders of the rectangle.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.FlashWindowEx(JetBrains.Interop.WinApi.Declarations.Structures.FLASHWINFO*)">
            <summary>
            The SetForegroundWindow function puts the thread that created the specified window into the foreground and
            activates the window. Keyboard input is directed to the window, and various visual cues are changed for the user.
            The system assigns a slightly higher priority to the thread that created the foreground window than it does to other threads.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.GetActiveWindow">
            <summary>
            The GetActiveWindow function retrieves the window handle to the active window attached to the calling thread's message queue. 
            </summary>
            <returns>The return value is the handle to the active window attached to the calling thread's message queue. Otherwise, the return value is NULL. </returns>
            <remarks>To get the handle to the foreground window, you can use GetForegroundWindow. Windows 98/Me and Windows NT 4.0 SP3 and later: To get the window handle to the active window in the message queue for another thread, use GetGUIThreadInfo.</remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.GetAncestor(System.Void*,System.UInt32)">
            <summary>
            The GetAncestor function retrieves the handle to the ancestor of the specified window. 
            </summary>
            <param name="hwnd">[in] Handle to the window whose ancestor is to be retrieved. If this parameter is the desktop window, the function returns <c>NULL</c>. </param>
            <param name="gaFlags">[in] Specifies the ancestor to be retrieved. This parameter can be one of the following values.</param>
            <returns>The return value is the handle to the ancestor window.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.GetClassNameW(System.Void*,System.Char*,System.Int32)">
            <summary>
            The GetClassName function retrieves the name of the class to which the specified window belongs. 
            </summary>
            <param name="hWnd">[in] Handle to the window and, indirectly, the class to which the window belongs. </param>
            <param name="lpClassName">[out] Pointer to the buffer that is to receive the class name string. </param>
            <param name="nMaxCount">[in] Specifies the length, in TCHAR, of the buffer pointed to by the lpClassName parameter. The class name string is truncated if it is longer than the buffer and is always null-terminated. </param>
            <returns>If the function succeeds, the return value is the number of TCHAR copied to the specified buffer. If the function fails, the return value is zero. To get extended error information, call GetLastError. </returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.GetClientRect(System.Void*,JetBrains.Interop.WinApi.RECT*)">
            <summary>
            The GetClientRect function retrieves the coordinates of a window's client area. The client coordinates specify the upper-left and lower-right corners of the client area. Because client coordinates are relative to the upper-left corner of a window's client area, the coordinates of the upper-left corner are (0,0). 
            </summary>
            <param name="hWnd">[in] Handle to the window whose client coordinates are to be retrieved. </param>
            <param name="lpRect">[out] Pointer to a RECT structure that receives the client coordinates. The left and top members are zero. The right and bottom members contain the width and height of the window. </param>
            <returns>If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. To get extended error information, call GetLastError.</returns>
            <remarks>In conformance with conventions for the RECT structure, the bottom-right coordinates of the returned rectangle are exclusive. In other words, the pixel at (right, bottom) lies immediately outside the rectangle.</remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.GetCursorInfo(JetBrains.Interop.WinApi.Declarations.Structures.CURSORINFO*)">
            <summary>
            The GetCursorInfo function retrieves information about the global cursor.
            </summary>
            <param name="pci">Pointer to a CURSORINFO structure that receives the information. Note that you must set CURSORINFO.cbSize to sizeof(CURSORINFO) before calling this function.</param>
            <returns>If the function succeeds, the return value is nonzero. 
            If the function fails, the return value is zero. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.GetCursorPos(JetBrains.Interop.WinApi.POINT*)">
            <summary>
            Retrieves the cursor's position, in screen coordinates.
            </summary>
            <param name="lpPoint">[out] Pointer to a POINT structure that receives the screen coordinates of the cursor.</param>
            <returns>Returns nonzero if successful or zero otherwise. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.GetDlgItem(System.Void*,System.Int32)">
            <summary>
            The GetDlgItem function retrieves a handle to a control in the specified dialog box. 
            </summary>
            <param name="hDlg">[in] Handle to the dialog box that contains the control. </param>
            <param name="nIDDlgItem">[in] Specifies the identifier of the control to be retrieved.</param>
            <returns>If the function succeeds, the return value is the window handle of the specified control. 
            If the function fails, the return value is NULL, indicating an invalid dialog box handle or a nonexistent control. To get extended error information, call GetLastError.</returns>
            <remarks>You can use the GetDlgItem function with any parent-child window pair, not just with dialog boxes. As long as the hDlg parameter specifies a parent window and the child window has a unique identifier (as specified by the hMenu parameter in the CreateWindow or CreateWindowEx function that created the child window), GetDlgItem returns a valid handle to the child window.</remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.GetFocus">
            <summary>
            The GetFocus function retrieves the handle to the window that has the keyboard focus, if the window is attached to the calling thread's message queue. 
            </summary>
            <returns>The return value is the handle to the window with the keyboard focus. If the calling thread's message queue does not have an associated window with the keyboard focus, the return value is <c>NULL</c>.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.GetForegroundWindow">
            <summary>
            The GetForegroundWindow function returns a handle to the foreground window (the window with which the user is currently working). The system assigns a slightly higher priority to the thread that creates the foreground window than it does to other threads. 
            </summary>
            <returns>The return value is a handle to the foreground window. The foreground window can be NULL in certain circumstances, such as when a window is losing activation. </returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.GetGUIThreadInfo(System.UInt32,JetBrains.Interop.WinApi.GUITHREADINFO*)">
            <summary>
            Retrieves information about the active window or a specified graphical user interface (GUI) thread.
            </summary>
            <param name="idThread">Identifies the thread for which information is to be retrieved. To retrieve this value, use the GetWindowThreadProcessId function. If this parameter is NULL, the function returns information for the foreground thread.</param>
            <param name="lpgui">Pointer to a <see cref="T:JetBrains.Interop.WinApi.GUITHREADINFO"/> structure that receives information describing the thread. Note that you must set <c>GUITHREADINFO.cbSize</c> to <c>sizeof(GUITHREADINFO)</c> before calling this function.</param>
            <returns>If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. To get extended error information, call GetLastError.</returns>
            <remarks>
            This function succeeds even if the active window is not owned by the calling process. If the specified thread does not exist or have an input queue, the function will fail. 
            This function is useful for retrieving out-of-context information about a thread. The information retrieved is the same as if an application retrieved the information about itself. 
            </remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.GetKeyState(System.Int32)">
            <summary>
            The GetKeyState function retrieves the status of the specified virtual key. The status specifies whether the key is up, down, or toggled (on, off—alternating each time the key is pressed). 
            </summary>
            <param name="nVirtKey">
            [in] Specifies a virtual key. If the desired virtual key is a letter or digit (A through Z, a through z, or 0 through 9), nVirtKey must be set to the ASCII value of that character. For other keys, it must be a virtual-key code.
            If a non-English keyboard layout is used, virtual keys with values in the range ASCII A through Z and 0 through 9 are used to specify most of the character keys. For example, for the German keyboard layout, the virtual key of value ASCII O (0x4F) refers to the "o" key, whereas VK_OEM_1 refers to the "o with umlaut" key.
            </param>
            <returns>
            The return value specifies the status of the specified virtual key, as follows:
            • If the high-order bit is 1, the key is down; otherwise, it is up.
            • If the low-order bit is 1, the key is toggled. A key, such as the CAPS LOCK key, is toggled if it is turned on. The key is off and untoggled if the low-order bit is 0. A toggle key's indicator light (if any) on the keyboard will be on when the key is toggled, and off when the key is untoggled.
            </returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.GetKeyboardState(System.Byte[])">
            <summary>
            Copies the status of the 256 virtual keys to the specified buffer.
            </summary>
            <param name="lpKeyState">[out] When the function returns, each member of the array pointed to by the lpKeyState parameter contains status data for a virtual key. If the high-order bit is 1, the key is down; otherwise, it is up. If the key is a toggle key, for example CAPS LOCK, then the low-order bit is 1 when the key is toggled and is 0 if the key is untoggled. The low-order bit is meaningless for non-toggle keys.</param>
            <returns>If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.GetMessageW(JetBrains.Interop.WinApi.MSG*,System.Void*,System.UInt32,System.UInt32)">
            <summary>
            The GetMessage function retrieves a message from the calling thread's message queue. The function dispatches incoming sent messages until a posted message is available for retrieval. Unlike GetMessage, the <see cref="M:JetBrains.Interop.WinApi.User32Dll.PeekMessageW(JetBrains.Interop.WinApi.MSG*,System.Void*,System.UInt32,System.UInt32,System.UInt32)"/> function does not wait for a message to be posted before returning.
            </summary>
            <param name="lpMsg">[out] Pointer to an MSG structure that receives message information from the thread's message queue.</param>
            <param name="hWnd">[in] Handle to the window whose messages are to be retrieved. The window must belong to the current thread. If hWnd is NULL, GetMessage retrieves messages for any window that belongs to the current thread, and any messages on the current thread's message queue whose hwnd value is NULL (see the MSG structure). Therefore if hWnd is NULL, both window messages and thread messages are processed. If hWnd is -1, GetMessage retrieves only messages on the current thread's message queue whose hwnd value is NULL, that is, thread messages as posted by PostMessage (when the hWnd parameter is NULL) or PostThreadMessage.</param>
            <param name="wMsgFilterMin">[in] Specifies the integer value of the lowest message value to be retrieved. Use WM_KEYFIRST to specify the first keyboard message or WM_MOUSEFIRST to specify the first mouse message. Windows XP: Use WM_INPUT here and in wMsgFilterMax to specify only the WM_INPUT messages. If wMsgFilterMin and wMsgFilterMax are both zero, GetMessage returns all available messages (that is, no range filtering is performed).</param>
            <param name="wMsgFilterMax">[in] Specifies the integer value of the highest message value to be retrieved. Use WM_KEYLAST to specify the last keyboard message or WM_MOUSELAST to specify the last mouse message. Windows XP: Use WM_INPUT here and in wMsgFilterMin to specify only the WM_INPUT messages. If wMsgFilterMin and wMsgFilterMax are both zero, GetMessage returns all available messages (that is, no range filtering is performed).</param>
            <returns>If the function retrieves a message other than WM_QUIT, the return value is nonzero. If the function retrieves the WM_QUIT message, the return value is zero. If there is an error, the return value is -1. For example, the function fails if hWnd is an invalid window handle or lpMsg is an invalid pointer. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.GetParent(System.Void*)">
            <summary>
            The GetParent function retrieves a handle to the specified window's parent or owner. To retrieve a handle to a specified ancestor, use the GetAncestor function.
            </summary>
            <param name="hWnd">[in] Handle to the window whose parent window handle is to be retrieved. </param>
            <returns>If the window is a child window, the return value is a handle to the parent window. If the window is a top-level window, the return value is a handle to the owner window. If the window is a top-level unowned window or if the function fails, the return value is NULL. To get extended error information, call GetLastError. For example, this would determine, when the function returns NULL, if the function failed or the window was a top-level window.</returns>
            <remarks>Note that, despite its name, this function can return an owner window instead of a parent window. To obtain the parent window and not the owner, use GetAncestor with the GA_PARENT flag.</remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.GetSystemMetrics(System.Int32)">
            <summary>
            Retrieves the specified system metric or system configuration setting.
            </summary>
            <seealso cref="T:JetBrains.Interop.WinApi.SystemMetricsCodes"/>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.GetThreadDesktop(System.UInt32)">
            <summary>
            Retrieves a handle to the desktop assigned to the specified thread. Windows Me/98/95:  The system does not support multiple desktops, so GetThreadDesktop always returns the same value.
            </summary>
            <param name="dwThreadId">A handle to the thread. The GetCurrentThreadId and CreateProcess functions return thread identifiers.</param>
            <returns>If the function succeeds, the return value is a handle to the desktop associated with the specified thread. You do not need to call the CloseDesktop function to close the returned handle. If the function fails, the return value is NULL. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.GetWindowLongPtrW(System.Void*,System.Int32)">
            <summary>
            The GetWindowLongPtrW function retrieves information about the specified window. The function also retrieves the value at a specified offset into the extra window memory.
            </summary>
            <remarks>void* is used instead of IntPtr here for safer casts on x64 systems: IntPtr is explicitly checked and throws an overflow exception.</remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.GetWindowRect(System.Void*,JetBrains.Interop.WinApi.RECT*)">
            <summary>
            The <see cref="M:JetBrains.Interop.WinApi.User32Dll.GetWindowRect(System.Void*,JetBrains.Interop.WinApi.RECT*)"/> function retrieves the dimensions of the bounding rectangle of the specified window. The dimensions are given in screen coordinates that are relative to the upper-left corner of the screen.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.GetWindowTextW(System.Void*,System.Char*,System.Int32)">
            <summary>
            The GetWindowText function copies the text of the specified window's title bar (if it has one) into a buffer. If the specified window is a control, the text of the control is copied. However, GetWindowText cannot retrieve the text of a control in another application.
            </summary>
            <param name="hWnd">[in] Handle to the window or control containing the text. </param>
            <param name="lpString">[out] Pointer to the buffer that will receive the text. If the string is as long or longer than the buffer, the string is truncated and terminated with a NULL character</param>
            <param name="nMaxCount">[in] Specifies the maximum number of characters to copy to the buffer, including the NULL character. If the text exceeds this limit, it is truncated.</param>
            <returns>If the function succeeds, the return value is the length, in characters, of the copied string, not including the terminating NULL character. If the window has no title bar or text, if the title bar is empty, or if the window or control handle is invalid, the return value is zero. To get extended error information, call GetLastError. This function cannot retrieve the text of an edit control in another application.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.GetWindowThreadProcessId(System.Void*,System.UInt32*)">
            <summary>
            The GetWindowThreadProcessId function retrieves the identifier of the thread that created the specified window and, optionally, the identifier of the process that created the window.
            </summary>
            <param name="hWnd">[in] Handle to the window. </param>
            <param name="lpdwProcessId">[out] Pointer to a variable that receives the process identifier. If this parameter is not NULL, GetWindowThreadProcessId copies the identifier of the process to the variable; otherwise, it does not. </param>
            <returns>The return value is the identifier of the thread that created the window. </returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.InvalidateRect(System.Void*,JetBrains.Interop.WinApi.RECT*,System.Int32)">
            <summary>
            The InvalidateRect function adds a rectangle to the specified window's update region. The update region represents the portion of the window's client area that must be redrawn. 
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.IsChild(System.Void*,System.Void*)">
            <summary>
            The IsChild function tests whether a window is a child window or descendant window of a specified parent window. A child window is the direct descendant of a specified parent window if that parent window is in the chain of parent windows; the chain of parent windows leads from the original overlapped or pop-up window to the child window. 
            </summary>
            <param name="hWndParent">[in] Handle to the parent window. </param>
            <param name="hWnd">[in] Handle to the window to be tested. </param>
            <returns>If the window is a child or descendant window of the specified parent window, the return value is nonzero. If the window is not a child or descendant window of the specified parent window, the return value is zero.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.IsIconic(System.Void*)">
            <summary>
            Determines whether the specified window is minimized (iconic). 
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.IsWindow(System.Void*)">
            <summary>
            The IsWindow function determines whether the specified window handle identifies an existing window.
            </summary>
            <param name="hWnd">[in] Handle to the window to test.</param>
            <returns>If the window handle identifies an existing window, the return value is nonzero. If the window handle does not identify an existing window, the return value is zero.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.IsWindowEnabled(System.Void*)">
            <summary>
            The IsWindowEnabled function determines whether the specified window is enabled for mouse and keyboard input. 
            </summary>
            <param name="hWnd">[in] Handle to the window to test.</param>
            <returns>If the window is enabled, the return value is nonzero. If the window is not enabled, the return value is zero.</returns>
            <remarks>A child window receives input only if it is both enabled and visible.</remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.IsWindowVisible(System.Void*)">
            <summary>
            The IsWindowVisible function retrieves the visibility state of the specified window.
            </summary>
            <param name="hWnd">[in] Handle to the window to test.</param>
            <returns>If the specified window, its parent window, its parent's parent window, and so forth, have the WS_VISIBLE style, the return value is nonzero. Otherwise, the return value is zero. Because the return value specifies whether the window has the WS_VISIBLE style, it may be nonzero even if the window is totally obscured by other windows.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.IsZoomed(System.Void*)">
            <summary>
            The IsZoomed function return true is windows is maximized. 
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.IsWindowUnicode(System.Void*)">
            <summary>
            Determines whether the specified window is a native Unicode window.
            </summary>
            <param name="hWnd">[in] Handle to the window to be tested.</param>
            <returns>If the window is a native Unicode window, the return value is nonzero. If the window is not a native Unicode window, the return value is zero. The window is a native ANSI window..</returns>
            <remarks>
            The character set of a window is determined by the use of the RegisterClass function. 
            If the window class was registered with the ANSI version of RegisterClass (RegisterClassA), the character set of the window is ANSI. 
            If the window class was registered with the Unicode version of RegisterClass (RegisterClassW), the character set of the window is Unicode.
            
            The system does automatic two-way translation (Unicode to ANSI) for window messages. 
            For example, if an ANSI window message is sent to a window that uses the Unicode character set, the system translates that message into a Unicode message before calling the window procedure. 
            The system calls IsWindowUnicode to determine whether to translate the message.
            </remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.LoadCursorW(System.Void*,System.Char*)">
            <summary>
            The LoadCursor function loads the specified cursor resource from the executable (.EXE) file associated with an application instance.
            </summary>
            <param name="hInstance">[in] Handle to an instance of the module whose executable file contains the cursor to be loaded.</param>
            <param name="lpCursorName">[in] Pointer to a null-terminated string that contains the name of the cursor resource to be loaded. Alternatively, this parameter can consist of the resource identifier in the low-order word and zero in the high-order word. The MAKEINTRESOURCE macro can also be used to create this value. To use one of the predefined cursors, the application must set the hInstance parameter to NULL and the lpCursorName parameter to one the following values: <see cref="T:JetBrains.Interop.WinApi.StockCursors"/></param>
            <returns>If the function succeeds, the return value is the handle to the newly loaded cursor.
            If the function fails, the return value is NULL. To get extended error information, call GetLastError. </returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.LoadStringW(System.Void*,System.UInt32,System.UInt16*,System.Int32)">
            <summary>
            The LoadString function loads a string resource from the executable file associated with a specified module, copies the string into a buffer, and appends a terminating NULL character. 
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.MapWindowPoints(System.Void*,System.Void*,JetBrains.Interop.WinApi.POINT*,System.UInt32)">
             <summary>
             The MapWindowPoints function converts (maps) a set of points from a coordinate space relative to one window to a coordinate space relative to another window. 
             </summary>
             <param name="hWndFrom">[in] Handle to the window from which points are converted. If this parameter is NULL or HWND_DESKTOP, the points are presumed to be in screen coordinates. </param>
             <param name="hWndTo">[in] Handle to the window to which points are converted. If this parameter is NULL or HWND_DESKTOP, the points are converted to screen coordinates. </param>
             <param name="lpPoints">[in/out] Pointer to an array of POINT structures that contain the set of points to be converted. The points are in device units. This parameter can also point to a RECT structure, in which case the cPoints parameter should be set to 2. </param>
             <param name="cPoints">[in] Specifies the number of POINT structures in the array pointed to by the lpPoints parameter. </param>
             <returns>If the function succeeds, the low-order word of the return value is the number of pixels added to the horizontal coordinate of each source point in order to compute the horizontal coordinate of each destination point; the high-order word is the number of pixels added to the vertical coordinate of each source point in order to compute the vertical coordinate of each destination point. If the function fails, the return value is zero. Call SetLastError prior to calling this method to differentiate an error return value from a legitimate "0" return value.  Windows NT/2000/XP: To get extended error information, call GetLastError.</returns>
             <remarks>If hWndFrom or hWndTo (or both) are mirrored windows (that is, have WS_EX_LAYOUTRTL extended style), MapWindowPoints will automatically adjust mirrored coordinates if you pass two or less points in lpPoints. If you pass more than two points, the function will not fail but it will return erroneous positions. Thus, to guarantee the correct transformation of rectangle coordinates, you must call MapWindowPoints with two or less points at a time, as shown in the following example:
             <code>
               RECT        rc[10];
            
               for(int i =0; i &lt; (sizeof(rc)/sizeof(rc[0])); i++)
               {
                   MapWindowPoints(hWnd1, hWnd2, (LPPOINT)(&amp;rc[i]), (sizeof(RECT)/sizeof(POINT)) );
               }
             </code></remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.MessageBoxW(System.Void*,System.String,System.String,System.UInt32)">
            <summary>
            The MessageBox function creates, displays, and operates a message box. The message box contains an application-defined message and title, along with any combination of predefined icons and push buttons.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.MsgWaitForMultipleObjects(System.UInt32,System.Void**,System.Int32,System.UInt32,System.UInt32)">
            <summary>
            Waits until one or all of the specified objects are in the signaled state or the time-out interval elapses. The objects can include input event objects, which you specify using the dwWakeMask parameter. To enter an alertable wait state, use the <see cref="M:JetBrains.Interop.WinApi.User32Dll.MsgWaitForMultipleObjectsEx(System.UInt32,System.Void**,System.UInt32,System.UInt32,System.UInt32)"/> function.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.MsgWaitForMultipleObjectsEx(System.UInt32,System.Void**,System.UInt32,System.UInt32,System.UInt32)">
            <summary>
            Waits until one or all of the specified objects are in the signaled state, an I/O completion routine or asynchronous procedure call (APC) is queued to the thread, or the time-out interval elapses. The array of objects can include input event objects, which you specify using the dwWakeMask parameter.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.OpenDesktopW(System.String,System.UInt32,System.Int32,System.UInt32)">
            <summary>
            Opens the specified desktop object.
            </summary>
            <param name="lpszDesktop">The name of the desktop to be opened. Desktop names are case-insensitive. This desktop must belong to the current window station.</param>
            <param name="dwFlags">This parameter can be zero or the following value. <c>DF_ALLOWOTHERACCOUNTHOOK</c> <c>0x0001</c> Allows processes running in other accounts on the desktop to set hooks in this process.</param>
            <param name="fInherit">If this value is TRUE, processes created by this process will inherit the handle. Otherwise, the processes do not inherit this handle.</param>
            <param name="dwDesiredAccess">The access to the desktop. For a list of access rights, see Desktop Security and Access Rights.</param>
            <returns>If the function succeeds, the return value is a handle to the opened desktop. When you are finished using the handle, call the CloseDesktop function to close it. If the function fails, the return value is NULL. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.OpenWindowStationW(System.String,System.Int32,System.UInt32)">
            <summary>
            Opens the specified window station.
            </summary>
            <param name="lpszWinSta">The name of the window station to be opened. Window station names are case-insensitive. This window station must belong to the current session.</param>
            <param name="fInherit">If this value is TRUE, processes created by this process will inherit the handle. Otherwise, the processes do not inherit this handle.</param>
            <param name="dwDesiredAccess">The access to the window station. For a list of access rights, see Window Station Security and Access Rights.</param>
            <returns>If the function succeeds, the return value is the handle to the specified window station. If the function fails, the return value is NULL. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.PeekMessageW(JetBrains.Interop.WinApi.MSG*,System.Void*,System.UInt32,System.UInt32,System.UInt32)">
            <summary>
            The PeekMessage function dispatches incoming sent messages, checks the thread message queue for a posted message, and retrieves the message (if any exist).
            </summary>
            <param name="lpMsg">[out] Pointer to an MSG structure that receives message information.</param>
            <param name="hWnd">[in] Handle to the window whose messages are to be retrieved. The window must belong to the current thread. 
            If hWnd is NULL, PeekMessage retrieves messages for any window that belongs to the current thread, and any messages on the current thread's message queue whose hwnd value is NULL (see the MSG structure). Therefore if hWnd is NULL, both window messages and thread messages are processed.
            If hWnd is -1, PeekMessage retrieves only messages on the current thread's message queue whose hwnd value is NULL, that is, thread messages as posted by PostMessage (when the hWnd parameter is NULL) or PostThreadMessage.
            </param>
            <param name="wMsgFilterMin">[in] Specifies the value of the first message in the range of messages to be examined. Use WM_KEYFIRST to specify the first keyboard message or WM_MOUSEFIRST to specify the first mouse message. If wMsgFilterMin and wMsgFilterMax are both zero, PeekMessage returns all available messages (that is, no range filtering is performed).</param>
            <param name="wMsgFilterMax">[in] Specifies the value of the last message in the range of messages to be examined. Use WM_KEYLAST to specify the last keyboard message or WM_MOUSELAST to specify the last mouse message. If wMsgFilterMin and wMsgFilterMax are both zero, PeekMessage returns all available messages (that is, no range filtering is performed).</param>
            <param name="wRemoveMsg">[in] Specifies how messages are handled. This parameter can be one of the following values. PM_NOREMOVE Messages are not removed from the queue after processing by PeekMessage. PM_REMOVE Messages are removed from the queue after processing by PeekMessage. You can optionally combine the value PM_NOYIELD with either PM_NOREMOVE or PM_REMOVE. This flag prevents the system from releasing any thread that is waiting for the caller to go idle (see WaitForInputIdle). By default, all message types are processed. To specify that only certain message should be processed, specify one or more of the following values. PM_QS_INPUT Windows 98/Me, Windows 2000/XP: Process mouse and keyboard messages. PM_QS_PAINT Windows 98/Me, Windows 2000/XP: Process paint messages. PM_QS_POSTMESSAGE Windows 98/Me, Windows 2000/XP: Process all posted messages, including timers and hotkeys.  PM_QS_SENDMESSAGE Windows 98/Me, Windows 2000/XP: Process all sent messages.</param>
            <returns>If a message is available, the return value is nonzero. If no messages are available, the return value is zero.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.PostMessageW(System.Void*,System.UInt32,System.IntPtr,System.IntPtr)">
            <summary>
            The PostMessageW function places (posts) a message in the message queue associated with the thread that created the specified window and returns without waiting for the thread to process the message. To post a message in the message queue associate with a thread, use the PostThreadMessage function.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.PostThreadMessageW(System.UInt32,System.UInt32,System.IntPtr,System.IntPtr)">
            <summary>
            The PostThreadMessage function posts a message to the message queue of the specified thread. It returns without waiting for the thread to process the message.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.PostQuitMessage(System.Int32)">
            <summary>
            Indicates to the system that a thread has made a request to terminate (quit). It is typically used in response to a WM_DESTROY message.
            </summary>
            <param name="exitCode">[in] The application exit code. This value is used as the wParam parameter of the WM_QUIT message.</param>
            <returns>This function does not return a value.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.WaitMessage">
            <summary>
            Yields control to other threads when a thread has no other messages in its message queue. 
            The WaitMessage function suspends the thread and does not return until a new message is placed in the thread's message queue.
            </summary>
            <returns>If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.PrintWindow(System.Void*,System.Void*,System.UInt32)">
            <summary>
            The PrintWindow function copies a visual window into the specified device context (DC), typically a printer DC.
            </summary>
            <param name="hwnd">Window to copy</param>
            <param name="hdcBlt">HDC to print into</param>
            <param name="nFlags">Optional flags</param>
            <returns>If the function succeeds, it returns a nonzero value.
            If the function fails, it returns zero.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.ScreenToClient(System.Void*,JetBrains.Interop.WinApi.POINT*)">
            <summary>
            The ScreenToClient function converts the screen coordinates of a specified point on the screen to client-area coordinates. 
            </summary>
            <param name="hWnd">[in] Handle to the window whose client area will be used for the conversion. </param>
            <param name="lpPoint">[in] Pointer to a POINT structure that specifies the screen coordinates to be converted. </param>
            <returns>If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. Windows NT/2000/XP: To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.SendMessageW(System.Void*,System.UInt32,System.IntPtr,System.IntPtr)">
            <summary>
            The SendMessage function sends the specified message to a window or windows. It calls the window procedure for the specified window and does not return until the window procedure has processed the message.
            To send a message and return immediately, use the SendMessageCallback or SendNotifyMessage function. To post a message to a thread's message queue and return immediately, use the PostMessageW or PostThreadMessage function.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.InSendMessage">
            <summary>
            Determines whether the current window procedure is processing a message that was sent from another thread (in the same process or a different process) by a call to the SendMessage function.
            </summary>
            <returns></returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.SendMessageTimeoutW(System.Void*,System.UInt32,System.IntPtr,System.IntPtr,System.UInt32,System.UInt32,System.UInt32*)">
            <summary>
            The function calls the window procedure for the specified window and, if the specified window belongs to a different thread, does not return until the window procedure has processed the message or the specified time-out period has elapsed. If the window receiving the message belongs to the same queue as the current thread, the window procedure is called directly—the time-out value is ignored.
            </summary>
            <param name="hWnd">A handle to the window whose window procedure will receive the message or HWND_BROADCAST.</param>
            <param name="Msg">The message to be sent.</param>
            <param name="wParam">The message parameter.</param>
            <param name="lParam">The message parameter.</param>
            <param name="fuFlags">The behavior of this function (see <see cref="T:JetBrains.Interop.WinApi.Declarations.Constants.SMTO"/>).</param>
            <param name="uTimeout">The duration of the time-out period, in milliseconds. If the message is a broadcast message, each window can use the full time-out period.</param>
            <param name="lpdwResult">The result of the message processing.</param>
            <returns>If the function fails or times out, the return value is 0. To get extended error information, call GetLastError. If GetLastError returns ERROR_TIMEOUT, then the function timed out.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.SendNotifyMessageW(System.Void*,System.UInt32,System.IntPtr,System.IntPtr)">
            <summary>
            Sends the specified message to a window or windows. If the window was created by the calling thread, SendNotifyMessage calls the window procedure for the window and does not return until the window procedure has processed the message. If the window was created by a different thread, SendNotifyMessage passes the message to the window procedure and returns immediately; it does not wait for the window procedure to finish processing the message.
            </summary>
            <param name="hwnd">A handle to the window whose window procedure will receive the message or HWND_BROADCAST.</param>
            <param name="msg">The message to be sent.</param>
            <param name="wParam">The message parameter.</param>
            <param name="lParam">The message parameter.</param>
            <returns>If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.SendMessageCallbackW(System.Void*,System.UInt32,System.IntPtr,System.IntPtr,System.Void*,System.UInt32*)">
            <summary>
            Sends the specified message to a window or windows. It calls the window procedure for the specified window and returns immediately if the window belongs to another thread. After the window procedure processes the message, the system calls the specified callback function, passing the result of the message processing and an application-defined value to the callback function.
            </summary>
            <param name="hwnd">A handle to the window whose window procedure will receive the message or HWND_BROADCAST.</param>
            <param name="msg">The message to be sent.</param>
            <param name="wParam">The message parameter.</param>
            <param name="lParam">The message parameter.</param>
            <param name="lpCallBack">A pointer to a callback function that the system calls after the window procedure processes the message. For more information, see <see cref="T:JetBrains.Interop.WinApi.Functions.SendAsyncProc"/>. If hWnd is HWND_BROADCAST, the system calls the SendAsyncProc callback function once for each top-level window.</param>
            <param name="pdwData">An application-defined value to be sent to the callback function pointed to by the lpCallBack parameter.</param>
            <returns>If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.SetActiveWindow(System.Void*)">
            <summary>
            The SetActiveWindow function activates a window. The window must be attached to the calling thread's message queue. 
            </summary>
            <param name="hWnd">[in] Handle to the top-level window to be activated.</param>
            <returns>If the function succeeds, the return value is the handle to the window that was previously active. If the function fails, the return value is NULL. To get extended error information, call GetLastError.</returns>
            <remarks>
            <para>The SetActiveWindow function activates a window, but not if the application is in the background. The window will be brought into the foreground (top of Z-Order) if its application is in the foreground when the system activates the window. </para>
            <para>If the window identified by the hWnd parameter was created by the calling thread, the active window status of the calling thread is set to hWnd. Otherwise, the active window status of the calling thread is set to NULL.</para>
            <para>By using the AttachThreadInput function, a thread can attach its input processing to another thread. This allows a thread to call SetActiveWindow to activate a window attached to another thread's message queue. </para>
            </remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.SetCursor(System.Void*)">
            <summary>
            The SetCursor function sets the cursor shape. 
            </summary>
            <param name="hCursor">
            [in] 
            Handle to the cursor. The cursor must have been created by the CreateCursor function or loaded by the LoadCursor or LoadImage function. If this parameter is NULL, the cursor is removed from the screen.
            Windows 95/98/Me: The width and height of the cursor must be the values returned by the GetSystemMetrics function for SM_CXCURSOR and SM_CYCURSOR. For Microsoft Windows 95, either the cursor bit depth must match the bit depth of the display or the cursor must be monochrome. However, for Windows 98 and Windows 98, if the cursor bit depth does not match the bit depth of the display then the cursor is converted to 4bpp VGA color. 
            </param>
            <returns>
            The return value is the handle to the previous cursor, if there was one. 
            If there was no previous cursor, the return value is NULL. 
            </returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.SetCursorPos(System.Int32,System.Int32)">
            <summary>
            Moves the cursor to the specified screen coordinates. If the new coordinates are not within the screen rectangle set by the most recent ClipCursor function call, the system automatically adjusts the coordinates so that the cursor stays within the rectangle. 
            </summary>
            <param name="x">The new x-coordinate of the cursor, in screen coordinates. </param>
            <param name="y">The new y-coordinate of the cursor, in screen coordinates. </param>
            <returns>Returns nonzero if successful or zero otherwise. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.SetFocus(System.Void*)">
            <summary>
            The SetFocus function sets the keyboard focus to the specified window. The window must be attached to the calling thread's message queue. The SetFocus function sends a WM_KILLFOCUS message to the window that loses the keyboard focus and a WM_SETFOCUS message to the window that receives the keyboard focus. It also activates either the window that receives the focus or the parent of the window that receives the focus. If a window is active but does not have the focus, any key pressed will produce the WM_SYSCHAR, WM_SYSKEYDOWN, or WM_SYSKEYUP message. If the VK_MENU key is also pressed, the lParam parameter of the message will have bit 30 set. Otherwise, the messages produced do not have this bit set. By using the AttachThreadInput function, a thread can attach its input processing to another thread. This allows a thread to call SetFocus to set the keyboard focus to a window attached to another thread's message queue. 
            </summary>
            <param name="hWnd">[in] Handle to the window that will receive the keyboard input. If this parameter is NULL, keystrokes are ignored. </param>
            <returns>If the function succeeds, the return value is the handle to the window that previously had the keyboard focus. If the hWnd parameter is invalid or the window is not attached to the calling thread's message queue, the return value is NULL. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.SetForegroundWindow(System.Void*)">
            <summary>
            The SetForegroundWindow function puts the thread that created the specified window into the foreground and
            activates the window. Keyboard input is directed to the window, and various visual cues are changed for the user.
            The system assigns a slightly higher priority to the thread that created the foreground window than it does to other threads.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.AllowSetForegroundWindow(System.UInt32)">
            <summary>
            Enables the specified process to set the foreground window using the SetForegroundWindow function. The calling process must already be able to set the foreground window. 
            </summary>
            <param name="dwProcessId">The identifier of the process that will be enabled to set the foreground window. If this parameter is ASFW_ANY ((DWORD)-1), all processes will be enabled to set the foreground window.</param>
            <returns>If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. The function will fail if the calling process cannot set the foreground window. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.SetLayeredWindowAttributes(System.Void*,System.UInt32,System.Byte,System.UInt32)">
            <summary>
            The SetLayeredWindowAttributes function sets the opacity and transparency color key of a layered window.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.SetParent(System.Void*,System.Void*)">
            <summary>
            The SetParent function changes the parent window of the specified child window. 
            An application can use the SetParent function to set the parent window of a pop-up, overlapped, or child window. The new parent window and the child window must belong to the same application. If the window identified by the hWndChild parameter is visible, the system performs the appropriate redrawing and repainting. For compatibility reasons, SetParent does not modify the WS_CHILD or WS_POPUP window styles of the window whose parent is being changed. Therefore, if hWndNewParent is NULL, you should also clear the WS_CHILD bit and set the WS_POPUP style after calling SetParent. Conversely, if hWndNewParent is not NULL and the window was previously a child of the desktop, you should clear the WS_POPUP style and set the WS_CHILD style before calling SetParent. Windows 2000/XP: When you change the parent of a window, you should synchronize the UISTATE of both windows. For more information, see WM_CHANGEUISTATE and WM_UPDATEUISTATE. 
            </summary>
            <param name="hWndChild">[in] Handle to the child window.</param>
            <param name="hWndNewParent">[in] Handle to the new parent window. If this parameter is NULL, the desktop window becomes the new parent window. Windows 2000/XP: If this parameter is HWND_MESSAGE, the child window becomes a message-only window.</param>
            <returns>If the function succeeds, the return value is a handle to the previous parent window. If the function fails, the return value is NULL. To get extended error information, call GetLastError. </returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.SetProcessWindowStation(System.Void*)">
            <summary>
            Assigns the specified window station to the calling process. This enables the process to access objects in the window station such as desktops, the clipboard, and global atoms. All subsequent operations on the window station use the access rights granted to hWinSta.
            </summary>
            <param name="hWinSta">A handle to the window station. This can be a handle returned by the CreateWindowStation, OpenWindowStation, or GetProcessWindowStation function. This window station must be associated with the current session.</param>
            <returns>If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.SetThreadDesktop(System.Void*)">
            <summary>
            Assigns the specified desktop to the calling thread. All subsequent operations on the desktop use the access rights granted to the desktop.
            </summary>
            <param name="hDesktop">A handle to the desktop to be assigned to the calling thread. This handle is returned by the CreateDesktop, GetThreadDesktop, OpenDesktop, or OpenInputDesktop function. This desktop must be associated with the current window station for the process.</param>
            <returns>If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.SetWindowLongPtrW(System.Void*,System.Int32,System.Void*)">
            <summary>
            The SetWindowLongPtrW function changes an attribute of the specified window. The function also sets a value at the specified offset in the extra window memory.
            </summary>
            <remarks>void* is used instead of IntPtr here for safer casts on x64 systems: IntPtr is explicitly checked and throws an overflow exception.</remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.ShowWindow(System.Void*,System.Int32)">
            <summary>
            The ShowWindow function sets the specified window's show state. 
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.SwitchToThisWindow(System.Void*,System.UInt32)">
            <summary>
            The SwitchToThisWindow function is called to switch focus to a specified window and bring it to the foreground.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.TranslateMessage(JetBrains.Interop.WinApi.MSG*)">
            <summary>
            The TranslateMessage function translates virtual-key messages into character messages. The character messages are posted to the calling thread's message queue, to be read the next time the thread calls the <see cref="M:JetBrains.Interop.WinApi.User32Dll.GetMessageW(JetBrains.Interop.WinApi.MSG*,System.Void*,System.UInt32,System.UInt32)"/> or <see cref="M:JetBrains.Interop.WinApi.User32Dll.PeekMessageW(JetBrains.Interop.WinApi.MSG*,System.Void*,System.UInt32,System.UInt32,System.UInt32)"/> function.
            </summary>
            <param name="lpMsg">[in] Pointer to an <see cref="T:JetBrains.Interop.WinApi.MSG"/> structure that contains message information retrieved from the calling thread's message queue by using the GetMessage or PeekMessage function.</param>
            <returns>If the message is translated (that is, a character message is posted to the thread's message queue), the return value is nonzero. If the message is <see cref="F:JetBrains.Interop.WinApi.WindowsMessages.WM_KEYDOWN"/>, <see cref="F:JetBrains.Interop.WinApi.WindowsMessages.WM_KEYUP"/>, <see cref="F:JetBrains.Interop.WinApi.WindowsMessages.WM_SYSKEYDOWN"/>, or <see cref="F:JetBrains.Interop.WinApi.WindowsMessages.WM_SYSKEYUP"/>, the return value is nonzero, regardless of the translation. If the message is not translated (that is, a character message is not posted to the thread's message queue), the return value is zero.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.UpdateLayeredWindow(System.Void*,System.Void*,JetBrains.Interop.WinApi.POINT*,JetBrains.Interop.WinApi.Declarations.Structures.SIZE*,System.Void*,JetBrains.Interop.WinApi.POINT*,System.UInt32,JetBrains.Interop.WinApi.Declarations.Structures.BLENDFUNCTION*,System.UInt32)">
            <summary>
            The UpdateLayeredWindow function updates the position, size, shape, content, and translucency of a layered window.
            </summary>
            <param name="hwnd">[in] Handle to a layered window. A layered window is created by specifying WS_EX_LAYERED when creating the window with the CreateWindowEx function.</param>
            <param name="hdcDst">[in] 
            Handle to a device context (DC) for the screen. This handle is obtained by specifying NULL when calling the function. It is used for palette color matching when the window contents are updated. If hdcDst isNULL, the default palette will be used.
            If hdcSrc is NULL, hdcDst must be NULL.</param>
            <param name="pptDst">[in] Pointer to a POINT structure that specifies the new screen position of the layered window. If the current position is not changing, pptDst can be NULL. </param>
            <param name="psize">[in] Pointer to a SIZE structure that specifies the new size of the layered window. If the size of the window is not changing, psize can be NULL. If hdcSrc is NULL, psize must be NULL.</param>
            <param name="hdcSrc">[in] Handle to a DC for the surface that defines the layered window. This handle can be obtained by calling the CreateCompatibleDC function. If the shape and visual context of the window are not changing, hdcSrc can be NULL.</param>
            <param name="pptSrc">[in] Pointer to a POINT structure that specifies the location of the layer in the device context. If hdcSrc is NULL, pptSrc should be NULL.</param>
            <param name="crKey">[in] Pointer to a COLORREF value that specifies the color key to be used when composing the layered window. To generate a COLORREF, use the RGB macro.</param>
            <param name="pblend">[in] Pointer to a BLENDFUNCTION structure that specifies the transparency value to be used when composing the layered window.</param>
            <param name="dwFlags">[in] This parameter can be one of the following values. <see cref="F:JetBrains.Interop.WinApi.Declarations.Constants.UpdateLayeredWindowFlags.ULW_ALPHA"/>, <see cref="F:JetBrains.Interop.WinApi.Declarations.Constants.UpdateLayeredWindowFlags.ULW_COLORKEY"/>, <see cref="F:JetBrains.Interop.WinApi.Declarations.Constants.UpdateLayeredWindowFlags.ULW_OPAQUE"/>. If hdcSrc is NULL, dwFlags should be zero.</param>
            <returns>If the function succeeds, the return value is nonzero.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.ValidateRect(System.Void*,JetBrains.Interop.WinApi.RECT*)">
            <summary>
            The ValidateRect function validates the client area within a rectangle by removing the rectangle from the update region of the specified window.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.WindowFromPoint(JetBrains.Interop.WinApi.POINT)">
            <summary>
            <para>The WindowFromPoint function retrieves a handle to the window that contains the specified point. </para>
            </summary>
            <param name="Point">[in] Specifies a POINT structure that defines the point to be checked. </param>
            <returns>The return value is a handle to the window that contains the point. If no window exists at the given point, the return value is NULL. If the point is over a static text control, the return value is a handle to the window under the static text control. </returns>
            <remarks>The WindowFromPoint function does not retrieve a handle to a hidden or disabled window, even if the point is within the window. An application should use the ChildWindowFromPoint function for a nonrestrictive search.</remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.RegisterWindowMessageW(System.String)">
            <summary>
            Defines a new window message that is guaranteed to be unique throughout the system. The message value can be used when sending or posting messages.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.GetDesktopWindow">
            <summary>
            Retrieves a handle to the desktop window. The desktop window covers the entire screen. The desktop window is the area on top of which other windows are painted.
            </summary>
            <returns>The return value is a handle to the desktop window.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.mouse_event(System.UInt32,System.UInt32,System.UInt32,System.UInt32,System.UIntPtr)">
            <summary>
            The mouse_event function synthesizes mouse motion and button clicks.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.keybd_event(System.Byte,System.Byte,System.UInt32,System.UIntPtr)">
            <summary>
            Synthesizes a keystroke. The system can use such a synthesized keystroke to generate a <see cref="F:JetBrains.Interop.WinApi.WindowsMessages.WM_KEYUP"/> or <see cref="F:JetBrains.Interop.WinApi.WindowsMessages.WM_KEYDOWN"/> message. The keyboard driver's interrupt handler calls the keybd_event function.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.VkKeyScanW(System.Char)">
            <summary>
            <para>[This function has been superseded by the VkKeyScanEx function. You can still use VkKeyScanW, however, if you do not need to specify a keyboard layout.]</para>
            <para>Translates a character to the corresponding virtual-key code and shift state for the current keyboard.</para>
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.GetAsyncKeyState(System.Int32)">
            <summary>
            Determines whether a key is up or down at the time the function is called, and whether the key was pressed after a previous call to GetAsyncKeyState.
            </summary>
            <returns>If the function succeeds, the return value specifies whether the key was pressed since the last call to GetAsyncKeyState, and whether the key is currently up or down. If the most significant bit is set, the key is down, and if the least significant bit is set, the key was pressed after the previous call to GetAsyncKeyState. However, you should not rely on this last behavior; for more information, see the Remarks.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.SetWindowRgn(System.Void*,System.Void*,System.Int32)">
            <summary>
            The SetWindowRgn function sets the window region of a window. The window region determines the area within the window where the system permits drawing. The system does not display any portion of a window that lies outside of the window region.
            </summary>
            <param name="hWnd"></param>
            <param name="hRgn"></param>
            <param name="bRedraw"></param>
            <returns>If the function succeeds, the return value is nonzero.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.SetWindowPos(System.Void*,System.Void*,System.Int32,System.Int32,System.Int32,System.Int32,System.UInt32)">
            <summary>
            Changes the size, position, and Z order of a child, pop-up, or top-level window. These windows are ordered according to their appearance on the screen. The topmost window receives the highest rank and is the first window in the Z order.
            </summary>
            <param name="hWnd"></param>
            <param name="hWndInsertAfter"></param>
            <param name="X"></param>
            <param name="Y"></param>
            <param name="cx"></param>
            <param name="cy"></param>
            <param name="uFlags"></param>
            <returns>If the function succeeds, the return value is nonzero.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.GetCapture">
            <summary>
            Retrieves a handle to the window (if any) that has captured the mouse. Only one window at a time can capture the mouse; this window receives mouse input whether or not the cursor is within its borders.
            </summary>
            <returns>The return value is a handle to the capture window associated with the current thread. If no window in the thread has captured the mouse, the return value is NULL.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.SetCapture(System.Void*)">
            <summary>
              <para>Sets the mouse capture to the specified window belonging to the current thread.SetCapture captures mouse input either when the mouse is over the capturing window, or when the mouse button was pressed while the mouse was over the capturing window and the button is still down. Only one window at a time can capture the mouse.</para>
              <para>If the mouse cursor is over a window created by another thread, the system will direct mouse input to the specified window only if a mouse button is down.</para>
            </summary>
            <param name="hWnd">A handle to the window in the current thread that is to capture the mouse. </param>
            <returns>The return value is a handle to the window that had previously captured the mouse. If there is no such window, the return value is NULL. </returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.ReleaseCapture">
            <summary>
            Releases the mouse capture from a window in the current thread and restores normal mouse input processing. A window that has captured the mouse receives all mouse input, regardless of the position of the cursor, except when a mouse button is clicked while the cursor hot spot is in the window of another thread.
            </summary>
            <returns></returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.MoveWindow(System.Void*,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
            <summary>
            The MoveWindow function changes the position and dimensions of the specified window. For a top-level window, the position and dimensions are relative to the upper-left corner of the screen. For a child window, they are relative to the upper-left corner of the parent window's client area.
            </summary>
            <param name="hWnd">[in] Handle to the window. </param>
            <param name="X">[in] Specifies the new position of the left side of the window. </param>
            <param name="Y">[in] Specifies the new position of the top of the window. </param>
            <param name="nWidth">[in] Specifies the new width of the window. </param>
            <param name="nHeight">[in] Specifies the new height of the window. </param>
            <param name="bRepaint">[in] Specifies whether the window is to be repainted. If this parameter is TRUE, the window receives a message. If the parameter is FALSE, no repainting of any kind occurs. This applies to the client area, the nonclient area (including the title bar and scroll bars), and any part of the parent window uncovered as a result of moving a child window. </param>
            <returns>If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.BeginPaint(System.Void*,JetBrains.Interop.WinApi.PAINTSTRUCT*)">
            <summary>
            The BeginPaint function prepares the specified window for painting and fills a PAINTSTRUCT structure with information about the painting.
            </summary>
            <param name="hwnd"></param>
            <param name="lpPaint">Pointer to the PAINTSTRUCT structure that will receive painting information.</param>
            <returns>If the function succeeds, the return value is the handle to a display device context for the specified window.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.EndPaint(System.Void*,JetBrains.Interop.WinApi.PAINTSTRUCT*)">
            <summary>
            The EndPaint function marks the end of painting in the specified window. This function is required for each call to the BeginPaint function, but only after painting is complete.
            </summary>
            <param name="hWnd"></param>
            <param name="lpPaint">Pointer to a PAINTSTRUCT structure that contains the painting information retrieved by BeginPaint.</param>
            <returns></returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.ScrollWindowEx(System.Void*,System.Int32,System.Int32,JetBrains.Interop.WinApi.RECT*,JetBrains.Interop.WinApi.RECT*,System.Void*,JetBrains.Interop.WinApi.RECT*,System.UInt32)">
            <summary>
            The ScrollWindowEx function scrolls the contents of the specified window's client area.
            </summary>
            <param name="hWnd">[in] Handle to the window where the client area is to be scrolled. </param>
            <param name="dx">[in] Specifies the amount, in device units, of horizontal scrolling. This parameter must be a negative value to scroll to the left.</param>
            <param name="dy">[in] Specifies the amount, in device units, of vertical scrolling. This parameter must be a negative value to scroll up. </param>
            <param name="prcScroll">[in] Pointer to a RECT structure that specifies the portion of the client area to be scrolled. If this parameter is NULL, the entire client area is scrolled.</param>
            <param name="prcClip">[in] Pointer to a RECT structure that contains the coordinates of the clipping rectangle. Only device bits within the clipping rectangle are affected. Bits scrolled from the outside of the rectangle to the inside are painted; bits scrolled from the inside of the rectangle to the outside are not painted. This parameter may be NULL.</param>
            <param name="hrgnUpdate">[in] Handle to the region that is modified to hold the region invalidated by scrolling. This parameter may be NULL.</param>
            <param name="prcUpdate">[out] Pointer to a RECT structure that receives the boundaries of the rectangle invalidated by scrolling. This parameter may be NULL.</param>
            <param name="flags">[in] Specifies flags that control scrolling. This parameter can be one of the following values. </param>
            <returns>If the function succeeds, the return value is <see cref="F:JetBrains.Interop.WinApi.Constants.RegionResult.SIMPLEREGION" /> (rectangular invalidated region), <see cref="F:JetBrains.Interop.WinApi.Constants.RegionResult.COMPLEXREGION" /> (nonrectangular invalidated region; overlapping rectangles), or <see cref="F:JetBrains.Interop.WinApi.Constants.RegionResult.NULLREGION" /> (no invalidated region).
            If the function fails, the return vaRegionResultcref="RegionResult.ERROR" />. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.GetCaretBlinkTime">
            <summary>
            Retrieves the time required to invert the caret's pixels. The user can set this value. 
            </summary>
            <returns></returns>
            <seealso cref="F:JetBrains.Interop.WinApi.WinDef.INFINITE"/>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.AdjustWindowRectEx(JetBrains.Interop.WinApi.RECT*,System.UInt32,System.Int32,System.UInt32)">
            <summary>
            The AdjustWindowRectEx function calculates the required size of the window rectangle, based on the desired size of the client rectangle. The window rectangle can then be passed to the CreateWindowEx function to create a window whose client area is the desired size.
            </summary>
            <param name="lpRect">[in, out] Pointer to a RECT structure that contains the coordinates of the top-left and bottom-right corners of the desired client area. When the function returns, the structure contains the coordinates of the top-left and bottom-right corners of the window to accommodate the desired client area. </param>
            <param name="dwStyle">[in] Specifies the window style of the window whose required size is to be calculated. Note that you cannot specify the WS_OVERLAPPED style. </param>
            <param name="bMenu">[in] Specifies whether the window has a menu.</param>
            <param name="dwExStyle">[in] Specifies the extended window style of the window whose required size is to be calculated. For more information, see CreateWindowEx.</param>
            <returns>If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. To get extended error information, call GetLastError. </returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.GetDC(System.Void*)">
            <summary>
            The GetDC function retrieves a handle to a device context (DC) for the client area of a specified window or for the entire screen. You can use the returned handle in subsequent GDI functions to draw in the DC. The device context is an opaque data structure, whose values are used internally by GDI.
            The GetDCEx function is an extension to GetDC, which gives an application more control over how and whether clipping occurs in the client area.
            </summary>
            <param name="hWnd"></param>
            <returns></returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.ReleaseDC(System.Void*,System.Void*)">
            <summary>
            The ReleaseDC function releases a device context (DC), freeing it for use by other applications. The effect of the ReleaseDC function depends on the type of DC. It frees only common and window DCs. It has no effect on class or private DCs.
            </summary>
            <param name="hWnd"></param>
            <param name="hDC"></param>
            <returns>The return value indicates whether the DC was released. If the DC was released, the return value is 1.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.DrawFrameControl(System.Void*,JetBrains.Interop.WinApi.RECT*,System.UInt32,System.UInt32)">
            <summary>
            The DrawFrameControl function draws a frame control of the specified type and style.
            </summary>
            <param name="hdc">[in] Handle to the device context of the window in which to draw the control.</param>
            <param name="lprc">[in] Pointer to a RECT structure that contains the logical coordinates of the bounding rectangle for frame control.</param>
            <param name="uType">[in] Specifies the type of frame control to draw. This parameter can be one of the following values. (<see cref="T:JetBrains.Interop.WinApi.Constants.FrameControlType"/>)</param>
            <param name="uState">[in] Specifies the initial state of the frame control. If uType is DFC_BUTTON, uState can be one of the following values. (<see cref="T:JetBrains.Interop.WinApi.Constants.FrameControlState"/>)</param>
            <returns>If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. Windows NT/2000/XP: To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.SetWindowsHookExW(System.Int32,JetBrains.Interop.WinApi.Functions.HOOKPROC,System.Void*,System.UInt32)">
            <summary>
            The SetWindowsHookEx function installs an application-defined hook procedure into a hook chain. You would install a hook procedure to monitor the system for certain types of events. These events are associated either with a specific thread or with all threads in the same desktop as the calling thread.
            </summary>
            <returns>If the function succeeds, the return value is the handle to the hook procedure.
            If the function fails, the return value is NULL. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.SetPropW(System.Void*,System.String,System.Void*)">
            <summary>
            Adds a new entry or changes an existing entry in the property list of the specified window. The function adds a new entry to the list if the specified character string does not exist already in the list. The new entry contains the string and the handle. Otherwise, the function replaces the string's current handle with the specified handle.
            </summary>
            <param name="hWnd"></param>
            <param name="lpString"></param>
            <param name="hData"></param>
            <returns>If the data handle and string are added to the property list, the return value is nonzero.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.RemovePropW(System.Void*,System.String)">
            <summary>
            Removes an entry from the property list of the specified window. The specified character string identifies the entry to be removed.
            </summary>
            <param name="hWnd"></param>
            <param name="lpString"></param>
            <returns>The return value identifies the specified data. If the data cannot be found in the specified property list, the return value is NULL.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.SystemParametersInfoW(System.UInt32,System.UInt32,System.Void*,System.UInt32)">
            <summary>
            Retrieves or sets the value of one of the system-wide parameters. This function can also update the user profile while setting a parameter.
            </summary>
            <param name="uiAction"><see cref="T:JetBrains.Interop.WinApi.Constants.SPI"/></param>
            <param name="uiParam"></param>
            <param name="pvParam"></param>
            <param name="fWinIni"></param>
            <returns>If the function succeeds, the return value is a nonzero value.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.FindWindowW(System.String,System.String)">
            <summary>
            Retrieves a handle to the top-level window whose class name and window name match the specified strings. This function does not search child windows. This function does not perform a case-sensitive search.
            To search child windows, beginning with a specified child window, use the FindWindowEx function.
            </summary>
            <param name="lpClassName"></param>
            <param name="lpWindowName"></param>
            <returns>If the function succeeds, the return value is a handle to the window that has the specified class name and window name.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.OpenClipboard(System.Void*)">
            <summary>
            Opens the clipboard for examination and prevents other applications from modifying the clipboard content.
            </summary>
            <param name="hWndNewOwner">
            A handle to the window to be associated with the open clipboard.
            If this parameter is NULL, the open clipboard is associated with the current task.
            </param>
            <returns>If the function succeeds, the return value is nonzero.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.CloseClipboard">
            <summary>
            Closes the clipboard.
            </summary>
            <returns>If the function succeeds, the return value is nonzero.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.IsClipboardFormatAvailable(System.UInt32)">
            <summary>
            Determines whether the clipboard contains data in the specified format.
            </summary>
            <param name="format">
            A standard or registered clipboard format.
            For a description of the standard clipboard formats, <see cref="T:JetBrains.Interop.WinApi.Constants.StandardClipboardFormats"/>.
            </param>
            <returns>If the clipboard format is available, the return value is nonzero.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.GetClipboardData(System.UInt32)">
            <summary>
            Retrieves data from the clipboard in a specified format. The clipboard must have been opened previously.
            </summary>
            <param name="uFormat">
            A clipboard format.
            For a description of the standard clipboard formats, <see cref="T:JetBrains.Interop.WinApi.Constants.StandardClipboardFormats"/>.</param>
            <returns>If the function succeeds, the return value is the handle to a clipboard object in the specified format.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.RegisterClipboardFormatW(System.String)">
            <summary>
            Registers a new clipboard format. This format can then be used as a valid clipboard format.
            </summary>
            <param name="lpszFormat">The name of the new format.</param>
            <returns>If the function succeeds, the return value identifies the registered clipboard format.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.EnumDisplayMonitors(System.Void*,JetBrains.Interop.WinApi.RECT*,System.Void*,System.IntPtr)">
            <summary>
            The EnumDisplayMonitors function enumerates display monitors (including invisible pseudo-monitors associated with the mirroring drivers) that intersect a region formed by the intersection of a specified clipping rectangle and the visible region of a device context. EnumDisplayMonitors calls an application-defined MonitorEnumProc callback function once for each monitor that is enumerated. Note that GetSystemMetrics (SM_CMONITORS) counts only the display monitors.
            </summary>
            <param name="hdc">A handle to a display device context that defines the visible region of interest. If this parameter is NULL, the hdcMonitor parameter passed to the callback function will be NULL, and the visible region of interest is the virtual screen that encompasses all the displays on the desktop.</param>
            <param name="lprcClip">A pointer to a RECT structure that specifies a clipping rectangle. The region of interest is the intersection of the clipping rectangle with the visible region specified by hdc. If hdc is non-NULL, the coordinates of the clipping rectangle are relative to the origin of the hdc. If hdc is NULL, the coordinates are virtual-screen coordinates. This parameter can be NULL if you don't want to clip the region specified by hdc.</param>
            <param name="lpfnEnum">A pointer to a MonitorEnumProc application-defined callback function.</param>
            <param name="dwData">Application-defined data that EnumDisplayMonitors passes directly to the MonitorEnumProc function.</param>
            <returns>If the function succeeds, the return value is nonzero. If the function fails, the return value is zero.</returns>
        </member>
        <member name="T:JetBrains.Interop.WinApi.User32Dll.MonitorEnumProc">
            <summary>
            A MonitorEnumProc function is an application-defined callback function that is called by the EnumDisplayMonitors function. A value of type MONITORENUMPROC is a pointer to a MonitorEnumProc function.
            </summary>
            <param name="hMonitor">A handle to the display monitor. This value will always be non-NULL.</param>
            <param name="hdcMonitor">A handle to a device context. The device context has color attributes that are appropriate for the display monitor identified by hMonitor. The clipping area of the device context is set to the intersection of the visible region of the device context identified by the hdc parameter of EnumDisplayMonitors, the rectangle pointed to by the lprcClip parameter of EnumDisplayMonitors, and the display monitor rectangle. This value is NULL if the hdc parameter of EnumDisplayMonitors was NULL.</param>
            <param name="lprcMonitor">A pointer to a RECT structure. If hdcMonitor is non-NULL, this rectangle is the intersection of the clipping area of the device context identified by hdcMonitor and the display monitor rectangle. The rectangle coordinates are device-context coordinates. If hdcMonitor is NULL, this rectangle is the display monitor rectangle. The rectangle coordinates are virtual-screen coordinates.</param>
            <param name="dwData">Application-defined data that EnumDisplayMonitors passes directly to the enumeration function.</param>
            <returns>To continue the enumeration, return TRUE. To stop the enumeration, return FALSE.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.MonitorFromPoint(JetBrains.Interop.WinApi.POINT,System.UInt32)">
            <summary>
            The MonitorFromPoint function retrieves a handle to the display monitor that contains a specified point.
            </summary>
            <param name="pt">A <see cref="T:JetBrains.Interop.WinApi.POINT" /> structure that specifies the point of interest in virtual-screen coordinates.</param>
            <param name="dwFlags">Determines the function's return value if the point is not contained within any display monitor. This parameter can be one of the <see cref="T:JetBrains.Interop.WinApi.Constants.MONITOR_DEFAULTTO">following values</see>.</param>
            <returns>If the point is contained by a display monitor, the return value is an HMONITOR handle to that display monitor. If the point is not contained by a display monitor, the return value depends on the value of <paramref name="dwFlags" />.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.MonitorFromRect(JetBrains.Interop.WinApi.RECT*,System.UInt32)">
            <summary>
            The MonitorFromRect function retrieves a handle to the display monitor that has the largest area of intersection with a specified rectangle.
            </summary>
            <param name="lprc">A pointer to a <see cref="T:JetBrains.Interop.WinApi.RECT" /> structure that specifies the rectangle of interest in virtual-screen coordinates.</param>
            <param name="dwFlags">Determines the function's return value if the rectangle does not intersect any display monitor. This parameter can be one of the <see cref="T:JetBrains.Interop.WinApi.Constants.MONITOR_DEFAULTTO">following values</see>.</param>
            <returns>If the rectangle intersects one or more display monitor rectangles, the return value is an HMONITOR handle to the display monitor that has the largest area of intersection with the rectangle. If the rectangle does not intersect a display monitor, the return value depends on the value of <paramref name="dwFlags" />.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.SetProcessDPIAware">
            <summary>
            SetProcessDPIAware is available for use in the operating systems specified in the Requirements section. It may be altered or unavailable in subsequent versions. Instead, use SetProcessDpiAwareness.
            Sets the current process as dots per inch (dpi) aware.
            Note  SetProcessDPIAware is subject to a possible race condition if a DLL caches dpi settings during initialization. For this reason, it is recommended that dpi-aware be set through the application (.exe) manifest rather than by calling SetProcessDPIAware.
            </summary>
            <returns>If the function succeeds, the return value is nonzero. Otherwise, the return value is zero.</returns>
            <since>NT 6.0</since>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.MonitorFromWindow(System.Void*,System.UInt32)">
            <summary>
            The MonitorFromWindow function retrieves a handle to the display monitor that has the largest area of intersection with the bounding rectangle of a specified window.
            </summary>
            <param name="hwnd">A handle to the window of interest.</param>
            <param name="dwFlags">Determines the function's return value if the window does not intersect any display monitor. This parameter can be one of the <see cref="T:JetBrains.Interop.WinApi.Constants.MONITOR_DEFAULTTO">following values</see>.</param>
            <returns>If the window intersects one or more display monitor rectangles, the return value is an HMONITOR handle to the display monitor that has the largest area of intersection with the window. If the window does not intersect a display monitor, the return value depends on the value of dwFlags.</returns>
            <remarks>If the window is currently minimized, MonitorFromWindow uses the rectangle of the window before it was minimized.</remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.GetMonitorInfoW(System.Void*,JetBrains.Interop.WinApi.MONITORINFO*)">
            <summary>
            The GetMonitorInfo function retrieves information about a display monitor.
            </summary>
            <param name="hMonitor">A handle to the display monitor of interest.</param>
            <param name="lpmi">
              <para>A pointer to a <see cref="T:JetBrains.Interop.WinApi.MONITORINFO"/> or MONITORINFOEX structure that receives information about the specified display monitor.</para>
              <para>You must set the cbSize member of the structure to sizeof(MONITORINFO) or sizeof(MONITORINFOEX) before calling the GetMonitorInfo function. Doing so lets the function determine the type of structure you are passing to it.</para>
              <para>The MONITORINFOEX structure is a superset of the MONITORINFO structure. It has one additional member: a string that contains a name for the display monitor. Most applications have no use for a display monitor name, and so can save some bytes by using a MONITORINFO structure.</para>
            </param>
            <returns>If the function succeeds, the return value is nonzero. If the function fails, the return value is zero.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.EnableNonClientDpiScaling(System.Void*)">
            <summary>
            In high-DPI displays, enables automatic display scaling of the non-client area portions of the specified top-level window. Must be called during the initialization of that window.
            </summary>
            <param name="hwnd">The window that should have automatic scaling enabled.</param>
            <returns>If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. To get extended error information, call GetLastError.</returns>
            <remarks>
            Calling this function will enable non-client scaling for an individual top-level window with DPI_AWARENESS_CONTEXT of DPI_AWARENESS_CONTEXT_PER_MONITOR_AWARE. If instead you are not using per-window awareness, and your entire process is running in DPI_AWARENESS_PER_MONITOR_AWARE mode, calling this function will enable non-client scaling in top-level windows in your process.
            If neither of those are true, of if you call this method from any other window, then it will fail and return a value of zero.
            Non-client scaling for top-level windows is not enabled by default. You must call this API to enable it for each individual top-level window for which you wish to have the non-client area scale automatically. Once you do, there is no way to disable it. Enabling non-client scaling means that all the areas drawn by the system for the window will automatically scale in response to DPI changes on the window. That includes areas like the caption bar, the scrollbars, and the menu bar. You want to call EnableNonClientDpiScaling when you want the operating system to be responsible for rendering these areas automatically at the correct size based on the API of the monitor.
            Calling this function enables non-client scaling for top-level windows only. Child windows are unaffected.
            </remarks>
            <since>NT 10.0.14393</since>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.WindowFromDC(System.Void*)">
            <summary>
            The WindowFromDC function returns a handle to the window associated with the specified display device context (DC). Output functions that use the specified device context draw into this window.
            </summary>
            <param name="hDC">Handle to the device context from which a handle to the associated window is to be retrieved.</param>
            <returns>The return value is a handle to the window associated with the specified DC. If no window is associated with the specified DC, the return value is NULL.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.GetSystemMetricsForDpi(System.Int32,System.UInt32)">
            <summary>
            Retrieves the specified system metric or system configuration setting taking into account a provided DPI.
            </summary>
            <param name="nIndex">The system metric or configuration setting to be retrieved. See GetSystemMetrics for the possible values.</param>
            <param name="dpi">The DPI to use for scaling the metric.</param>
            <returns>This function returns the same result as <see cref="M:JetBrains.Interop.WinApi.User32Dll.GetSystemMetrics(System.Int32)" /> but scales it according to an arbitrary DPI you provide if appropriate.</returns>
            <since>NT 10.0.14393</since>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.GetDpiForWindow(System.Void*)">
            <summary>
            Returns the dots per inch (dpi) value for the associated window.
            </summary>
            <param name="hwnd">The window you want to get information about.</param>
            <returns>The DPI for the window which depends on the DPI_AWARENESS of the window. See the Remarks for more information. An invalid hwnd value will result in a return value of 0.</returns>
            <since>NT 10.0.14393</since>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.GetDpiForSystem">
            <summary>Returns the system DPI.</summary>
            <remarks>
            The return value will be dependent based upon the calling context. If the current thread has a DPI_AWARENESS value of DPI_AWARENESS_UNAWARE, the return value will be 96. That is because the current context always assumes a DPI of 96. For any other DPI_AWARENESS value, the return value will be the actual system DPI.
            You should not cache the system DPI, but should use GetDpiForSystem whenever you need the system DPI value.
            </remarks>
            <returns>The system DPI value.</returns>
            <since>NT 10.0.14393</since>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.GetSystemDpiForProcess(System.Void*)">
            <summary>Retrieves the system DPI associated with a given process. This is useful for avoiding compatibility issues that arise from sharing DPI-sensitive information between multiple system-aware processes with different system DPI values.</summary>
            <param name="hProcess">The handle for the process to examine. If this value is null, this API behaves identically to GetDpiForSystem.</param>
            <remarks>The return value will be dependent based upon the process passed as a parameter. If the specified process has a DPI_AWARENESS value of DPI_AWARENESS_UNAWARE, the return value will be 96. That is because the current context always assumes a DPI of 96. For any other DPI_AWARENESS value, the return value will be the actual system DPI of the given process.</remarks>
            <since>10.0.17134</since>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.SystemParametersInfoForDpi(System.UInt32,System.UInt32,System.Void*,System.UInt32,System.UInt32)">
            <summary>
            Retrieves the value of one of the system-wide parameters, taking into account the provided DPI value.
            </summary>
            <param name="uiAction">The system-wide parameter to be retrieved. This function is only intended for use with <see cref="F:JetBrains.Interop.WinApi.Constants.SPI.SPI_GETICONTITLELOGFONT"/>, <see cref="F:JetBrains.Interop.WinApi.Constants.SPI.SPI_GETICONMETRICS"/>, or <see cref="F:JetBrains.Interop.WinApi.Constants.SPI.SPI_GETNONCLIENTMETRICS"/>. See <see cref="M:JetBrains.Interop.WinApi.User32Dll.SystemParametersInfoW(System.UInt32,System.UInt32,System.Void*,System.UInt32)"/> for more information on these values.</param>
            <param name="uiParam">A parameter whose usage and format depends on the system parameter being queried. For more information about system-wide parameters, see the uiAction parameter. If not otherwise indicated, you must specify zero for this parameter.</param>
            <param name="pvParam">A parameter whose usage and format depends on the system parameter being queried. For more information about system-wide parameters, see the uiAction parameter. If not otherwise indicated, you must specify NULL for this parameter. For information on the PVOID datatype, see Windows Data Types.</param>
            <param name="fWinIni">Has no effect for with this API. This parameter only has an effect if you're setting parameter.</param>
            <param name="dpi">The DPI to use for scaling the metric.</param>
            <returns>
            If the function succeeds, the return value is nonzero.
            If the function fails, the return value is zero. To get extended error information, call GetLastError.</returns>
            <remarks>This function returns a similar result as SystemParametersInfo, but scales it according to an arbitrary DPI you provide (if appropriate). It only scales with the following possible values for uiAction: SPI_GETICONTITLELOGFONT, SPI_GETICONMETRICS, SPI_GETNONCLIENTMETRICS. Other possible uiAction values do not provide ForDPI behavior, and therefore this function returns 0 if called with them.
            For uiAction values that contain strings within their associated structures, only Unicode (LOGFONTW) strings are supported in this function.</remarks>
            <since>NT 10.0.14393</since>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.GetDlgCtrlID(System.Void*)">
            <summary>
            Retrieves the identifier of the specified control.
            </summary>
            <param name="hwnd">A handle to the control.</param>
            <returns>If the function succeeds, the return value is the identifier of the control.
            If the function fails, the return value is zero. An invalid value for the hwndCtl parameter, for example, will cause the function to fail. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.RegisterRawInputDevices(JetBrains.Interop.Windows.Declarations.Structures.RAWINPUTDEVICE*,System.UInt32,System.UInt32)">
            <summary>
            Registers the devices that supply the raw input data.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.GetRawInputData(System.Void*,System.UInt32,System.Void*,System.UInt32*,System.UInt32)">
            <summary>
            Retrieves the raw input from the specified device.
            </summary>
            <param name="hRawInput"></param>
            <param name="uiCommand"></param>
            <param name="pData"></param>
            <param name="pcbSize"></param>
            <param name="cbSizeHeader"></param>
            <returns></returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.GetMessageTime">
            <summary>
            Retrieves the message time for the last message retrieved by the GetMessage function. The time is a long integer that specifies the elapsed time, in milliseconds, from the time the system was started to the time the message was created (that is, placed in the thread's message queue).
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.GetMessagePos">
            <summary>
            Retrieves the cursor position for the last message retrieved by the GetMessage function.
            </summary>
            <returns>The return value specifies the x- and y-coordinates of the cursor position. The x-coordinate is the low order short and the y-coordinate is the high-order short.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.GetQueueStatus(System.UInt32)">
            <summary>
            Retrieves the type of messages found in the calling thread's message queue.
            </summary>
            <param name="flags">The types of messages for which to check.</param>
            <returns>The high-order word of the return value indicates the types of messages currently in the queue. The low-order word indicates the types of messages that have been added to the queue and that are still in the queue since the last call to the <see cref="M:JetBrains.Interop.WinApi.User32Dll.GetQueueStatus(System.UInt32)"/>, <see cref="M:JetBrains.Interop.WinApi.User32Dll.GetMessageW(JetBrains.Interop.WinApi.MSG*,System.Void*,System.UInt32,System.UInt32)"/>, or <see cref="M:JetBrains.Interop.WinApi.User32Dll.PeekMessageW(JetBrains.Interop.WinApi.MSG*,System.Void*,System.UInt32,System.UInt32,System.UInt32)"/> function.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.SetTimer(System.Void*,System.UIntPtr,System.UInt32,System.Void*)">
            <summary>
            Creates a timer with the specified time-out value.
            </summary>
            <param name="hWnd">A handle to the window to be associated with the timer. This window must be owned by the calling thread. If a NULL value for hWnd is passed in along with an nIDEvent of an existing timer, that timer will be replaced in the same way that an existing non-NULL hWnd timer will be.</param>
            <param name="nIDEvent">A nonzero timer identifier. If the hWnd parameter is NULL, and the nIDEvent does not match an existing timer then it is ignored and a new timer ID is generated. If the hWnd parameter is not NULL and the window specified by hWnd already has a timer with the value nIDEvent, then the existing timer is replaced by the new timer. When SetTimer replaces a timer, the timer is reset. Therefore, a message will be sent after the current time-out value elapses, but the previously set time-out value is ignored. If the call is not intended to replace an existing timer, nIDEvent should be 0 if the hWnd is NULL.</param>
            <param name="uElapse">The time-out value, in milliseconds.
            If uElapse is less than USER_TIMER_MINIMUM (0x0000000A), the timeout is set to USER_TIMER_MINIMUM. If uElapse is greater than USER_TIMER_MAXIMUM (0x7FFFFFFF), the timeout is set to USER_TIMER_MAXIMUM.</param>
            <param name="lpTimerFunc">A pointer to the function to be notified when the time-out value elapses. For more information about the function, see TimerProc. If lpTimerFunc is NULL, the system posts a WM_TIMER message to the application queue. The hwnd member of the message's MSG structure contains the value of the hWnd parameter.</param>
            <returns>If the function succeeds and the hWnd parameter is NULL, the return value is an integer identifying the new timer. An application can pass this value to the KillTimer function to destroy the timer.
            If the function succeeds and the hWnd parameter is not NULL, then the return value is a nonzero integer. An application can pass the value of the nIDEvent parameter to the KillTimer function to destroy the timer.
            If the function fails to create a timer, the return value is zero. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.KillTimer(System.Void*,System.UIntPtr)">
            <summary>
            Destroys the specified timer.
            </summary>
            <param name="hWnd">A handle to the window associated with the specified timer. This value must be the same as the hWnd value passed to the SetTimer function that created the timer.</param>
            <param name="uIDEvent">The timer to be destroyed. If the window handle passed to SetTimer is valid, this parameter must be the same as the nIDEvent value passed to SetTimer. If the application calls SetTimer with hWnd set to NULL, this parameter must be the timer identifier returned by SetTimer.</param>
            <returns>If the function succeeds, the return value is nonzero.
            If the function fails, the return value is zero. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="T:JetBrains.Interop.WinApi.User32Dll.SetThreadDpiHostingBehavior">
            <summary>
            Sets the thread's DPI_HOSTING_BEHAVIOR. This behavior allows windows created in the thread to host child windows with a different DPI_AWARENESS_CONTEXT.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.User32Dll.GetThreadDpiHostingBehavior">
            <summary>
            Retrieves the DPI_HOSTING_BEHAVIOR from the current thread.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.User32Dll.SetThreadDpiAwarenessContext">
            <summary>
            Set the DPI awareness for the current thread to the provided value.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.User32Dll.GetThreadDpiAwarenessContext">
            <summary>
            Gets the DPI_AWARENESS_CONTEXT for the current thread.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.User32Dll.GetWindowDpiAwarenessContext">
            <summary>
            Returns the DPI_AWARENESS_CONTEXT associated with a window.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.User32Dll.GetAwarenessFromDpiAwarenessContext">
            <summary>
            Retrieves the DPI_AWARENESS value from a DPI_AWARENESS_CONTEXT.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.User32Dll.AreDpiAwarenessContextsEqual">
            <summary>
            Determines whether two DPI_AWARENESS_CONTEXT values are identical.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.User32Dll.IsValidDpiAwarenessContext">
            <summary>
            Determines if a specified DPI_AWARENESS_CONTEXT is valid and supported by the current system.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.BringWindowToTop(System.IntPtr)">
            <summary>
            The BringWindowToTop function brings the specified window to the top of the Z order. If the window is a top-level
            window, it is activated. If the window is a child window, the top-level parent window associated with the child window is activated.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.ClientToScreen(System.IntPtr,JetBrains.Interop.WinApi.POINT)">
            <summary>
            Converts a point from window coordinates to screen coordinates, returns an empty point on failure.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.ClientToScreen(System.IntPtr,JetBrains.Interop.WinApi.RECT)">
            <summary>
            Converts a rectangle from window coordinates to screen coordinates, returns an empty rectangle on failure.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.DestroyWindow(System.IntPtr)">
            <summary>
            Calls <see cref="M:JetBrains.Interop.WinApi.User32Dll.DestroyWindow(System.Void*)"/>.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.DisableWindow(System.IntPtr)">
            <summary>
            Disables the window given by its handle.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.EnableWindow(System.IntPtr)">
            <summary>
            Enables the window given by its handle.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.GetActiveWindow">
            <summary>
            The GetActiveWindow function retrieves the window handle to the active window attached to the calling thread's message queue. 
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.GetChildWindowHandles(System.IntPtr)">
            <summary>
            Lists the handles of all child windows of a specific window, recursively.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.GetClientRect(System.IntPtr)">
            <summary>
            Gets the client rectangle for the window.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.GetCursorInfo">
            <summary>
            Gets the point out of the <see cref="M:JetBrains.Interop.WinApi.User32Dll.GetCursorInfo(JetBrains.Interop.WinApi.Declarations.Structures.CURSORINFO*)"/> (note: <see cref="M:JetBrains.Interop.WinApi.User32Dll.GetCursorPos(JetBrains.Interop.WinApi.POINT*)"/> should not be used).
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.GetDlgItem(System.IntPtr,System.Int32)">
            <summary>
            The GetDlgItem function retrieves a handle to a control in the specified dialog box. 
            </summary>
            <param name="hDlg">[in] Handle to the dialog box that contains the control. </param>
            <param name="nDlgItem">[in] Specifies the identifier of the control to be retrieved.</param>
            <returns>If the function succeeds, the return value is the window handle of the specified control. 
            If the function fails, the return value is NULL, indicating an invalid dialog box handle or a nonexistent control. To get extended error information, call GetLastError.</returns>
            <remarks>You can use the GetDlgItem function with any parent-child window pair, not just with dialog boxes. As long as the hDlg parameter specifies a parent window and the child window has a unique identifier (as specified by the hMenu parameter in the CreateWindow or CreateWindowEx function that created the child window), GetDlgItem returns a valid handle to the child window.</remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.GetFocusOnAnyThreadInAnyProcess">
            <summary>
            Gets the window that currently has focus on this desktop — any thread, any process, etc.
            </summary>
            <seealso cref="M:JetBrains.Interop.WinApi.User32Dll.GetFocus"/>
            <seealso cref="M:JetBrains.Interop.WinApi.User32Dll.GetForegroundWindow"/>
            <seealso cref="M:JetBrains.Interop.WinApi.User32Dll.Helpers.GetFocusOnAnyThreadInOurProcess"/>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.GetFocusOnAnyThreadInOurProcess">
            <summary>
            Gets the window that currently has focus in our process — but on any thread, unlike <see cref="M:JetBrains.Interop.WinApi.User32Dll.GetFocus"/>.
            </summary>
            <seealso cref="M:JetBrains.Interop.WinApi.User32Dll.GetFocus"/>
            <seealso cref="M:JetBrains.Interop.WinApi.User32Dll.GetForegroundWindow"/>
            <seealso cref="M:JetBrains.Interop.WinApi.User32Dll.Helpers.GetFocusOnAnyThreadInAnyProcess"/>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.GetFocus">
            <summary>
            The GetFocus function retrieves the handle to the window that has the keyboard focus, if the window is attached to the calling thread's message queue. 
            </summary>
            <returns>The return value is the handle to the window with the keyboard focus. If the calling thread's message queue does not have an associated window with the keyboard focus, the return value is <c>NULL</c>.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.GetParent(System.IntPtr)">
            <summary>
            Gets parent window for the window
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.GetThreadTopLevelWindowHandles(System.UInt32)">
            <summary>
            Lists the handles of all the top-level windows that belong to the specific thread.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.GetTopLevelWindowHandles">
            <summary>
            Lists the handles of all the top-level windows currently available in the system.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.GetWindowClassName(System.IntPtr)">
            <summary>
            Wnd class name.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.GetWindowLongPtrW(System.IntPtr,JetBrains.Interop.WinApi.WindowLongPtrIndex)">
            <summary>
            NOTE: here void* is used as a return type because otherwise on 64-bit systems casting it to an int might get unsafe unexpectedly.
            </summary>
            <param name="hWnd"></param>
            <param name="nIndex"></param>
            <returns></returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.GetWindowProcessId(System.IntPtr)">
            <summary>
            Gets the ID of the process that owns the window.
            Note that creating a <see cref="T:System.Diagnostics.Process"/> wrapper for that is very expensive because it causes an enumeration of all the system processes to happen.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.GetWindowRect(System.IntPtr)">
            <summary>
            Wraps <see cref="M:JetBrains.Interop.WinApi.User32Dll.GetWindowRect(System.Void*,JetBrains.Interop.WinApi.RECT*)"/>.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.GetWindowText(System.IntPtr)">
            <summary>
            Wnd text.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.GetWindowThreadId(System.IntPtr)">
            <summary>
            Gets the ID of the thread that owns the window.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.InvalidateRect(System.IntPtr,System.Nullable{JetBrains.Interop.WinApi.RECT},System.Boolean)">
            <summary>
            Invalidates the specific rectangle. If <paramref name="rect"/> is <c>Null</c>, the whole window is invalidated.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.IsChild(System.IntPtr,System.IntPtr)">
            <summary>
            Returns true if the window is a child or descendant window of the specified parent window.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.IsIconic(System.IntPtr)">
            <summary>
            The IsIconic function return true is windows is minimized. 
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.IsThreadWithMessageQueue(System.UInt32)">
            <summary>
            Gets whether the given thread has a message pump created for it.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.IsWindow(System.IntPtr)">
            <summary>
            The IsWindow function determines whether the specified window handle identifies an existing window.
            </summary>
            <param name="handle">[in] Handle to the window to test.</param>
            <returns>If the window handle identifies an existing window, the return value is nonzero. If the window handle does not identify an existing window, the return value is zero.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.IsWindowEnabled(System.IntPtr)">
            <summary>
            The IsWindowEnabled function determines whether the specified window is enabled for mouse and keyboard input. 
            </summary>
            <param name="handle">[in] Handle to the window to test.</param>
            <returns>If the window is enabled, the return value is nonzero. If the window is not enabled, the return value is zero.</returns>
            <remarks>A child window receives input only if it is both enabled and visible.</remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.IsWindowVisible(System.IntPtr)">
            <summary>
            The IsWindowVisible function retrieves the visibility state of the specified window.
            </summary>
            <param name="handle">[in] Handle to the window to test.</param>
            <returns>If the specified window, its parent window, its parent's parent window, and so forth, have the WS_VISIBLE style, the return value is nonzero. Otherwise, the return value is zero. Because the return value specifies whether the window has the WS_VISIBLE style, it may be nonzero even if the window is totally obscured by other windows.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.IsZoomed(System.IntPtr)">
            <summary>
            The IsZoomed function return true is windows is maximized. 
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.PostMessage(System.IntPtr,JetBrains.Interop.WinApi.WindowsMessages,System.IntPtr,System.IntPtr)">
            <summary>
            The PostMessageW function places (posts) a message in the message queue associated with the thread that created the specified window and returns without waiting for the thread to process the message.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.ScreenToClient(System.IntPtr,JetBrains.Interop.WinApi.POINT)">
            <summary>
            Converts a point from screen coordinates to window coordinates, returns an empty point on failure.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.ScreenToClient(System.IntPtr,JetBrains.Interop.WinApi.RECT)">
            <summary>
            Converts a rectangle from screen coordinates to window coordinates, returns an empty rectangle on failure.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.SendMessageW(System.IntPtr,JetBrains.Interop.WinApi.WindowsMessages,System.IntPtr,System.IntPtr)">
            <summary>
            The SendMessage function sends the specified message to a window or windows. It calls the window procedure for the specified window and does not return until the window procedure has processed the message.
            To send a message and return immediately, use the SendMessageCallback or SendNotifyMessage function. To post a message to a thread's message queue and return immediately, use the PostMessageW or PostThreadMessage function.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.SetActiveWindow(System.IntPtr)">
            <summary>
            The SetActiveWindow function activates a window. The window must be attached to the calling thread's message queue. 
            </summary>
            <param name="hWnd">[in] Handle to the top-level window to be activated.</param>
            <returns>If the function succeeds, the return value is the handle to the window that was previously active. If the function fails, the return value is NULL. To get extended error information, call GetLastError.</returns>
            <remarks>
            <para>The SetActiveWindow function activates a window, but not if the application is in the background. The window will be brought into the foreground (top of Z-Order) if its application is in the foreground when the system activates the window. </para>
            <para>If the window identified by the hWnd parameter was created by the calling thread, the active window status of the calling thread is set to hWnd. Otherwise, the active window status of the calling thread is set to NULL.</para>
            <para>By using the AttachThreadInput function, a thread can attach its input processing to another thread. This allows a thread to call SetActiveWindow to activate a window attached to another thread's message queue. </para>
            </remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.SetFocus(System.IntPtr)">
            <summary>
            The SetFocus function sets the keyboard focus to the specified window. The window must be attached to the calling thread's message queue. The SetFocus function sends a WM_KILLFOCUS message to the window that loses the keyboard focus and a WM_SETFOCUS message to the window that receives the keyboard focus. It also activates either the window that receives the focus or the parent of the window that receives the focus. If a window is active but does not have the focus, any key pressed will produce the WM_SYSCHAR, WM_SYSKEYDOWN, or WM_SYSKEYUP message. If the VK_MENU key is also pressed, the lParam parameter of the message will have bit 30 set. Otherwise, the messages produced do not have this bit set. By using the AttachThreadInput function, a thread can attach its input processing to another thread. This allows a thread to call SetFocus to set the keyboard focus to a window attached to another thread's message queue. 
            </summary>
            <param name="hWnd">[in] Handle to the window that will receive the keyboard input. If this parameter is NULL, keystrokes are ignored. </param>
            <returns>If the function succeeds, the return value is the handle to the window that previously had the keyboard focus. If the hWnd parameter is invalid or the window is not attached to the calling thread's message queue, the return value is NULL. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.SetForegroundWindow(System.IntPtr)">
            <summary>
            The SetForegroundWindow function puts the thread that created the specified window into the foreground and
            activates the window. Keyboard input is directed to the window, and various visual cues are changed for the user.
            The system assigns a slightly higher priority to the thread that created the foreground window than it does to other threads.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.SetWindowExStyle(System.Void*,JetBrains.Interop.WinApi.WindowExStyles,System.Boolean)">
            <summary>
            Adds or removes window style bits given by the <paramref name="style"/> parameter (see WS_… in <see cref="T:JetBrains.Interop.WinApi.WindowStyles"/>), depending on the <paramref name="set"/> value.
            </summary>
            <returns>Whether the operation succeeded.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.SetWindowStyle(System.Void*,JetBrains.Interop.WinApi.WindowStyles,System.Boolean)">
            <summary>
            Adds or removes window style bits given by the <paramref name="style"/> parameter (see WS_… in <see cref="T:JetBrains.Interop.WinApi.WindowStyles"/>), depending on the <paramref name="set"/> value.
            </summary>
            <returns>Whether the operation succeeded.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.SetWindowStyleRaw(System.Void*,System.UInt32,JetBrains.Interop.WinApi.WindowLongPtrIndex,System.Boolean)">
            <summary>
            Raw implementation for setting a window style.
            </summary>
            <param name="hwnd">Handle to the window whose style is being set/reset.</param>
            <param name="style">One or more styles.</param>
            <param name="index">Index telling whether it would be simple style or extended style.</param>
            <param name="set">Whether to set or reset the style.</param>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.ShowWindow(System.IntPtr,JetBrains.Interop.WinApi.ShowWindowCommands)">
            <summary>
            The ShowWindow function sets the specified window's show state. 
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.SwitchToThisWindow(System.IntPtr,System.Boolean)">
            <summary>
            The SwitchToThisWindow function is called to switch focus to a specified window and bring it to the foreground.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.TryGetWindowClassName(System.IntPtr)">
            <summary>
            Wnd class name. Throws no exceptions, returns <c>Null</c>.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.TryLoadStringResource(System.String,System.UInt32)">
            <summary>
            Loads a Win32 string resource from a native DLL.
            Returns <c>Null</c> on errors.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.IsChecked(System.IntPtr)">
            <summary>
            Checks whether the radiobutton or checkbox identified by the <paramref name="hWnd"/> is checked.
            </summary>
            <returns>
            <b>true</b> - checked;
            <b>false</b> - unchecked;
            <b>null</b> - indeterminate.
            </returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.OpenClipboard(System.IntPtr)">
            <summary>
            Opens the clipboard for examination and prevents other applications from modifying the clipboard content.
            </summary>
            <param name="hWndNewOwner">
            A handle to the window to be associated with the open clipboard.
            If this parameter is NULL, the open clipboard is associated with the current task.
            </param>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.CloseClipboard">
            <summary>
            Closes the clipboard.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.IsClipboardFormatAvailable(JetBrains.Interop.WinApi.Constants.StandardClipboardFormats)">
            <summary>
            Determines whether the clipboard contains data in the specified format.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.GetClipboardData(JetBrains.Interop.WinApi.Constants.StandardClipboardFormats)">
            <summary>
            Retrieves data from the clipboard in a specified format. The clipboard must have been opened previously.
            </summary>
            <param name="format">A clipboard format.</param>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.GetQueueStatus(JetBrains.Interop.WinApi.QueueStatusFlags)">
            <summary>
            A wrapper for <see cref="M:JetBrains.Interop.WinApi.User32Dll.GetQueueStatus(System.UInt32)" />. Asks about given flags, and checks if any of them are set in the FULL part of the answer.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.User32Dll.Helpers.EnumWindowsProc">
            <summary>
            The EnumWindowsProc function is an application-defined callback function used with the EnumWindows or EnumDesktopWindows function. It receives top-level window handles. The WNDENUMPROC type defines a pointer to this callback function. EnumWindowsProc is a placeholder for the application-defined function name. 
            </summary>
            <param name="hwnd">[in] Handle to a top-level window. </param>
            <param name="lParam">[in] Specifies the application-defined value given in EnumWindows or EnumDesktopWindows. </param>
            <returns>To continue enumeration, the callback function must return TRUE; to stop enumeration, it must return FALSE.</returns>
            <remarks>An application must register this callback function by passing its address to EnumWindows or EnumDesktopWindows. </remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.LoadCursor(JetBrains.Interop.WinApi.StockCursors)">
            <summary>
            Loads the cursor by calling the <see cref="M:JetBrains.Interop.WinApi.User32Dll.LoadCursorW(System.Void*,System.Char*)" /> WinAPI function.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.IsTopLevelWindow(System.Void*)">
            <summary>
            Gets whether this window is a top-level window by checking that it's not a window with the <see cref="F:JetBrains.Interop.WinApi.WindowStyles.WS_CHILD" /> style.
            A top-level window is either a Popup or Overlapped and does not have a parent (but might have an owner).
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.TryGetProcDelegate``1">
            <summary>
            Loads the DLL being served in this class, does <see cref="M:JetBrains.Interop.WinApi.Kernel32Dll.GetProcAddress(System.Void*,System.String)"/> for the local name of the <typeparamref name="TDelegate"/>, casts to the delegate.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.SetThreadDpiAwarenessContext(JetBrains.Interop.WinApi.Declarations.Structures.DPI_AWARENESS_CONTEXT)">
            <summary>
            Set the DPI awareness for the current thread to the provided value.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.GetThreadDpiAwarenessContext">
            <summary>
            Gets the DPI_AWARENESS_CONTEXT for the current thread.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.GetWindowDpiAwarenessContext(System.IntPtr)">
            <summary>
            The DPI_AWARENESS_CONTEXT for the provided window. If the window is not valid, the return value is NULL.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.SetThreadDpiHostingBehavior(JetBrains.Interop.WinApi.Declarations.Constants.DPI_HOSTING_BEHAVIOR)">
            <summary>
            Sets the thread's DPI_HOSTING_BEHAVIOR. This behavior allows windows created in the thread to host child windows with a different DPI_AWARENESS_CONTEXT.
            </summary>
            <param name="newbeh"></param>
            <returns></returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.GetThreadDpiHostingBehavior">
            <summary>
            Retrieves the DPI_HOSTING_BEHAVIOR from the current thread.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.GetAwarenessFromDpiAwarenessContext(System.Nullable{JetBrains.Interop.WinApi.Declarations.Structures.DPI_AWARENESS_CONTEXT})">
            <summary>
            Retrieves the DPI_AWARENESS value from a DPI_AWARENESS_CONTEXT.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.GetWindowDpiAwareness(System.IntPtr)">
            <summary>
            Retrieves the DPI_AWARENESS value from a DPI_AWARENESS_CONTEXT for the provided window. If the window is not valid, the return value is NULL.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.AreDpiAwarenessContextsEqual(JetBrains.Interop.WinApi.Declarations.Structures.DPI_AWARENESS_CONTEXT,JetBrains.Interop.WinApi.Declarations.Structures.DPI_AWARENESS_CONTEXT)">
            <summary>
            Determines whether two DPI_AWARENESS_CONTEXT values are identical.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.IsValidDpiAwarenessContext(JetBrains.Interop.WinApi.Declarations.Structures.DPI_AWARENESS_CONTEXT)">
            <summary>
            Determines if a specified DPI_AWARENESS_CONTEXT is valid and supported by the current system.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.GetWindowExStyle(System.IntPtr)">
            <summary>
            Gets the extended style of the specified window.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Helpers.GetWindowStyle(System.IntPtr)">
            <summary>
            Gets the style of the specified window.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Only32Bit.GetWindowLongPtrW(System.Void*,System.Int32)">
            <summary>
            The GetWindowLongPtrW function retrieves information about the specified window. The function also retrieves the value at a specified offset into the extra window memory.
            </summary>
            <remarks>void* is used instead of IntPtr here for safer casts on x64 systems: IntPtr is explicitly checked and throws an overflow exception.</remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Only32Bit.SetWindowLongPtrW(System.Void*,System.Int32,System.Void*)">
            <summary>
            The SetWindowLongPtrW function changes an attribute of the specified window. The function also sets a value at the specified offset in the extra window memory.
            </summary>
            <remarks>void* is used instead of IntPtr here for safer casts on x64 systems: IntPtr is explicitly checked and throws an overflow exception.</remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Only64Bit.GetWindowLongPtrW(System.Void*,System.Int32)">
            <summary>
            The GetWindowLongPtrW function retrieves information about the specified window. The function also retrieves the value at a specified offset into the extra window memory.
            </summary>
            <remarks>void* is used instead of IntPtr here for safer casts on x64 systems: IntPtr is explicitly checked and throws an overflow exception.</remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.User32Dll.Only64Bit.SetWindowLongPtrW(System.Void*,System.Int32,System.Void*)">
            <summary>
            The SetWindowLongPtrW function changes an attribute of the specified window. The function also sets a value at the specified offset in the extra window memory.
            </summary>
            <remarks>void* is used instead of IntPtr here for safer casts on x64 systems: IntPtr is explicitly checked and throws an overflow exception.</remarks>
        </member>
        <member name="T:JetBrains.Interop.WinApi.UxThemeDll">
            <summary>
            Declarations for the UxTheme.Dll.
            Must be 64bit-compatible.
            </summary>
            <remarks>
            IMPORTANT! Rules for authoring the class (v1.1):
            (1) All the function declarations MUST be 64-bit aware.
            (2) When copypasting from older declarations, you MUST check against the MSDN help or header declaration, 
               and you MUST ensure that each parameter has a proper size.
            (3) Call the Wide version of the functions (UCS-2-LE) unless there's a strong reason for calling the ANSI version 
               (such a reason MUST be indicated in XmlDoc). <c>CharSet = CharSet.Unicode</c>.
            (4) ExactSpelling MUST be TRUE. Add the "…W" suffix wherever needed.
            (5) SetLastError SHOULD be considered individually for each function. Setting it to <c>True</c> allows to report the errors,
               but slows down the execution of critical members.
            (6) These properties MUST be explicitly set on DllImport attributes of EACH import: 
               CharSet, PreserveSig, SetLastError, ExactSpelling.
            (7) CLR names MUST be used for types instead of C# ones, eg "Int32" not "int" and "Int64" not "long".
               This greately improves the understanding of the parameter sizes.
            (8) Sign of the types MUST be favored, eg "DWORD" is "UInt32" not "Int32".
            (9) Unsafe pointer types should be used for explicit and implicit pointers rather than IntPtr. 
               This way we outline the unsafety of the native calls, and also make it more clear for the 64bit transition.
               Eg "HANDLE" is "void*". If the rule forces you to mark some assembly as unsafe, it's an indication a managed utility
               incapsulating the call and the handle should be provided in one of the already-unsafe assemblies.
            (A) Same rules must apply to members of the structures.
            (B) All of the structures MUST have the [StructLayout(LayoutKind.Sequential)], [NoReorder] attributes, as appropriate.
            </remarks>
        </member>
        <member name="M:JetBrains.Interop.WinApi.UxThemeDll.CloseThemeData(System.Void*)">
            <summary>
            Closes the theme data handle.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.UxThemeDll.DrawThemeBackground(System.Void*,System.Void*,System.Int32,System.Int32,JetBrains.Interop.WinApi.RECT*,JetBrains.Interop.WinApi.RECT*)">
            <summary>
            Draws the border and fill defined by the visual style for the specified control part.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.UxThemeDll.OpenThemeData(System.Void*,System.String)">
            <summary>
            Opens the theme data for a window and its associated class.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.UxThemeDll.Helpers.IsAvailable">
            <summary>
            Checks whether the UxTheme DLL is available on this platform.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.VersionDll.GetFileVersionInfoSizeW(System.String,System.UInt32*)">
            <summary>
            Determines whether the operating system can retrieve version information for a specified file. If version information is available, <see cref="M:JetBrains.Interop.WinApi.VersionDll.GetFileVersionInfoSizeW(System.String,System.UInt32*)"/> returns the size, in bytes, of that information. 
            </summary>
            <param name="lptstrFilename">[in] Pointer to a null-terminated string that specifies the name of the file of interest. The function uses the search sequence specified by the LoadLibrary function. Windows 95/98/Me: The short path form of the specified file name must be less than 126 characters.</param>
            <param name="lpdwHandle">[out] Pointer to a variable that the function sets to zero.</param>
            <returns>If the function succeeds, the return value is the size, in bytes, of the file's version information. If the function fails, the return value is zero. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.VersionDll.GetFileVersionInfoW(System.String,System.UInt32,System.UInt32,System.Void*)">
            <summary>
            Retrieves version information for the specified file. 
            </summary>
            <param name="lptstrFilename">[in] Pointer to a null-terminated string that specifies the name of the file of interest. If a full path is not specified, the function uses the search sequence specified by the LoadLibrary function.Windows 95/98/Me: The short path form of the specified file name must be less than 126 characters.</param> 
            <param name="dwHandle">This parameter is ignored.</param>
            <param name="dwLen">[in] Specifies the size, in bytes, of the buffer pointed to by the lpData parameter. Call the <see cref="M:JetBrains.Interop.WinApi.VersionDll.GetFileVersionInfoSizeW(System.String,System.UInt32*)"/> function first to determine the size, in bytes, of a file's version information. The dwLen member should be equal to or greater than that value. If the buffer pointed to by lpData is not large enough, the function truncates the file's version information to the size of the buffer.</param>
            <param name="lpData">[out] Pointer to a buffer that receives the file-version information. You can use this value in a subsequent call to the <see cref="M:JetBrains.Interop.WinApi.VersionDll.VerQueryValueW(System.Void*,System.String,System.Void**,System.UInt32*)"/> function to retrieve data from the buffer.</param>
            <returns>If the function succeeds, the return value is nonzero. If the function fails, the return value is zero. To get extended error information, call GetLastError.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.VersionDll.VerQueryValueW(System.Void*,System.String,System.Void**,System.UInt32*)">
            <summary>
            The <see cref="M:JetBrains.Interop.WinApi.VersionDll.VerQueryValueW(System.Void*,System.String,System.Void**,System.UInt32*)"/> function retrieves specified version information from the specified version-information resource. To retrieve the appropriate resource, before you call <see cref="M:JetBrains.Interop.WinApi.VersionDll.VerQueryValueW(System.Void*,System.String,System.Void**,System.UInt32*)"/>, you must first call the <see cref="M:JetBrains.Interop.WinApi.VersionDll.GetFileVersionInfoSizeW(System.String,System.UInt32*)"/> function, and then the <see cref="M:JetBrains.Interop.WinApi.VersionDll.GetFileVersionInfoW(System.String,System.UInt32,System.UInt32,System.Void*)"/> function.
            </summary>
            <param name="pBlock">[in] Pointer to the buffer containing the version-information resource returned by the <see cref="M:JetBrains.Interop.WinApi.VersionDll.GetFileVersionInfoW(System.String,System.UInt32,System.UInt32,System.Void*)"/> function. </param>
            <param name="lpSubBlock">[in] Pointer to a zero-terminated string specifying which version-information value to retrieve. The string must consist of names separated by backslashes (\) and it must have one of the following forms. 
            <para><c>\</c></para>
            <para>Specifies the root block. The function retrieves a pointer to the VS_FIXEDFILEINFO structure for the version-information resource.</para>
            <para><c>\VarFileInfo\Translation</c></para>
            <para>Specifies the translation array in a Var variable information structure—the Value member of this structure. The function retrieves a pointer to this array of language and code page identifiers. An application can use these identifiers to access a language-specific StringTable /// structure (using the szKey member) in the version-information resource.</para>
            <para><c>\StringFileInfo\lang-codepage\string-name</c></para>
            <para>Specifies a value in a language-specific StringTable structure. The lang-codepage name is a concatenation of a language and code page identifier pair found as a DWORD in the translation array for the resource. Here the lang-codepage name must be specified as a hexadecimal string. The string-name name must be one of the predefined strings described in the following Remarks section. The function retrieves a string value specific to the language and code page indicated. </para>
            </param>
            <param name="lplpBuffer">[out] When this method returns, contains the address of a pointer to the requested version information in the buffer pointed to by pBlock. The memory pointed to by lplpBuffer is freed when the associated pBlock memory is freed. </param>
            <param name="puLen">[out] When this method returns, contains a pointer to the size of the requested data pointed to by lplpBuffer: for version information values, the length in TCHARs of the string stored at lplpBuffer; for translation array values, the size in bytes of the array stored at lplpBuffer; and for root block, the size in bytes of the structure.</param>
            <returns>If the specified version-information structure exists, and version information is available, the return value is nonzero. If the address of the length buffer is zero, no value is available for the specified version-information name. If the specified name does not exist or the specified resource is not valid, the return value is zero.</returns>
        </member>
        <member name="M:JetBrains.Interop.WinApi.VersionDll.Helpers.GetFileVersionInfo(System.String)">
            <summary>
            Gets the WinAPI file version of a native file.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.WinInetDll">
            <summary>
            WinInet.dll functions.
            Must be 64bit-safe.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.WinInetDll.Helpers.InternetGetCookie(System.String)">
            <summary>
            Gets the system HTTP cookie.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.WinInetDll.Helpers.InternetSetCookie(System.String,System.String)">
            <summary>
            Sets a system HTTP cookie.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.WintrustDll">
            <summary>
            Microsoft Trust Verification APIs (WINTRUST.DLL) functions.
            Must be 64bit-safe.
            </summary>
            <remarks>
            IMPORTANT! Rules for authoring the class (v1.1):
            (1) All the function declarations MUST be 64-bit aware.
            (2) When copypasting from older declarations, you MUST check against the MSDN help or header declaration,
               and you MUST ensure that each parameter has a proper size.
            (3) Call the Wide version of the functions (UCS-2-LE) unless there's a strong reason for calling the ANSI version
               (such a reason MUST be indicated in XmlDoc). <c>CharSet = CharSet.Unicode</c>.
            (4) ExactSpelling MUST be TRUE. Add the "…W" suffix wherever needed.
            (5) SetLastError SHOULD be considered individually for each function. Setting it to <c>True</c> allows to report the errors,
               but slows down the execution of critical members.
            (6) These properties MUST be explicitly set on DllImport attributes of EACH import:
               CharSet, PreserveSig, SetLastError, ExactSpelling.
            (7) CLR names MUST be used for types instead of C# ones, eg "Int32" not "int" and "Int64" not "long".
               This greately improves the understanding of the parameter sizes.
            (8) Sign of the types MUST be favored, eg "DWORD" is "UInt32" not "Int32".
            (9) Unsafe pointer types should be used for explicit and implicit pointers rather than IntPtr.
               This way we outline the unsafety of the native calls, and also make it more clear for the 64bit transition.
               Eg "HANDLE" is "void*". If the rule forces you to mark some assembly as unsafe, it's an indication a managed utility
               incapsulating the call and the handle should be provided in one of the already-unsafe assemblies.
            (A) Same rules must apply to members of the structures.
            (B) All of the structures MUST have the [StructLayout(LayoutKind.Sequential)], [NoReorder] attributes, as appropriate.
            </remarks>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Modules.UI.ControlPaintUnsafe">
            <summary>
            Encapsulates the utility classes for painting the controls.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Win32InteropException">
            <summary>
            Denotes an exception that occurs during the interop calls.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Wrappers.AuthenticodeHelpers.StripEmbeddedSignatures(System.String)">
            <summary>
            Strips an embedded Authenticode signature off the file, e.g. when you're about to modify its contents, which would render the existing signature invalid and prevent come of the tools from signing it once again after modification.
            </summary>
            <param name="sFilePath"></param>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Wrappers.AuthenticodeHelpers.VerifyEmbeddedSignature(System.String)">
            <summary>
            Asserts that the file has a valid signature. Throws an explanation exception if not.
            </summary>
            <param name="sFilePath"></param>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Wrappers.AuthenticodeHelpers.AuthenticodeSignatureException.VerificationFunctionError">
            <summary>
            The error returned by the verification function.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Wrappers.AuthenticodeHelpers.AuthenticodeSignatureException.VerificationGetLastError">
            <summary>
            The error returned by <c>GetLastError</c>.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Wrappers.ComStreamStream">
            <summary>
            Wraps a COM stream as a managed stream.
            NOTE: <see cref="T:System.IDisposable" /> is not wired.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Wrappers.ComStreamStream.#ctor(JetBrains.Interop.WinApi.Declarations.Interfaces.IStream,System.IO.FileAccess)">
            <summary>
            Wraps a stream whose lifetime is controlled from outside.
            The <see cref="M:System.IDisposable.Dispose" /> method does not do anything.
            If you'd like to close the native stream when the consumer disposes of the Stream object, use <c>StreamUnderLifetime</c> to wrap.
            </summary>
            <param name="stream"></param>
            <param name="overrideFileAccess">Optional. Some COM streams incorrectly report their READ/WRITE capabilities, or we have to open a stream with wider access than requested by client. In this case you can supply the desired file access which should determine what's exposed and allowed to the client.</param>
        </member>
        <member name="P:JetBrains.Interop.WinApi.Wrappers.JetSystemInformation.IsActiveWindowTracking">
            <summary>
            Determines whether active window tracking (activating the window the mouse is on) is on or off. 
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Wrappers.LockBytesOnHGlobal">
            <summary>
            Wraps ILockBytes created by CreateILockBytesOnHGlobal. Implements size growth on write by doubling the current size, but not exceeding the limit.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Wrappers.LockBytesWithGrowthStrategy">
            <summary>
            Wraps ILockBytes created by CreateILockBytesOnHGlobal. Constrains possible size changes via the <see cref="M:JetBrains.Interop.WinApi.Wrappers.LockBytesWithGrowthStrategy.ApplySizeStrategy(System.UInt64)" /> function.
            (the system implementation for <c>CreateILockBytesOnHGlobal</c> has a naive growth strategy which reallocs memory to just fit the bytes being written in the current operation, so it's O(N2) when writing much data with small buffers)
            </summary>
        </member>
        <member name="M:JetBrains.Interop.WinApi.Wrappers.LockBytesWithGrowthStrategy.ApplySizeStrategy(System.UInt64)">
            <summary>
            Rounds up to the nearest power of two.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Wrappers.NativeThunksForDelegates">
            <summary>
              <para>Pins managed delegates for which native thunks have been created to make them gc-reachable and prevent from being deallocated while they are still in use.</para>
              <para>Why just storing a reference with a controlling lifetime might not be enough? (1) We want to keep the thunk a bit longer than the stuff we want to tear down when the callback occurs, to make sure execution has enough time to exit the thunk. (2) Lifetime teardown might be the only scheduled activity for the thunk, and the lifetime might not have a parent lifetime, in which case delegate and lifetime form an isolated cycle and are not reachable for GC, and might be all collected prematurely, so we need a static root for this cycle.</para>
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Wrappers.NativeThunksForDelegates.DelegateComparer">
            <summary>
            Compares delegates by references, for us
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Wrappers.StreamLockBytes">
            <summary>
            Implements ILockBytes over a managed stream.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.WinApi.Wrappers.StreamLockBytes.myBuffer">
            <summary>
            Reusable buffer for RW functions. Assumes there is no reentrancy (thread-safety is usually guaranteed due to the COM nature).
            </summary>
        </member>
        <member name="T:JetBrains.Interop.WinApi.Wrappers.Win32Handle">
            <summary>
            A general-purpose wrapper for Windows handles
            </summary>
        </member>
        <member name="P:JetBrains.Interop.WinApi.Wrappers.Win32Handle.Handle">
            <summary>
             Gets the handle.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.Windows.Declarations.Constants.ControlNotificationCodes">
            <summary>
            From WinUser.h.
            The codes a control sends to its parent HWND alongside the <see cref="F:JetBrains.Interop.WinApi.WindowsMessages.WM_COMMAND" /> message in <see cref="M:JetBrains.Interop.WinApi.Macros.HIWORD(System.UInt32)" /> of <c>wParam</c>.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.Windows.Declarations.Constants.DebugExceptionCode">
            <summary>An exception code from the <see cref="T:JetBrains.Interop.WinApi.DEBUG_EVENT.EXCEPTION_RECORD"/> structure.</summary>
            <remarks>https://docs.microsoft.com/en-us/windows/win32/api/winnt/ns-winnt-exception_record</remarks>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.DebugExceptionCode.EXCEPTION_ACCESS_VIOLATION">
            <summary>The thread tried to read from or write to a virtual address for which it does not have the appropriate access.</summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.DebugExceptionCode.EXCEPTION_ARRAY_BOUNDS_EXCEEDED">
            <summary>The thread tried to access an array element that is out of bounds and the underlying hardware supports bounds checking.</summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.DebugExceptionCode.EXCEPTION_BREAKPOINT">
            <summary>A breakpoint was encountered.</summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.DebugExceptionCode.EXCEPTION_DATATYPE_MISALIGNMENT">
            <summary>The thread tried to read or write data that is misaligned on hardware that does not provide alignment. For example, 16-bit values must be aligned on 2-byte boundaries; 32-bit values on 4-byte boundaries, and so on.</summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.DebugExceptionCode.EXCEPTION_FLT_DENORMAL_OPERAND">
            <summary>One of the operands in a floating-point operation is denormal. A denormal value is one that is too small to represent as a standard floating-point value.</summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.DebugExceptionCode.EXCEPTION_FLT_DIVIDE_BY_ZERO">
            <summary>The thread tried to divide a floating-point value by a floating-point divisor of zero.</summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.DebugExceptionCode.EXCEPTION_FLT_INEXACT_RESULT">
            <summary>The result of a floating-point operation cannot be represented exactly as a decimal fraction.</summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.DebugExceptionCode.EXCEPTION_FLT_INVALID_OPERATION">
            <summary>This exception represents any floating-point exception not included in this list.</summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.DebugExceptionCode.EXCEPTION_FLT_OVERFLOW">
            <summary>The exponent of a floating-point operation is greater than the magnitude allowed by the corresponding type.</summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.DebugExceptionCode.EXCEPTION_FLT_STACK_CHECK">
            <summary>The stack overflowed or underflowed as the result of a floating-point operation.</summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.DebugExceptionCode.EXCEPTION_FLT_UNDERFLOW">
            <summary>The exponent of a floating-point operation is less than the magnitude allowed by the corresponding type.</summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.DebugExceptionCode.EXCEPTION_ILLEGAL_INSTRUCTION">
            <summary>The thread tried to execute an invalid instruction.</summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.DebugExceptionCode.EXCEPTION_IN_PAGE_ERROR">
            <summary>The thread tried to access a page that was not present, and the system was unable to load the page. For example, this exception might occur if a network connection is lost while running a program over the network.</summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.DebugExceptionCode.EXCEPTION_INT_DIVIDE_BY_ZERO">
            <summary>The thread tried to divide an integer value by an integer divisor of zero.</summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.DebugExceptionCode.EXCEPTION_INT_OVERFLOW">
            <summary>The result of an integer operation caused a carry out of the most significant bit of the result.</summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.DebugExceptionCode.EXCEPTION_INVALID_DISPOSITION">
            <summary>An exception handler returned an invalid disposition to the exception dispatcher. Programmers using a high-level language such as C should never encounter this exception.</summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.DebugExceptionCode.EXCEPTION_NONCONTINUABLE_EXCEPTION">
            <summary>The thread tried to continue execution after a noncontinuable exception occurred.</summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.DebugExceptionCode.EXCEPTION_PRIV_INSTRUCTION">
            <summary>The thread tried to execute an instruction whose operation is not allowed in the current machine mode.</summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.DebugExceptionCode.EXCEPTION_SINGLE_STEP">
            <summary>A trace trap or other single-instruction mechanism signaled that one instruction has been executed.</summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.DebugExceptionCode.EXCEPTION_STACK_OVERFLOW">
            <summary>The thread used up its stack.</summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.GetRawInputDataFlags.RID_HEADER">
            <summary>
            Get the raw data from the RAWINPUT structure.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.GetRawInputDataFlags.RID_INPUT">
            <summary>
            Get the header information from the RAWINPUT structure.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.Windows.Declarations.Constants.KeyboardMakeCodes">
            <seealso cref="F:JetBrains.Interop.Windows.Declarations.Structures.RAWKEYBOARD.MakeCode"/>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.KeyboardMakeCodes.KEYBOARD_OVERRUN_MAKE_CODE">
            <summary>
            Define the keyboard overrun MakeCode.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.Windows.Declarations.Constants.OBJECT_INFORMATION_CLASS">
            <summary>
            Indicates the kind of object information to be retrieved by <see cref="!:NtQueryObject"/>.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.OBJECT_INFORMATION_CLASS.ObjectBasicInformation">
            <summary>
            Returns a PUBLIC_OBJECT_BASIC_INFORMATION.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.OBJECT_INFORMATION_CLASS.ObjectNameInformation">
            <summary>
            Not documented. Returns a OBJECT_NAME_INFORMATION.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.OBJECT_INFORMATION_CLASS.ObjectTypeInformation">
            <summary>
            Returns a PUBLIC_OBJECT_TYPE_INFORMATION.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.OBJECT_INFORMATION_CLASS.ObjectAllTypesInformation">
            <summary>
            Not documented.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.OBJECT_INFORMATION_CLASS.ObjectHandleInformation">
            <summary>
            Not documented.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.Windows.Declarations.Constants.RTL_OSVERSIONINFOEXW_PRODUCT_TYPE">
            <summary>
            The product type. This member contains additional information about the system. This member can be one of the following values:
            Table 2
            <code>
            Value 	Meaning
            VER_NT_WORKSTATION 	Windows 2000 or later professional version
            VER_NT_DOMAIN_CONTROLLER 	Windows 2000 or later domain controller
            VER_NT_SERVER 	Windows 2000 or later server
            </code>
            </summary>
        </member>
        <member name="T:JetBrains.Interop.Windows.Declarations.Constants.RTL_OSVERSIONINFOEXW_SUITE_MASK">
            <summary>
            The product suites available on the system. This member is set to zero or to the bitwise OR of one or more of the following values.
            Table 1
            <code>
            Value 	Meaning
            VER_SUITE_BACKOFFICE 	Microsoft BackOffice components are installed.
            VER_SUITE_BLADE 	Windows Server 2003, Web Edition is installed.
            VER_SUITE_COMPUTE_SERVER 	Windows Server 2003, Compute Cluster Edition is installed.
            VER_SUITE_DATACENTER 	Windows Server 2008 Datacenter, Windows Server 2003, Datacenter Edition, or Windows 2000 Datacenter Server is installed.
            VER_SUITE_ENTERPRISE 	Windows Server 2008 Enterprise, Windows Server 2003, Enterprise Edition, or Windows 2000 Advanced Server is installed.
            VER_SUITE_EMBEDDEDNT 	Windows XP Embedded is installed.
            VER_SUITE_PERSONAL 	Windows Vista Home Premium, Windows Vista Home Basic, or Windows XP Home Edition is installed.
            VER_SUITE_SINGLEUSERTS 	Remote Desktop is supported, but only one interactive session is supported. This value is set unless the system is running in application server mode.
            VER_SUITE_SMALLBUSINESS (see note) 	Microsoft Small Business Server was once installed on the system, but may have been upgraded to another version of Windows. For more information about this flag bit, see the following Remarks section.
            VER_SUITE_SMALLBUSINESS_RESTRICTED 	Microsoft Small Business Server is installed with the restrictive client license in force. For more information about this flag bit, see the following Remarks section.
            VER_SUITE_STORAGE_SERVER 	Windows Storage Server 2003 R2 or Windows Storage Server 2003 is installed.
            VER_SUITE_TERMINAL 	Terminal Services is installed. This value is always set.
            
            If VER_SUITE_TERMINAL is set but VER_SUITE_SINGLEUSERTS is not set, the operating system is running in application server mode.
            VER_SUITE_WH_SERVER 	Windows Home Server is installed.
            </code>
            </summary>
        </member>
        <member name="T:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyEvents">
            <summary>
            The parameter of <see cref="M:JetBrains.Interop.WinApi.Shell32Dll.SHChangeNotify(JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyEvents,JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyFlags,System.Void*,System.Void*)"/>. Describes the event that has occurred.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyEvents.SHCNE_ALLEVENTS">
            <summary>
            All events have occurred. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyEvents.SHCNE_ASSOCCHANGED">
            <summary>
            A file type association has changed. <see cref="F:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyFlags.SHCNF_IDLIST"/> must be specified in the uFlags parameter. 
            <i>dwItem1</i> and <i>dwItem2</i> are not used and must be <see langword="null"/>. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyEvents.SHCNE_ATTRIBUTES">
            <summary>
            The attributes of an item or folder have changed. 
            <see cref="F:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyFlags.SHCNF_IDLIST"/> or SHChangeNotifyFlags.SHCNF_PATH must be specified in uFlags. 
            <i>dwItem1</i> contains the item or folder that has changed. 
            <i>dwItem2</i> is not used and should be <see langword="null"/>.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyEvents.SHCNE_CREATE">
            <summary>
            A nonfolder item has been created. 
            <see cref="F:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyFlags.SHCNF_IDLIST"/> or SHChangeNotifyFlags.SHCNF_PATH must be specified in uFlags. 
            <i>dwItem1</i> contains the item that was created. 
            <i>dwItem2</i> is not used and should be <see langword="null"/>.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyEvents.SHCNE_DELETE">
            <summary>
            A nonfolder item has been deleted. 
            <see cref="F:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyFlags.SHCNF_IDLIST"/> or SHChangeNotifyFlags.SHCNF_PATH must be specified in uFlags. 
            <i>dwItem1</i> contains the item that was deleted. 
            <i>dwItem2</i> is not used and should be <see langword="null"/>. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyEvents.SHCNE_DRIVEADD">
            <summary>
            A drive has been added. 
            <see cref="F:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyFlags.SHCNF_IDLIST"/> or SHChangeNotifyFlags.SHCNF_PATH must be specified in uFlags. 
            <i>dwItem1</i> contains the root of the drive that was added. 
            <i>dwItem2</i> is not used and should be <see langword="null"/>. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyEvents.SHCNE_DRIVEADDGUI">
            <summary>
            A drive has been added and the Shell should create a new window for the drive. 
            <see cref="F:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyFlags.SHCNF_IDLIST"/> or SHChangeNotifyFlags.SHCNF_PATH must be specified in uFlags. 
            <i>dwItem1</i> contains the root of the drive that was added. 
            <i>dwItem2</i> is not used and should be <see langword="null"/>. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyEvents.SHCNE_DRIVEREMOVED">
            <summary>
            A drive has been removed.
            <see cref="F:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyFlags.SHCNF_IDLIST"/> or  SHChangeNotifyFlags.SHCNF_PATH must be specified in uFlags. 
            <i>dwItem1</i> contains the root of the drive that was removed.
            <i>dwItem2</i> is not used and should be <see langword="null"/>. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyEvents.SHCNE_EXTENDED_EVENT">
            <summary>
            Not currently used. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyEvents.SHCNE_FREESPACE">
            <summary>
            The amount of free space on a drive has changed. 
            <see cref="F:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyFlags.SHCNF_IDLIST"/> or SHChangeNotifyFlags.SHCNF_PATH must be specified in uFlags. 
            <i>dwItem1</i> contains the root of the drive on which the free space changed.
            <i>dwItem2</i> is not used and should be <see langword="null"/>. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyEvents.SHCNE_MEDIAINSERTED">
            <summary>
            Storage media has been inserted into a drive. 
            <see cref="F:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyFlags.SHCNF_IDLIST"/> or SHChangeNotifyFlags.SHCNF_PATH must be specified in uFlags. 
            <i>dwItem1</i> contains the root of the drive that contains the new media. 
            <i>dwItem2</i> is not used and should be <see langword="null"/>. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyEvents.SHCNE_MEDIAREMOVED">
            <summary>
            Storage media has been removed from a drive. 
            <see cref="F:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyFlags.SHCNF_IDLIST"/> or SHChangeNotifyFlags.SHCNF_PATH must be specified in uFlags. 
            <i>dwItem1</i> contains the root of the drive from which the media was removed. 
            <i>dwItem2</i> is not used and should be <see langword="null"/>. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyEvents.SHCNE_MKDIR">
            <summary>
            A folder has been created.
            <see cref="F:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyFlags.SHCNF_IDLIST"/> or SHChangeNotifyFlags.SHCNF_PATH must be specified in uFlags. 
            <i>dwItem1</i> contains the folder that was created. 
            <i>dwItem2</i> is not used and should be <see langword="null"/>. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyEvents.SHCNE_NETSHARE">
            <summary>
            A folder on the local computer is being shared via the network. 
            <see cref="F:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyFlags.SHCNF_IDLIST"/> or SHChangeNotifyFlags.SHCNF_PATH must be specified in uFlags. 
            <i>dwItem1</i> contains the folder that is being shared. 
            <i>dwItem2</i> is not used and should be <see langword="null"/>. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyEvents.SHCNE_NETUNSHARE">
            <summary>
            A folder on the local computer is no longer being shared via the network. 
            <see cref="F:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyFlags.SHCNF_IDLIST"/> or SHChangeNotifyFlags.SHCNF_PATH must be specified in uFlags. 
            <i>dwItem1</i> contains the folder that is no longer being shared. 
            <i>dwItem2</i> is not used and should be <see langword="null"/>. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyEvents.SHCNE_RENAMEFOLDER">
            <summary>
            The name of a folder has changed. 
            <see cref="F:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyFlags.SHCNF_IDLIST"/> or SHChangeNotifyFlags.SHCNF_PATH must be specified in uFlags. 
            <i>dwItem1</i> contains the previous pointer to an item identifier list (PIDL) or name of the folder. 
            <i>dwItem2</i> contains the new PIDL or name of the folder. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyEvents.SHCNE_RENAMEITEM">
            <summary>
            The name of a nonfolder item has changed. 
            <see cref="F:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyFlags.SHCNF_IDLIST"/> or SHChangeNotifyFlags.SHCNF_PATH must be specified in uFlags. 
            <i>dwItem1</i> contains the previous PIDL or name of the item. 
            <i>dwItem2</i> contains the new PIDL or name of the item. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyEvents.SHCNE_RMDIR">
            <summary>
            A folder has been removed. 
            <see cref="F:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyFlags.SHCNF_IDLIST"/> or SHChangeNotifyFlags.SHCNF_PATH must be specified in uFlags. 
            <i>dwItem1</i> contains the folder that was removed. 
            <i>dwItem2</i> is not used and should be <see langword="null"/>. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyEvents.SHCNE_SERVERDISCONNECT">
            <summary>
            The computer has disconnected from a server. 
            <see cref="F:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyFlags.SHCNF_IDLIST"/> or SHChangeNotifyFlags.SHCNF_PATH must be specified in uFlags. 
            <i>dwItem1</i> contains the server from which the computer was disconnected. 
            <i>dwItem2</i> is not used and should be <see langword="null"/>. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyEvents.SHCNE_UPDATEDIR">
            <summary>
            The contents of an existing folder have changed, 
            but the folder still exists and has not been renamed. 
            <see cref="F:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyFlags.SHCNF_IDLIST"/> or SHChangeNotifyFlags.SHCNF_PATH must be specified in uFlags. 
            <i>dwItem1</i> contains the folder that has changed. 
            <i>dwItem2</i> is not used and should be <see langword="null"/>. 
            If a folder has been created, deleted, or renamed, use SHCNE_MKDIR, SHCNE_RMDIR, or 
            SHCNE_RENAMEFOLDER, respectively, instead. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyEvents.SHCNE_UPDATEIMAGE">
            <summary>
            An image in the system image list has changed. 
            <see cref="F:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyFlags.SHCNF_DWORD"/> must be specified in uFlags.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyFlags">
            <summary>
            The parameter of <see cref="M:JetBrains.Interop.WinApi.Shell32Dll.SHChangeNotify(JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyEvents,JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyFlags,System.Void*,System.Void*)"/>.
            Flags that, when combined bitwise with <see cref="F:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyFlags.SHCNF_TYPE"/>, indicate the meaning of the dwItem1 and dwItem2 parameters.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyFlags.SHCNF_IDLIST">
            <summary>
            <i>dwItem1</i> and <i>dwItem2</i> are the addresses of ITEMIDLIST structures that 
            represent the item(s) affected by the change. 
            Each ITEMIDLIST must be relative to the desktop folder. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyFlags.SHCNF_PATHA">
            <summary>
            <i>dwItem1</i> and <i>dwItem2</i> are the addresses of null-terminated strings of 
            maximum length MAX_PATH that contain the full path names 
            of the items affected by the change. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyFlags.SHCNF_PRINTERA">
            <summary>
            <i>dwItem1</i> and <i>dwItem2</i> are the addresses of null-terminated strings that 
            represent the friendly names of the printer(s) affected by the change. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyFlags.SHCNF_DWORD">
            <summary>
            The <i>dwItem1</i> and <i>dwItem2</i> parameters are DWORD values. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyFlags.SHCNF_PATHW">
            <summary>
            <i>dwItem1</i> and <i>dwItem2</i> are the addresses of null-terminated strings of 
            maximum length MAX_PATH that contain the full path names 
            of the items affected by the change. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyFlags.SHCNF_PRINTERW">
            <summary>
            <i>dwItem1</i> and <i>dwItem2</i> are the addresses of null-terminated strings that 
            represent the friendly names of the printer(s) affected by the change. 
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyFlags.SHCNF_FLUSH">
            <summary>
            The function should not return until the notification 
            has been delivered to all affected components. 
            As this flag modifies other data-type flags, it cannot by used by itself.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.SHChangeNotifyFlags.SHCNF_FLUSHNOWAIT">
            <summary>
            The function should begin delivering notifications to all affected components 
            but should return as soon as the notification process has begun. 
            As this flag modifies other data-type flags, it cannot by used by itself.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.Windows.Declarations.Constants.SYSTEM_INFORMATION_CLASS">
            <summary>
            Indicates the kind of system information to be retrieved by <see cref="!:NtQuerySystemInformation"/>, ZwQuerySystemInformation, ZwQuerySystemInformationEx and ZwSetSystemInformation functions.
            </summary>
            <remarks>
            https://www.geoffchappell.com/studies/windows/km/ntoskrnl/api/ex/sysinfo/class.htm
            Different values select different types of information to query or set.
            Of the very many defined cases, some can be used successfully only to query or only to set.
            Some can’t usefully be called either way—at least, not in all versions. 
            </remarks>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.SYSTEM_INFORMATION_CLASS.SystemBasicInformation">
            <summary>
            Returns the number of processors in the system in a SYSTEM_BASIC_INFORMATION structure. Use the GetSystemInfo function instead.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.SYSTEM_INFORMATION_CLASS.SystemHandleInformation">
            <summary>
            Not documented. Returns system handle information in a SYSTEM_HANDLE_INFORMATION structure.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.SYSTEM_INFORMATION_CLASS.SystemExtendedHandleInformation">
            <summary>
            Not documented. Returns system handle information in a SYSTEM_HANDLE_INFORMATION_EX structure.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Constants.SYSTEM_INFORMATION_CLASS.SystemProcessIdInformation">
            <summary>
            Not documented. Returns SYSTEM_PROCESS_ID_INFORMATION.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Structures.CREDENTIAL.Flags">
            <summary>
            <para>A bit member that identifies characteristics of the credential.</para>
            <para>
            Undefined bits should be initialized as zero and not otherwise altered to permit
            future enhancement.
            </para>
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Structures.CREDENTIAL.Type">
            <summary>
            <para>
            The type of the credential. This member cannot be changed after the credential is created.
            </para>
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Structures.CREDENTIAL.Comment">
            <summary>
            <para>A string comment from the user that describes this credential.</para>
            <para>This member cannot be longer than ` <see cref="F:JetBrains.Interop.Windows.Declarations.Structures.CREDENTIAL.STRING_MAX_LENGTH"/>` characters.</para>
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Structures.CREDENTIAL.LastWritten">
            <summary>
            <para>
            The time, in Coordinated Universal Time (Greenwich Mean Time), of the last
            modification of the credential.
            </para>
            <para>For write operations, the value of this member is ignored.</para>
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Structures.CREDENTIAL.CredentialBlobSize">
            <summary>
            <para>The size, in bytes, of the ` <see cref="F:JetBrains.Interop.Windows.Declarations.Structures.CREDENTIAL.CredentialBlob"/>` member.</para>
            <para>This member cannot be larger than ` <see cref="F:JetBrains.Interop.Windows.Declarations.Structures.CREDENTIAL.PASSWORD_MAX_LENGTH"/>` bytes.</para>
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Structures.CREDENTIAL.CredentialBlob">
            <summary>
            <para>
            Secret data for the credential. The CredentialBlob member can be both read and written.
            </para>
            <para>
            If the ` <see cref="F:JetBrains.Interop.Windows.Declarations.Structures.CREDENTIAL.Type"/>` member is `
            <see cref="!:CredentialType.DomainPassword"/>`, this member contains the plaintext
            Unicode password for ` <see cref="F:JetBrains.Interop.Windows.Declarations.Structures.CREDENTIAL.UserName"/>`.
            </para>
            <para>
            The ` <see cref="F:JetBrains.Interop.Windows.Declarations.Structures.CREDENTIAL.CredentialBlob"/>` and ` <see cref="F:JetBrains.Interop.Windows.Declarations.Structures.CREDENTIAL.CredentialBlobSize"/>` members
            do not include a trailing zero character.
            </para>
            <para>
            Also, for ` <see cref="!:CredentialType.DomainPassword"/>`, this member can only be
            read by the authentication packages.
            </para>
            <para>
            If the Type member is ` <see cref="!:CredentialType.DomainCertificate"/>`, this member
            contains the clear test Unicode PIN for ` <see cref="F:JetBrains.Interop.Windows.Declarations.Structures.CREDENTIAL.UserName"/>`.
            </para>
            <para>
            The ` <see cref="F:JetBrains.Interop.Windows.Declarations.Structures.CREDENTIAL.CredentialBlob"/>` and ` <see cref="F:JetBrains.Interop.Windows.Declarations.Structures.CREDENTIAL.CredentialBlobSize"/>` members
            do not include a trailing zero character.
            </para>
            <para>Also, this member can only be read by the authentication packages.</para>
            <para>
            If the ` <see cref="F:JetBrains.Interop.Windows.Declarations.Structures.CREDENTIAL.Type"/>` member is ` <see cref="!:CredentialType.Generic"/>`, this
            member is defined by the application.
            </para>
            <para>
            Credentials are expected to be portable. Applications should ensure that the data in
            ` <see cref="F:JetBrains.Interop.Windows.Declarations.Structures.CREDENTIAL.CredentialBlob"/>` is portable.
            </para>
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Structures.CREDENTIAL.Persist">
            <summary>
            <para>Defines the persistence of this credential. This member can be read and written.</para>
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Structures.CREDENTIAL.AttributeCount">
            <summary>
            <para>The number of application-defined attributes to be associated with the credential.</para>
            <para>This member can be read and written. Its value cannot be greater than ` <see cref="F:JetBrains.Interop.Windows.Declarations.Structures.CREDENTIAL.ATTRIBUTE_MAX_LENGTH"/>`.</para>
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Structures.CREDENTIAL.Attributes">
            <summary>
            <para>
            Application-defined attributes that are associated with the credential. This member
            can be read and written.
            </para>
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Structures.CREDENTIAL.TargetAlias">
            <summary>
            <para>
            Alias for the TargetName member. This member can be read and written. It cannot be
            longer than ` <see cref="F:JetBrains.Interop.Windows.Declarations.Structures.CREDENTIAL.STRING_MAX_LENGTH"/>` characters.
            </para>
            <para>
            If the credential Type is ` <see cref="!:CredentialType.Generic"/>`, this member can be
            non-NULL, but the credential manager ignores the member.
            </para>
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Structures.CREDENTIAL.UserName">
            <summary>
            <para>The user name of the account used to connect to TargetName.</para>
            <para>
            If the credential Type is ` <see cref="!:CredentialType.DomainPassword"/>`, this member
            can be either a DomainName\UserName or a UPN.
            </para>
            <para>
            If the credential Type is ` <see cref="!:CredentialType.DomainCertificate"/>`, this
            member must be a marshaled certificate reference created by calling
            `CredMarshalCredential` with a `CertCredential`.
            </para>
            <para>
            If the credential Type is ` <see cref="!:CredentialType.Generic"/>`, this member can be
            non-NULL, but the credential manager ignores the member.
            </para>
            <para>This member cannot be longer than CRED_MAX_USERNAME_LENGTH(513) characters.</para>
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Structures.CREDENTIAL_FLAGS.PromptNow">
            <summary>
            <para>
            Bit set if the ` <see cref="!:Credential"/>` does not persist the `
            <see cref="!:Credential.CredentialBlob"/>` and the credential has not been written
            during this logon session. This bit is ignored on input and is set automatically when queried.
            </para>
            <para>
            If ` <see cref="T:System.Type"/>` is
            <see cref="!:CredentialType.DomainCertificate"/>, the `
            <see cref="!:Credential.CredentialBlob"/>` is not persisted across logon sessions
            because the PIN of a certificate is very sensitive information.
            </para>
            <para>
            Indeed, when the credential is written to credential manager, the PIN is passed to
            the CSP associated with the certificate. The CSP will enforce a PIN retention policy
            appropriate to the certificate.
            </para>
            <para>
            If Type is ` <see cref="!:CredentialType.DomainPassword"/>` or `
            <see cref="!:CredentialType.DomainCertificate"/>`, an authentication package always
            fails an authentication attempt when using credentials marked as ` <see cref="F:JetBrains.Interop.Windows.Declarations.Structures.CREDENTIAL_FLAGS.PromptNow"/>`.
            </para>
            <para>
            The application (typically through the key ring UI) prompts the user for the
            password. The application saves the credential and retries the authentication.
            </para>
            <para>
            Because the credential has been recently written, the authentication package now gets
            a credential that is not marked as ` <see cref="F:JetBrains.Interop.Windows.Declarations.Structures.CREDENTIAL_FLAGS.PromptNow"/>`.
            </para>
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Structures.CREDENTIAL_FLAGS.UsernameTarget">
            <summary>
            <para>
            Bit is set if this ` <see cref="!:Credential"/>` has a `
            <see cref="!:Credential.TargetName"/>` member set to the same value as the `
            <see cref="!:Credential.UserName"/>` member.
            </para>
            <para>
            Such a credential is one designed to store the `
            <see cref="!:Credential.CredentialBlob"/>` for a specific user.
            </para>
            <para>
            This bit can only be specified if ` <see cref="T:System.Type"/>` is `
            <see cref="!:CredentialType.DomainPassword"/>` or <see cref="!:CredentialType.DomainCertificate"/>.
            </para>
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Structures.CRED_PERSIST.SESSION">
            <summary>
            The credential persists for the life of the logon session.
            It will not be visible to other logon sessions of this same user. It will not exist after this user logs off and back on.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Structures.CRED_PERSIST.LOCAL_MACHINE">
            <summary>
            The credential persists for all subsequent logon sessions on this same computer.
            It is visible to other logon sessions of this same user on this same computer and not visible to logon sessions for this user on other computers.
            Windows Vista Home Basic, Windows Vista Home Premium, Windows Vista Starter and Windows XP Home Edition:  This value is not supported.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Structures.CRED_PERSIST.ENTERPRISE">
            <summary>
            The credential persists for all subsequent logon sessions on this same computer.
            It is visible to other logon sessions of this same user on this same computer and to logon sessions for this user on other computers.
            This option can be implemented as locally persisted credential if the administrator or user configures the user account to not have roam-able state.
            For instance, if the user has no roaming profile, the credential will only persist locally.
            Windows Vista Home Basic, Windows Vista Home Premium, Windows Vista Starter and Windows XP Home Edition:  This value is not supported.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Structures.CRED_TYPE.GENERIC">
            <summary>
            The credential is a generic credential. The credential will not be used by any particular authentication package.
            The credential will be stored securely but has no other significant characteristics.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Structures.CRED_TYPE.DOMAIN_PASSWORD">
            <summary>
            The credential is a password credential and is specific to Microsoft's authentication packages.
            The NTLM, Kerberos, and Negotiate authentication packages will automatically use this credential when connecting to the named target.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Structures.CRED_TYPE.DOMAIN_CERTIFICATE">
            <summary>
            The credential is a certificate credential and is specific to Microsoft's authentication packages.
            The Kerberos, Negotiate, and Schannel authentication packages automatically use this credential when connecting to the named target.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Structures.CRED_TYPE.DOMAIN_VISIBLE_PASSWORD">
            <summary>
            This value is no longer supported.
            Windows Server 2003 and Windows XP:  The credential is a password credential and is specific to authentication packages from Microsoft.
            The Passport authentication package will automatically use this credential when connecting to the named target.
            Additional values will be defined in the future. Applications should be written to allow for credential types they do not understand.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Structures.CRED_TYPE.GENERIC_CERTIFICATE">
            <summary>
            The credential is a certificate credential that is a generic authentication package.
            Windows Server 2008, Windows Vista, Windows Server 2003 and Windows XP:  This value is not supported.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Structures.CRED_TYPE.DOMAIN_EXTENDED">
            <summary>
            The credential is supported by extended Negotiate packages.
            Windows Server 2008, Windows Vista, Windows Server 2003 and Windows XP:  This value is not supported.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Structures.CRED_TYPE.MAXIMUM">
            <summary>
            The maximum number of supported credential types.
            Windows Server 2008, Windows Vista, Windows Server 2003 and Windows XP:  This value is not supported.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Structures.CRED_TYPE.MAXIMUM_EX">
            <summary>
            The extended maximum number of supported credential types that now allow new applications to run on older operating systems.
            Windows Server 2008, Windows Vista, Windows Server 2003 and Windows XP:  This value is not supported.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.Windows.Declarations.Structures.ICONRESDIR.FromICONDIRENTRY(JetBrains.Interop.Windows.Declarations.Structures.ICONDIRENTRY,System.UInt16)">
            <summary>
            This struct is very similar to <see cref="T:JetBrains.Interop.Windows.Declarations.Structures.ICONDIRENTRY" />, but has a WORD resource name for RT_ICON instead of the DWORD offset to the bitmap bytes.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.Windows.Declarations.Structures.NONCLIENTMETRICS">
            <summary>
            Contains the scalable metrics associated with the nonclient area of a nonminimized window. This structure is used by the SPI_GETNONCLIENTMETRICS and SPI_SETNONCLIENTMETRICS actions of the SystemParametersInfo function.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.Windows.Declarations.Structures.PROCESS_MEMORY_COUNTERS_EX">
            <summary>
            Contains extended memory statistics for a process. See: <see cref="M:JetBrains.Interop.WinApi.PsApiDll.GetProcessMemoryInfo(System.Void*,JetBrains.Interop.Windows.Declarations.Structures.PROCESS_MEMORY_COUNTERS_EX*,System.UInt32)"/>.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.Windows.Declarations.Structures.RAWHID">
            <summary>
            Raw format of the input from Human Input Devices
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Structures.RAWINPUTHEADER.dwType">
            <seealso cref="T:JetBrains.Interop.Windows.Declarations.Constants.TypeOfRawInput"/>
        </member>
        <member name="T:JetBrains.Interop.Windows.Declarations.Structures.RAWKEYBOARD">
            <summary>
            Raw format of the keyboard input
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Structures.RAWKEYBOARD.MakeCode">
            <summary>
            The "make" scan code (key depression).
            </summary>
            <seealso cref="T:JetBrains.Interop.Windows.Declarations.Constants.KeyboardMakeCodes" />
        </member>
        <member name="T:JetBrains.Interop.Windows.Declarations.Structures.RAWMOUSE">
            <summary>
            Raw format of the mouse input
            </summary>
        </member>
        <member name="T:JetBrains.Interop.Windows.Declarations.Structures.RTL_OSVERSIONINFOEXW">
            <summary>
            Contains operating system version information.
            </summary>
            <remarks>
              <para>The information in this structure includes the major and minor version numbers, the build number, the platform identifier, the installed product suites, and the latest service pack that is installed on the system. This structure is used with the RtlGetVersion and RtlVerifyVersionInfo routines.</para>
              <para>Relying on version information is not always the best way to test whether a feature is available. For guidance, refer to the documentation for the feature you are interested in.</para>
              <para>If possible, design the version detection code in your driver to enable the driver to run on future versions of Windows. If your driver requires a particular operating system version, be sure to treat this version as the minimum supported version, and not as the only version on which the driver can run.</para>
              <para>The following table summarizes the version information that is returned by supported versions of Windows. Use the information in the "Other" column to distinguish between operating systems with identical version numbers.</para>
              <code>
            Operating system 	Version number 	dwMajorVersion 	dwMinorVersion 	Other
            Windows Server 2019 	10.0 	10 	0 	wProductType != VER_NT_WORKSTATION
            Windows 10 	10.0 	10 	0 	wProductType == VER_NT_WORKSTATION
            Windows Server 2016 	10.0 	10 	0 	wProductType != VER_NT_WORKSTATION
            Windows Server 2012 R2 	6.3 	6 	3 	wProductType != VER_NT_WORKSTATION
            Windows 8.1 	6.3 	6 	3 	wProductType == VER_NT_WORKSTATION
            Windows 8 	6.2 	6 	2 	wProductType == VER_NT_WORKSTATION
            Windows Server 2012 	6.2 	6 	2 	wProductType != VER_NT_WORKSTATION
            Windows 7 	6.1 	6 	1 	wProductType == VER_NT_WORKSTATION
            Windows Server 2008 R2 	6.1 	6 	1 	wProductType != VER_NT_WORKSTATION
            Windows Server 2008 	6.0 	6 	0 	wProductType != VER_NT_WORKSTATION
            Windows Vista 	6.0 	6 	0 	wProductType == VER_NT_WORKSTATION
            Windows Home Server 	5.2 	5 	2 	wSuiteMask == VER_SUITE_WH_SERVER
            Windows Server 2003 	5.2 	5 	2 	Not applicable
            Windows XP Professional x64 Edition (see note) 	5.2 	5 	2 	wProductType == VER_NT_WORKSTATION
            Windows XP 	5.1 	5 	1 	Not applicable
            Windows 2000 	5.0 	5 	0 	Not applicable
            </code>
            </remarks>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Structures.RTL_OSVERSIONINFOEXW.dwOSVersionInfoSize">
            <summary>
            The size, in bytes, of an <see cref="T:JetBrains.Interop.Windows.Declarations.Structures.RTL_OSVERSIONINFOEXW" /> structure. This member must be set before the structure is used with <see cref="M:JetBrains.Interop.WinApi.NtDllDll.RtlGetVersion(JetBrains.Interop.Windows.Declarations.Structures.RTL_OSVERSIONINFOEXW*)" />.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Structures.RTL_OSVERSIONINFOEXW.dwMajorVersion">
            <summary>
            The major version number of the operating system. For example, for Windows 2000, the major version number is five. For more information, see the table in Remarks.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Structures.RTL_OSVERSIONINFOEXW.dwMinorVersion">
            <summary>
            The minor version number of the operating system. For example, for Windows 2000, the minor version number is zero. For more information, see the table in Remarks.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Structures.RTL_OSVERSIONINFOEXW.dwBuildNumber">
            <summary>
            The build number of the operating system.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Structures.RTL_OSVERSIONINFOEXW.dwPlatformId">
            <summary>
            The operating system platform. For Win32 on NT-based operating systems, RtlGetVersion returns the value VER_PLATFORM_WIN32_NT.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Structures.RTL_OSVERSIONINFOEXW.szCSDVersion">
            <summary>
            The service-pack version string. This member contains a null-terminated string, such as "Service Pack 3", which indicates the latest service pack installed on the system. If no service pack is installed, RtlGetVersion might not initialize this string. Initialize szCSDVersion to zero (empty string) before the call to RtlGetVersion.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Structures.RTL_OSVERSIONINFOEXW.wServicePackMajor">
            <summary>
            The major version number of the latest service pack installed on the system. For example, for Service Pack 3, the major version number is three. If no service pack has been installed, the value is zero.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Structures.RTL_OSVERSIONINFOEXW.wServicePackMinor">
            <summary>
            The minor version number of the latest service pack installed on the system. For example, for Service Pack 3, the minor version number is zero.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Structures.RTL_OSVERSIONINFOEXW.wSuiteMask">
            <summary>
            The product suites available on the system. This member is set to zero or to the bitwise OR of one or more of <see cref="T:JetBrains.Interop.Windows.Declarations.Constants.RTL_OSVERSIONINFOEXW_SUITE_MASK">the following values</see>.
            </summary>
            <remarks>
            Note   You should not rely solely on the VER_SUITE_SMALLBUSINESS flag to determine whether Small Business Server is currently installed. Both this flag and the VER_SUITE_SMALLBUSINESS_RESTRICTED flag are set when this product suite is installed. If you upgrade this installation to Windows Server, Standard Edition, the VER_SUITE_SMALLBUSINESS_RESTRICTED flag is cleared, but the VER_SUITE_SMALLBUSINESS flag remains set, which, in this case, indicates that Small Business Server was previously installed on this system. If this installation is further upgraded to Windows Server, Enterprise Edition, the VER_SUITE_SMALLBUSINESS flag remains set.
            </remarks>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Structures.RTL_OSVERSIONINFOEXW.wProductType">
            <summary>
            The product type. This member contains additional information about the system. This member can be one of <see cref="T:JetBrains.Interop.Windows.Declarations.Constants.RTL_OSVERSIONINFOEXW_PRODUCT_TYPE">the following values</see>.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Declarations.Structures.RTL_OSVERSIONINFOEXW.wReserved">
            <summary>
            Reserved for future use.
            </summary>
        </member>
        <member name="T:JetBrains.Interop.Windows.Declarations.Structures.SYSTEM_PROCESS_ID_INFORMATION">
            <summary>
            The SYSTEM_PROCESS_ID_INFORMATION structure provides input to and receives output from the ZwQuerySystemInformation or <see cref="M:JetBrains.Interop.WinApi.NtDllDll.NtQuerySystemInformation(System.UInt32,System.Void*,System.UInt32,System.UInt32*)"/> functions when given the information class SystemProcessIdInformation (0x58).
            </summary>
            <remarks>
            https://www.geoffchappell.com/studies/windows/km/ntoskrnl/api/ex/sysinfo/process_id.htm
            </remarks>
        </member>
        <member name="P:JetBrains.Interop.Windows.Wrappers.MaybeLResult.I">
            <summary>
            Standard one return value.
            </summary>
        </member>
        <member name="P:JetBrains.Interop.Windows.Wrappers.MaybeLResult.O">
            <summary>
            Standard zero return value.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.Windows.Wrappers.MaybeLResult.ToString">
            <inheritdoc />
        </member>
        <member name="F:JetBrains.Interop.Windows.Wrappers.NativeWin32Window.GWLP_InstanceGCHandle">
            <summary>
            A slot in cbWndExtra window extra memory, to be read with GetWindowLongPtrW. Holds a GCHandle to the <see cref="T:JetBrains.Interop.Windows.Wrappers.NativeWin32Window" /> instance.
            This way the WNDPROC of the window class is an ever-living thunk for a common delegate to a static WndProc function, so it won't go invalid and AV even if you lose references to your class.
            And it uses this GCHandle to keep the class alive while the window lives, so this might theoretically leak if you lose all references, but again not an AV.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Wrappers.NativeWin32Window.myWndProcHooks">
            <summary>
            User impl for wndproc. Modify under <see cref="F:JetBrains.Interop.Windows.Wrappers.NativeWin32Window.myLockWndProcHooks" />.
            </summary>
        </member>
        <member name="P:JetBrains.Interop.Windows.Wrappers.NativeWin32Window.RawHandle">
            <summary>
            Reinterpret-casts <see cref="P:JetBrains.Interop.Windows.Wrappers.NativeWin32Window.RawHWnd" />.
            </summary>
        </member>
        <member name="P:JetBrains.Interop.Windows.Wrappers.NativeWin32Window.ValidHandle">
            <summary>
            Reinterpret-casts <see cref="P:JetBrains.Interop.Windows.Wrappers.NativeWin32Window.ValidHWnd" />.
            </summary>
        </member>
        <member name="P:JetBrains.Interop.Windows.Wrappers.NativeWin32Window.RawHWnd">
            <summary>
            The window handle, or NULL if it's been destroyed. In process of destroying, might be an invalid value momentarily.
            </summary>
            <seealso cref="P:JetBrains.Interop.Windows.Wrappers.NativeWin32Window.ValidHWnd" />
            <seealso cref="P:JetBrains.Interop.Windows.Wrappers.NativeWin32Window.IsValidWindow" />
        </member>
        <member name="P:JetBrains.Interop.Windows.Wrappers.NativeWin32Window.ValidHWnd">
            <summary>
            Asserts <see cref="P:JetBrains.Interop.Windows.Wrappers.NativeWin32Window.IsValidWindow">the handle is OK</see> before returning.
            </summary>
            <seealso cref="P:JetBrains.Interop.Windows.Wrappers.NativeWin32Window.RawHWnd" />
            <seealso cref="P:JetBrains.Interop.Windows.Wrappers.NativeWin32Window.IsValidWindow" />
        </member>
        <member name="P:JetBrains.Interop.Windows.Wrappers.NativeWin32Window.IsValidWindow">
            <summary>
            Gets whether this window hasn't yet been destroyed and has a valid window handle in <see cref="P:JetBrains.Interop.Windows.Wrappers.NativeWin32Window.RawHWnd" />. <see cref="P:JetBrains.Interop.Windows.Wrappers.NativeWin32Window.ValidHWnd" /> won't throw in this case (if called on home thread of course).
            </summary>
            <seealso cref="P:JetBrains.Interop.Windows.Wrappers.NativeWin32Window.RawHWnd" />
            <seealso cref="P:JetBrains.Interop.Windows.Wrappers.NativeWin32Window.ValidHWnd" />
        </member>
        <member name="M:JetBrains.Interop.Windows.Wrappers.NativeWin32Window.Destroy">
            <summary>
            Destroys the native window. <see cref="P:JetBrains.Interop.Windows.Wrappers.NativeWin32Window.IsValidWindow" /> gets <c>False</c>, and <see cref="P:JetBrains.Interop.Windows.Wrappers.NativeWin32Window.RawHWnd" /> gets <c>NULL</c>. If you have a message handler in <see cref="M:JetBrains.Interop.Windows.Wrappers.NativeWin32Window.RegisterWndProcHook(JetBrains.Interop.Windows.Wrappers.NativeWin32Window.WndProcHook)" />, it still gets the <see cref="F:JetBrains.Interop.WinApi.WindowsMessages.WM_DESTROY" /> and <see cref="F:JetBrains.Interop.WinApi.WindowsMessages.WM_NCDESTROY" /> messages.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.Windows.Wrappers.NativeWin32Window.RegisterWndProcHook(JetBrains.Interop.Windows.Wrappers.NativeWin32Window.WndProcHook)">
            <summary>
            Allows to handle messages for this window, determining whether to let them to next handlers and <see cref="M:JetBrains.Interop.WinApi.User32Dll.DefWindowProcW(System.Void*,System.UInt32,System.IntPtr,System.IntPtr)" />.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.Windows.Wrappers.NativeWin32Window.RegisterOrReuseWndClass(JetBrains.Interop.WinApi.WindowClassStyles,System.Boolean)">
            <summary>
            Register or reuse a class with fitting parameters, which are:
            * Class style (defined by the client).
            * WNDPROC (a static, so reused within this appdomain, but might clash if there's more than one appdomain in the process => need to derive wndclass identity from that too).
            </summary>
        </member>
        <member name="P:JetBrains.Interop.Windows.Wrappers.NativeWin32Window.WindowClassInputParameters.GeneratedClassName">
            <summary>
            Derives a class name from unique input params. MUST be unique per process, hence appdomain id.
            Length limit is FFh so we are good here.
            </summary>
        </member>
        <member name="F:JetBrains.Interop.Windows.Wrappers.NativeWin32Window.Params.WndProc">
            <summary>
            Similar to calling <see cref="M:JetBrains.Interop.Windows.Wrappers.NativeWin32Window.RegisterWndProcHook(JetBrains.Interop.Windows.Wrappers.NativeWin32Window.WndProcHook)"/> except for that it gets all of the window creation sequence messages, while registering happens on an already-existing window.
            </summary>
        </member>
        <member name="M:JetBrains.Interop.Windows.Wrappers.NativeWin32Window.UndoRegisterHook.Dispose">
            <inheritdoc />
        </member>
        <member name="T:JetBrains.Interop.Windows.Wrappers.NativeWin32Window.WndProcHook">
            <summary>
            A <see cref="T:JetBrains.Interop.WinApi.Functions.WNDPROC" />-like handler whose LRESULT is wrapped with a Maybe monad for whether you've handled the message or not.
            </summary>
            <param name="hwnd">Type: HWND. A handle to the window.</param>
            <param name="msg">The message.</param>
            <param name="wParam">Additional message information.</param>
            <param name="lParam">Additional message information.</param>
            <returns>
              <para><c>lResult</c>: Type: LRESULT. The return value is the result of the message processing and depends on the message sent.</para>
              <para><c>IsHandled</c>:
            <c>True</c> means you've consumed the message, your <c>lResult</c> should be used for <see cref="T:JetBrains.Interop.WinApi.Functions.WNDPROC" />'s result, and subsequent handlers (or <see cref="M:JetBrains.Interop.WinApi.User32Dll.DefWindowProcW(System.Void*,System.UInt32,System.IntPtr,System.IntPtr)" />) should not be called.
            <c>False</c> means the message should be handled elsewhere, your <c>lResult</c> will be disregarded.
              </para>
            </returns>
            <seealso cref="T:JetBrains.Interop.WinApi.Functions.WNDPROC" />
        </member>
    </members>
</doc>
