1
0
Fork 0
mirror of https://github.com/Ryujinx/Opentk.git synced 2025-05-13 17:02:20 +00:00
Opentk/Source/Bind/ISpecReader.cs

21 lines
529 B
C#

#region --- License ---
/* Copyright (c) 2006, 2007 Stefanos Apostolopoulos
* See license.txt for license info
*/
#endregion
using System.Collections.Generic;
using System.IO;
using Bind.Structures;
namespace Bind
{
interface ISpecReader
{
DelegateCollection ReadDelegates(StreamReader specFile);
EnumCollection ReadEnums(StreamReader specFile);
Dictionary<string, string> ReadTypeMap(StreamReader specFile);
Dictionary<string, string> ReadCSTypeMap(StreamReader specFile);
}
}