microsoft / microsoft/win32metadata
MINIMIZEDMETRICS_ARRANGE is missing some flags
Open
Nobody has claimed this yet.
bug
- Dominant language
- C++
- Stars
- 1.5k
- Forks
- 149
- Avg merge
- 5d 16h
- Merged PRs (30d)
- 4
Description
Namely the ones with added comments below.
That issue probably ought to be opened against the meta data though I'm not sure where that repository is now.
public enum MINIMIZEDMETRICS_ARRANGE
{
ARW_BOTTOMLEFT = 0,
ARW_BOTTOMRIGHT = 1,
ARW_TOPLEFT = 2,
ARW_TOPRIGHT = 3,
/// <summary>
/// Arrange left (valid with ARW_BOTTOMRIGHT and ARW_TOPRIGHT only).
/// </summary>
ARW_LEFT = 0x0000,
/// <summary>
/// Arrange right (valid with ARW_BOTTOMLEFT and ARW_TOPLEFT only).
/// </summary>
ARW_RIGHT = 0x0000,
/// <summary>
/// Arrange up (valid with ARW_BOTTOMLEFT and ARW_BOTTOMRIGHT only).
/// </summary>
ARW_UP = 0x0004,
/// <summary>
/// Arrange down (valid with ARW_TOPLEFT and ARW_TOPRIGHT only).
/// </summary>
ARW_DOWN = 0x0004,
/// <summary>
/// Hide minimized windows by moving them off the visible area of the screen.
/// </summary>
ARW_HIDE = 0x0008,
}
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
The issue names MINIMIZEDMETRICS_ARRANGE and provides the missing enum members; begin by locating that enum in the win32metadata inputs or generated metadata and determine which repository owns its source. Compare the enum with the definitions shown in the issue, then verify that the generated metadata includes all listed flags.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- cpp, csharp
- Domain
- tooling
- Issue type
- Bug
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Stale
- Clarity
- Mostly clear
- Newbie friendliness
- 45/100