Fixed bad XML docs

pull/328/head
dahall 2022-07-14 20:52:05 -06:00
parent bfc56ff07b
commit 775ed816d0
2 changed files with 9 additions and 8 deletions

View File

@ -289,7 +289,7 @@ namespace Vanara.PInvoke
/// <summary>
/// Used by the
/// <see cref="ChangeServiceConfig(SC_HANDLE, ServiceTypes, ServiceStartType, ServiceErrorControlType, string, string, out uint, string, string, string, string)"/> function.
/// <see cref="ChangeServiceConfig(SC_HANDLE, ServiceTypes, ServiceStartType, ServiceErrorControlType, string, string, IntPtr, string[], string, string, string)"/> function.
/// </summary>
public enum ServiceErrorControlType : uint
{
@ -317,9 +317,9 @@ namespace Vanara.PInvoke
/// <summary>
/// Used by the
/// <see cref="ChangeServiceConfig(SC_HANDLE, ServiceTypes, ServiceStartType, ServiceErrorControlType, string, string, out uint, string, string, string, string)"/> function.
/// <see cref="ChangeServiceConfig(SC_HANDLE, ServiceTypes, ServiceStartType, ServiceErrorControlType, string, string, out uint, string[], string, string, string)"/> function.
/// </summary>
public enum ServiceStartType : uint
]public enum ServiceStartType : uint
{
/// <summary>Makes no change for this setting.</summary>
SERVICE_NO_CHANGE = 0xFFFFFFFF,
@ -342,9 +342,9 @@ namespace Vanara.PInvoke
/// <summary>
/// Used by the
/// <see cref="ChangeServiceConfig(SC_HANDLE, ServiceTypes, ServiceStartType, ServiceErrorControlType, string, string, out uint, string, string, string, string)"/> function.
/// <see cref="ChangeServiceConfig(SC_HANDLE, ServiceTypes, ServiceStartType, ServiceErrorControlType, string, string, out uint, string[], string, string, string)"/> function.
/// </summary>
[Flags]
][Flags]
public enum ServiceTypes : uint
{
/// <summary>Makes no change for this setting.</summary>

View File

@ -920,9 +920,10 @@ namespace Vanara.PInvoke
SERVICE_QUERY_CONFIG = 0x0001,
/// <summary>
/// Required to call the <see cref="ChangeServiceConfig(SC_HANDLE, ServiceTypes, ServiceStartType, ServiceErrorControlType, string, string, IntPtr, string, string, string, string)"/> or <see cref="ChangeServiceConfig2"/> function to change the service
/// configuration. Because this grants the caller the right to change the executable file that the system runs, it should be
/// granted only to administrators.
/// Required to call the <see cref="ChangeServiceConfig(SC_HANDLE, ServiceTypes, ServiceStartType, ServiceErrorControlType,
/// string, string, IntPtr, string[], string, string, string)"/> or <see cref="ChangeServiceConfig2"/> function to change the
/// service configuration. Because this grants the caller the right to change the executable file that the system runs, it should
/// be granted only to administrators.
/// </summary>
SERVICE_CHANGE_CONFIG = 0x0002,