Opentk/Source/Bind/ISpecReader.cs
Stefanos A 7f9041417e Add apiname parameter to ISpecReader
This allows us to reuse the same ISpecReader implementation to parse
different APIs (GL and GLES).
2013-10-28 14:13:39 +01:00

20 lines
549 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
{
void ReadDelegates(string file, DelegateCollection delegates, string apiname);
void ReadEnums(string file, EnumCollection enums, string apiname);
Dictionary<string, string> ReadTypeMap(string file);
Dictionary<string, string> ReadCSTypeMap(string file);
}
}