blob: 55ad4320f448fd167816ef883c92861593d9f6ce [file]
// Copyright (c) 2010 The WebM project authors. All Rights Reserved.
//
// Use of this source code is governed by a BSD-style license
// that can be found in the LICENSE file in the root of the source
// tree. An additional intellectual property rights grant can be found
// in the file PATENTS. All contributing project authors may
// be found in the AUTHORS file in the root of the source tree.
#pragma once
[
uuid(ED3110F9-5211-11DF-94AF-0026B977EEAA)
]
interface IMemSample : IUnknown
{
virtual ULONG STDMETHODCALLTYPE GetCount() = 0;
virtual HRESULT STDMETHODCALLTYPE Initialize() = 0;
virtual HRESULT STDMETHODCALLTYPE Finalize() = 0;
virtual HRESULT STDMETHODCALLTYPE Destroy() = 0;
};