-
-
Notifications
You must be signed in to change notification settings - Fork 457
Expand file tree
/
Copy pathMediaEngineKeyError.gen.cs
More file actions
28 lines (24 loc) · 879 Bytes
/
MediaEngineKeyError.gen.cs
File metadata and controls
28 lines (24 loc) · 879 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// 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.MediaFoundation
{
[NativeName("Name", "_MF_MEDIA_ENGINE_KEYERR")]
public enum MediaEngineKeyError : int
{
[NativeName("Name", "MF_MEDIAENGINE_KEYERR_UNKNOWN")]
Unknown = 0x1,
[NativeName("Name", "MF_MEDIAENGINE_KEYERR_CLIENT")]
Client = 0x2,
[NativeName("Name", "MF_MEDIAENGINE_KEYERR_SERVICE")]
Service = 0x3,
[NativeName("Name", "MF_MEDIAENGINE_KEYERR_OUTPUT")]
Output = 0x4,
[NativeName("Name", "MF_MEDIAENGINE_KEYERR_HARDWARECHANGE")]
Hardwarechange = 0x5,
[NativeName("Name", "MF_MEDIAENGINE_KEYERR_DOMAIN")]
Domain = 0x6,
}
}