-
-
Notifications
You must be signed in to change notification settings - Fork 457
Expand file tree
/
Copy pathMediaEngineError.gen.cs
More file actions
28 lines (24 loc) · 872 Bytes
/
MediaEngineError.gen.cs
File metadata and controls
28 lines (24 loc) · 872 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_ERR")]
public enum MediaEngineError : int
{
[NativeName("Name", "MF_MEDIA_ENGINE_ERR_NOERROR")]
Noerror = 0x0,
[NativeName("Name", "MF_MEDIA_ENGINE_ERR_ABORTED")]
Aborted = 0x1,
[NativeName("Name", "MF_MEDIA_ENGINE_ERR_NETWORK")]
Network = 0x2,
[NativeName("Name", "MF_MEDIA_ENGINE_ERR_DECODE")]
Decode = 0x3,
[NativeName("Name", "MF_MEDIA_ENGINE_ERR_SRC_NOT_SUPPORTED")]
SrcNotSupported = 0x4,
[NativeName("Name", "MF_MEDIA_ENGINE_ERR_ENCRYPTED")]
Encrypted = 0x5,
}
}