• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

dapplo / Dapplo.Windows / 22204175531

19 Feb 2026 11:16PM UTC coverage: 33.49% (-0.8%) from 34.27%
22204175531

push

github

Lakritzator
Added a new SharedMessageWindow, which handled windows messages without Windows.Forms or WPF dependencies. Much easier to use...

610 of 1950 branches covered (31.28%)

Branch coverage included in aggregate %.

0 of 129 new or added lines in 3 files covered. (0.0%)

1 existing line in 1 file now uncovered.

1673 of 4867 relevant lines covered (34.37%)

29.97 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/Dapplo.Windows.Messages/Structs/WindowMessage.cs
1
// Copyright (c) Dapplo and contributors. All rights reserved.
2
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
3

4
namespace Dapplo.Windows.Messages.Structs;
5

6
/// <summary>
7
/// Represents a Windows message, including its window handle, message identifier, and associated parameters.
8
/// </summary>
9
/// <remarks>This struct is commonly used when processing Windows messages in low-level window procedures or
10
/// interop scenarios. The meaning of the parameters depends on the specific message identified by Msg.</remarks>
11
/// <param name="Hwnd">The handle to the window that receives the message.</param>
12
/// <param name="Msg">The identifier of the Windows message.</param>
13
/// <param name="WParam">The additional message-specific information provided as the first parameter.</param>
14
/// <param name="LParam">The additional message-specific information provided as the second parameter.</param>
NEW
15
public readonly record struct WindowMessage(nint Hwnd, uint Msg, nint WParam, nint LParam);
×
16

STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc