Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 1452 | chris | 1 | #region --- License --- |
| 2 | /* Copyright (c) 2006, 2007 Stefanos Apostolopoulos |
||
| 3 | * See license.txt for license info |
||
| 4 | */ |
||
| 5 | #endregion |
||
| 6 | |||
| 7 | using System.Collections.Generic; |
||
| 8 | using Bind.Structures; |
||
| 9 | |||
| 10 | namespace Bind |
||
| 11 | { |
||
| 12 | interface ISpecWriter |
||
| 13 | { |
||
| 14 | void WriteBindings(DelegateCollection delegates, FunctionCollection functions, |
||
| 15 | EnumCollection enums); |
||
| 16 | void WriteDelegates(BindStreamWriter sw, DelegateCollection delegates); |
||
| 17 | void WriteWrappers(BindStreamWriter sw, FunctionCollection wrappers, Dictionary<string, string> CSTypes); |
||
| 18 | void WriteEnums(BindStreamWriter sw, EnumCollection enums); |
||
| 19 | void WriteTypes(BindStreamWriter sw, Dictionary<string, string> CSTypes); |
||
| 20 | void WriteLicense(BindStreamWriter sw); |
||
| 21 | } |
||
| 22 | } |