2009-02-22 11:43:35 +01:00
|
|
|
|
#region --- License ---
|
|
|
|
|
/* Copyright (c) 2006, 2007 Stefanos Apostolopoulos
|
|
|
|
|
* See license.txt for license info
|
|
|
|
|
*/
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
2009-08-21 22:28:14 +02:00
|
|
|
|
using Bind.Structures;
|
2009-02-22 11:43:35 +01:00
|
|
|
|
|
|
|
|
|
namespace Bind
|
|
|
|
|
{
|
|
|
|
|
interface ISpecReader
|
|
|
|
|
{
|
2013-11-03 01:25:47 +01:00
|
|
|
|
void ReadDelegates(string file, DelegateCollection delegates, string apiname, string apiversion);
|
|
|
|
|
void ReadEnums(string file, EnumCollection enums, string apiname, string apiversion);
|
2010-12-06 15:34:16 +01:00
|
|
|
|
Dictionary<string, string> ReadTypeMap(string file);
|
|
|
|
|
Dictionary<string, string> ReadCSTypeMap(string file);
|
2009-02-22 11:43:35 +01:00
|
|
|
|
}
|
|
|
|
|
}
|