-
-
Notifications
You must be signed in to change notification settings - Fork 424
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add missing types for WindowsCodec (#2167)
* Strongly-typed WindowsCodec * Add more types to Win32 extras * Use IntPtr for handles * Bring back IMessageFilter * Minor fixes and resolving CR feedbacks * More fixes
- Loading branch information
Showing
216 changed files
with
147,712 additions
and
6,856 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
src/Core/Silk.NET.Core.Win32Extras/Enums/ActivateFlags.gen.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// Licensed to the .NET Foundation under one or more agreements. | ||
// The .NET Foundation licenses this file to you under the MIT license. | ||
|
||
|
||
using System; | ||
using Silk.NET.Core.Attributes; | ||
|
||
#pragma warning disable 1591 | ||
|
||
namespace Silk.NET.Core.Win32Extras | ||
{ | ||
[NativeName("Name", "tagACTIVATEFLAGS")] | ||
public enum ActivateFlags : int | ||
{ | ||
[NativeName("Name", "ACTIVATE_WINDOWLESS")] | ||
ActivateWindowless = 0x1, | ||
} | ||
} |
18 changes: 18 additions & 0 deletions
18
src/Core/Silk.NET.Core.Win32Extras/Enums/AspectInfoFlag.gen.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// Licensed to the .NET Foundation under one or more agreements. | ||
// The .NET Foundation licenses this file to you under the MIT license. | ||
|
||
|
||
using System; | ||
using Silk.NET.Core.Attributes; | ||
|
||
#pragma warning disable 1591 | ||
|
||
namespace Silk.NET.Core.Win32Extras | ||
{ | ||
[NativeName("Name", "tagAspectInfoFlag")] | ||
public enum AspectInfoFlag : int | ||
{ | ||
[NativeName("Name", "DVASPECTINFOFLAG_CANOPTIMIZE")] | ||
DvaspectinfoflagCanoptimize = 0x1, | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
// Licensed to the .NET Foundation under one or more agreements. | ||
// The .NET Foundation licenses this file to you under the MIT license. | ||
|
||
|
||
using System; | ||
using Silk.NET.Core.Attributes; | ||
|
||
#pragma warning disable 1591 | ||
|
||
namespace Silk.NET.Core.Win32Extras | ||
{ | ||
[NativeName("Name", "tagCTRLINFO")] | ||
public enum CTRLInfo : int | ||
{ | ||
[Obsolete("Deprecated in favour of \"Return\"")] | ||
[NativeName("Name", "CTRLINFO_EATS_RETURN")] | ||
CtrlinfoEatsReturn = 0x1, | ||
[Obsolete("Deprecated in favour of \"Escape\"")] | ||
[NativeName("Name", "CTRLINFO_EATS_ESCAPE")] | ||
CtrlinfoEatsEscape = 0x2, | ||
[NativeName("Name", "CTRLINFO_EATS_RETURN")] | ||
Return = 0x1, | ||
[NativeName("Name", "CTRLINFO_EATS_ESCAPE")] | ||
Escape = 0x2, | ||
} | ||
} |
Oops, something went wrong.