blob: f64f545945c3dd83d10f49dd56731fd302bcf017 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="IHbFunctionsProvider.cs" company="HandBrake Project (http://handbrake.fr)">
// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
// </copyright>
// <summary>
// Provides an instance of IHbFunctions for use by the GUI.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace HandBrake.Interop.Interop.Providers.Interfaces
{
using HandBrake.Interop.Interop.HbLib.Wrappers.Interfaces;
public interface IHbFunctionsProvider
{
IHbFunctions GetHbFunctionsWrapper();
}
}
|