2024-06-07 00:47:07 +02:00

18 lines
510 B
C#

using System;
namespace NAudio.Dmo
{
/// <summary>
/// MediaErr.h
/// </summary>
enum DmoHResults
{
DMO_E_INVALIDSTREAMINDEX = unchecked((int)0x80040201),
DMO_E_INVALIDTYPE = unchecked((int)0x80040202),
DMO_E_TYPE_NOT_SET = unchecked((int)0x80040203),
DMO_E_NOTACCEPTING = unchecked((int)0x80040204),
DMO_E_TYPE_NOT_ACCEPTED = unchecked((int)0x80040205),
DMO_E_NO_MORE_ITEMS = unchecked((int)0x80040206),
}
}