Skip to content

Commit

Permalink
Fixed #428 (bad return value for User32.MB_GetString)
Browse files Browse the repository at this point in the history
  • Loading branch information
dahall committed Oct 18, 2023
1 parent f21aeea commit d890758
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
3 changes: 1 addition & 2 deletions PInvoke/User32/WinUser.System.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3722,8 +3722,7 @@ public enum TKF : uint
// https://docs.microsoft.com/en-us/windows/desktop/dlgbox/mb-getstring LPCWSTR WINAPI MB_GetString( UINT wBtn );
[DllImport(Lib.User32, SetLastError = false, ExactSpelling = true)]
[PInvokeData("", MSDNShortId = "D2AF238D-F5A8-477D-BF47-0F5D4D68B27E")]
[return: MarshalAs(UnmanagedType.LPWStr)]
public static extern string MB_GetString(uint wBtn);
public static extern StrPtrUni MB_GetString(uint wBtn);

/// <summary>
/// <para>Plays a waveform sound. The waveform sound for each sound type is identified by an entry in the registry.</para>
Expand Down
7 changes: 7 additions & 0 deletions UnitTests/PInvoke/User32/User32Tests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,13 @@ public void LockWorkStationTest()
throw new NotImplementedException();
}

[Test()]
public void MB_GetStringTest()
{
Assert.NotNull((string)MB_GetString(1));
TestContext.WriteLine((string)MB_GetString(1));
}

[Test()]
public void RealGetWindowClassTest()
{
Expand Down

0 comments on commit d890758

Please sign in to comment.