Skip to content
This repository was archived by the owner on Jul 26, 2023. It is now read-only.

Commit 21a0163

Browse files
authored
Merge pull request #517 from dotnet/fixUpCrefs
Fix up crefs to refer to original p/invoke method
2 parents 12cc760 + 0329c7c commit 21a0163

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/User32/User32+MsgWaitForMultipleObjectsExFlags.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace PInvoke
99
public partial class User32
1010
{
1111
/// <summary>
12-
/// Flags for the <see cref="MsgWaitForMultipleObjectsEx(uint, IntPtr, uint, WakeMask, MsgWaitForMultipleObjectsExFlags)"/> method.
12+
/// Flags for the <see cref="MsgWaitForMultipleObjectsEx(uint, IntPtr*, uint, WakeMask, MsgWaitForMultipleObjectsExFlags)"/> method.
1313
/// </summary>
1414
[Flags]
1515
public enum MsgWaitForMultipleObjectsExFlags : uint

src/User32/User32+PeekMessageRemoveFlags.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,21 @@ public partial class User32
1313
#pragma warning disable SA1629 // Documentation text should end with a period
1414
/// <summary>
1515
/// Flags to be passed to the <code>wRemoveMsg</code> parameter of
16-
/// <see cref="PeekMessage(IntPtr, IntPtr, WindowMessage, WindowMessage, PeekMessageRemoveFlags)" />.
16+
/// <see cref="PeekMessage(MSG*, IntPtr, WindowMessage, WindowMessage, PeekMessageRemoveFlags)" />.
1717
/// </summary>
1818
#pragma warning restore SA1629 // Documentation text should end with a period
1919
[Flags]
2020
public enum PeekMessageRemoveFlags : uint
2121
{
2222
/// <summary>
2323
/// Messages are not removed from the queue after processing by
24-
/// <see cref="PeekMessage(IntPtr, IntPtr, WindowMessage, WindowMessage, PeekMessageRemoveFlags)" />.
24+
/// <see cref="PeekMessage(MSG*, IntPtr, WindowMessage, WindowMessage, PeekMessageRemoveFlags)" />.
2525
/// </summary>
2626
PM_NOREMOVE = 0x0000,
2727

2828
/// <summary>
2929
/// Messages are removed from the queue after processing by
30-
/// <see cref="PeekMessage(IntPtr, IntPtr, WindowMessage, WindowMessage, PeekMessageRemoveFlags)" />.
30+
/// <see cref="PeekMessage(MSG*, IntPtr, WindowMessage, WindowMessage, PeekMessageRemoveFlags)" />.
3131
/// </summary>
3232
PM_REMOVE = 0x0001,
3333

src/User32/User32+WindowStationCreationFlags.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace PInvoke
99
public partial class User32
1010
{
1111
/// <summary>
12-
/// Controls the behaviour of <see cref="CreateWindowStation(string, WindowStationCreationFlags, Kernel32.ACCESS_MASK, Kernel32.SECURITY_ATTRIBUTES?)" /> when a window station with the desired name already exists.
12+
/// Controls the behaviour of <see cref="CreateWindowStation(string, WindowStationCreationFlags, Kernel32.ACCESS_MASK, Kernel32.SECURITY_ATTRIBUTES*)" /> when a window station with the desired name already exists.
1313
/// </summary>
1414
public enum WindowStationCreationFlags : uint
1515
{

0 commit comments

Comments
 (0)