├── ExportsToC++.suo ├── ExportsToC++ ├── frmMain.cs ├── Code_Component.ico ├── Resources │ ├── Help.png │ ├── class.bmp │ ├── CopyHS.png │ ├── ZoomHS.png │ ├── openHS.png │ ├── DeleteHS.png │ ├── EditCodeHS.png │ ├── Code_Component.ico │ ├── ArrangeWindowsHS.png │ └── ArrangeSideBySideHS.png ├── bin │ ├── Debug │ │ ├── ExportsToC++.exe │ │ ├── ExportsToC++.pdb │ │ └── ExportsToC++.vshost.exe │ └── Release │ │ ├── ExportsToC++.exe │ │ ├── ExportsToC++.pdb │ │ └── ExportsToC++.vshost.exe ├── obj │ ├── Debug │ │ ├── ExportsToC++.exe │ │ ├── ExportsToC++.pdb │ │ ├── ExportsToC__.frmAbout.resources │ │ ├── ExportsToC__.frmMain.resources │ │ ├── ExportsToC__.frmName.resources │ │ ├── ExportsToC++.csproj.GenerateResource.Cache │ │ ├── ExportsToC__.Properties.Resources.resources │ │ └── TempPE │ │ │ └── Properties.Resources.Designer.cs.dll │ ├── Release │ │ ├── ExportsToC++.exe │ │ ├── ExportsToC++.pdb │ │ ├── ExportsToC__.frmAbout.resources │ │ ├── ExportsToC__.frmMain.resources │ │ ├── ExportsToC__.frmName.resources │ │ ├── ExportsToC++.csproj.GenerateResource.Cache │ │ ├── ExportsToC__.Properties.Resources.resources │ │ └── TempPE │ │ │ └── Properties.Resources.Designer.cs.dll │ └── ExportsToC++.csproj.FileListAbsolute.txt ├── Properties │ ├── Settings.settings │ ├── Settings.Designer.cs │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Program.cs ├── frmName.cs ├── frmName.Designer.cs ├── ExportsToC++.csproj ├── frmAbout.cs ├── frmName.resx ├── frmAbout.Designer.cs ├── frmMain.Designer.cs └── frmMain.resx ├── README ├── ExportsToC++.sln └── COPYING /ExportsToC++.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellandi/exportstoc/HEAD/ExportsToC++.suo -------------------------------------------------------------------------------- /ExportsToC++/frmMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellandi/exportstoc/HEAD/ExportsToC++/frmMain.cs -------------------------------------------------------------------------------- /ExportsToC++/Code_Component.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellandi/exportstoc/HEAD/ExportsToC++/Code_Component.ico -------------------------------------------------------------------------------- /ExportsToC++/Resources/Help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellandi/exportstoc/HEAD/ExportsToC++/Resources/Help.png -------------------------------------------------------------------------------- /ExportsToC++/Resources/class.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellandi/exportstoc/HEAD/ExportsToC++/Resources/class.bmp -------------------------------------------------------------------------------- /ExportsToC++/Resources/CopyHS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellandi/exportstoc/HEAD/ExportsToC++/Resources/CopyHS.png -------------------------------------------------------------------------------- /ExportsToC++/Resources/ZoomHS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellandi/exportstoc/HEAD/ExportsToC++/Resources/ZoomHS.png -------------------------------------------------------------------------------- /ExportsToC++/Resources/openHS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellandi/exportstoc/HEAD/ExportsToC++/Resources/openHS.png -------------------------------------------------------------------------------- /ExportsToC++/Resources/DeleteHS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellandi/exportstoc/HEAD/ExportsToC++/Resources/DeleteHS.png -------------------------------------------------------------------------------- /ExportsToC++/Resources/EditCodeHS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellandi/exportstoc/HEAD/ExportsToC++/Resources/EditCodeHS.png -------------------------------------------------------------------------------- /ExportsToC++/bin/Debug/ExportsToC++.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellandi/exportstoc/HEAD/ExportsToC++/bin/Debug/ExportsToC++.exe -------------------------------------------------------------------------------- /ExportsToC++/bin/Debug/ExportsToC++.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellandi/exportstoc/HEAD/ExportsToC++/bin/Debug/ExportsToC++.pdb -------------------------------------------------------------------------------- /ExportsToC++/obj/Debug/ExportsToC++.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellandi/exportstoc/HEAD/ExportsToC++/obj/Debug/ExportsToC++.exe -------------------------------------------------------------------------------- /ExportsToC++/obj/Debug/ExportsToC++.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellandi/exportstoc/HEAD/ExportsToC++/obj/Debug/ExportsToC++.pdb -------------------------------------------------------------------------------- /ExportsToC++/Resources/Code_Component.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellandi/exportstoc/HEAD/ExportsToC++/Resources/Code_Component.ico -------------------------------------------------------------------------------- /ExportsToC++/bin/Release/ExportsToC++.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellandi/exportstoc/HEAD/ExportsToC++/bin/Release/ExportsToC++.exe -------------------------------------------------------------------------------- /ExportsToC++/bin/Release/ExportsToC++.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellandi/exportstoc/HEAD/ExportsToC++/bin/Release/ExportsToC++.pdb -------------------------------------------------------------------------------- /ExportsToC++/obj/Release/ExportsToC++.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellandi/exportstoc/HEAD/ExportsToC++/obj/Release/ExportsToC++.exe -------------------------------------------------------------------------------- /ExportsToC++/obj/Release/ExportsToC++.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellandi/exportstoc/HEAD/ExportsToC++/obj/Release/ExportsToC++.pdb -------------------------------------------------------------------------------- /ExportsToC++/Resources/ArrangeWindowsHS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellandi/exportstoc/HEAD/ExportsToC++/Resources/ArrangeWindowsHS.png -------------------------------------------------------------------------------- /ExportsToC++/Resources/ArrangeSideBySideHS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellandi/exportstoc/HEAD/ExportsToC++/Resources/ArrangeSideBySideHS.png -------------------------------------------------------------------------------- /ExportsToC++/bin/Debug/ExportsToC++.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellandi/exportstoc/HEAD/ExportsToC++/bin/Debug/ExportsToC++.vshost.exe -------------------------------------------------------------------------------- /ExportsToC++/bin/Release/ExportsToC++.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellandi/exportstoc/HEAD/ExportsToC++/bin/Release/ExportsToC++.vshost.exe -------------------------------------------------------------------------------- /ExportsToC++/obj/Debug/ExportsToC__.frmAbout.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellandi/exportstoc/HEAD/ExportsToC++/obj/Debug/ExportsToC__.frmAbout.resources -------------------------------------------------------------------------------- /ExportsToC++/obj/Debug/ExportsToC__.frmMain.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellandi/exportstoc/HEAD/ExportsToC++/obj/Debug/ExportsToC__.frmMain.resources -------------------------------------------------------------------------------- /ExportsToC++/obj/Debug/ExportsToC__.frmName.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellandi/exportstoc/HEAD/ExportsToC++/obj/Debug/ExportsToC__.frmName.resources -------------------------------------------------------------------------------- /ExportsToC++/obj/Release/ExportsToC__.frmAbout.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellandi/exportstoc/HEAD/ExportsToC++/obj/Release/ExportsToC__.frmAbout.resources -------------------------------------------------------------------------------- /ExportsToC++/obj/Release/ExportsToC__.frmMain.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellandi/exportstoc/HEAD/ExportsToC++/obj/Release/ExportsToC__.frmMain.resources -------------------------------------------------------------------------------- /ExportsToC++/obj/Release/ExportsToC__.frmName.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellandi/exportstoc/HEAD/ExportsToC++/obj/Release/ExportsToC__.frmName.resources -------------------------------------------------------------------------------- /ExportsToC++/obj/Debug/ExportsToC++.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellandi/exportstoc/HEAD/ExportsToC++/obj/Debug/ExportsToC++.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /ExportsToC++/obj/Debug/ExportsToC__.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellandi/exportstoc/HEAD/ExportsToC++/obj/Debug/ExportsToC__.Properties.Resources.resources -------------------------------------------------------------------------------- /ExportsToC++/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellandi/exportstoc/HEAD/ExportsToC++/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /ExportsToC++/obj/Release/ExportsToC++.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellandi/exportstoc/HEAD/ExportsToC++/obj/Release/ExportsToC++.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /ExportsToC++/obj/Release/ExportsToC__.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellandi/exportstoc/HEAD/ExportsToC++/obj/Release/ExportsToC__.Properties.Resources.resources -------------------------------------------------------------------------------- /ExportsToC++/obj/Release/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaellandi/exportstoc/HEAD/ExportsToC++/obj/Release/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | ExportsToC++ parses dumpbin output and converts an assembly’s exported function list output to C++ formatted code. This is very useful for creating Proxy DLL files to Intercept API Calls. You must have the .NET 2.0 Framework installed to run this application. -------------------------------------------------------------------------------- /ExportsToC++/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ExportsToC++.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 9.00 3 | # Visual Studio 2005 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ExportsToC++", "ExportsToC++\ExportsToC++.csproj", "{B11D387D-81F0-41DC-9A0E-DD26674AA369}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {B11D387D-81F0-41DC-9A0E-DD26674AA369}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {B11D387D-81F0-41DC-9A0E-DD26674AA369}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {B11D387D-81F0-41DC-9A0E-DD26674AA369}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {B11D387D-81F0-41DC-9A0E-DD26674AA369}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /ExportsToC++/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:2.0.50727.3053 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace ExportsToC__.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "8.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /ExportsToC++/Program.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of ExportsToC++. 3 | * 4 | * ExportsToC++ is free software: you can redistribute it and/or modify 5 | * it under the terms of the GNU General Public License as published by 6 | * the Free Software Foundation, either version 3 of the License, or 7 | * (at your option) any later version. 8 | * 9 | * ExportsToC++ is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | * GNU General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public License 15 | * along with Foobar. If not, see 16 | */ 17 | 18 | using System; 19 | using System.Collections.Generic; 20 | using System.Windows.Forms; 21 | 22 | namespace ExportsToC__ 23 | { 24 | static class Program 25 | { 26 | /// 27 | /// The main entry point for the application. 28 | /// 29 | [STAThread] 30 | static void Main(string[] args) 31 | { 32 | Application.EnableVisualStyles(); 33 | Application.SetCompatibleTextRenderingDefault(false); 34 | Application.Run(new frmMain(args)); 35 | } 36 | } 37 | } -------------------------------------------------------------------------------- /ExportsToC++/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | using System.Resources; 5 | 6 | // General Information about an assembly is controlled through the following 7 | // set of attributes. Change these attribute values to modify the information 8 | // associated with an assembly. 9 | [assembly: AssemblyTitle("ExportsToC++")] 10 | [assembly: AssemblyDescription("Converts export data to C++")] 11 | [assembly: AssemblyConfiguration("")] 12 | [assembly: AssemblyCompany("Michael Landi")] 13 | [assembly: AssemblyProduct("ExportsToC++")] 14 | [assembly: AssemblyCopyright("Copyright © 2008 Michael Landi")] 15 | [assembly: AssemblyTrademark("")] 16 | [assembly: AssemblyCulture("")] 17 | 18 | // Setting ComVisible to false makes the types in this assembly not visible 19 | // to COM components. If you need to access a type in this assembly from 20 | // COM, set the ComVisible attribute to true on that type. 21 | [assembly: ComVisible(false)] 22 | 23 | // The following GUID is for the ID of the typelib if this project is exposed to COM 24 | [assembly: Guid("2d5a46c3-a175-434a-90d9-e61d9f79b581")] 25 | 26 | // Version information for an assembly consists of the following four values: 27 | // 28 | // Major Version 29 | // Minor Version 30 | // Build Number 31 | // Revision 32 | // 33 | [assembly: AssemblyVersion("1.0.0.*")] 34 | [assembly: AssemblyFileVersion("1.0.0.0")] 35 | [assembly: NeutralResourcesLanguageAttribute("en")] 36 | -------------------------------------------------------------------------------- /ExportsToC++/frmName.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of ExportsToC++. 3 | * 4 | * ExportsToC++ is free software: you can redistribute it and/or modify 5 | * it under the terms of the GNU General Public License as published by 6 | * the Free Software Foundation, either version 3 of the License, or 7 | * (at your option) any later version. 8 | * 9 | * ExportsToC++ is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | * GNU General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public License 15 | * along with Foobar. If not, see 16 | */ 17 | 18 | using System; 19 | using System.Collections.Generic; 20 | using System.ComponentModel; 21 | using System.Data; 22 | using System.Drawing; 23 | using System.Text; 24 | using System.Windows.Forms; 25 | 26 | namespace ExportsToC__ 27 | { 28 | public partial class frmName : Form 29 | { 30 | public frmName() 31 | { 32 | InitializeComponent(); 33 | } 34 | 35 | public string FileName 36 | { 37 | get 38 | { 39 | return txtDLL.Text.Trim(); 40 | } 41 | } 42 | 43 | private void cmdCancel_Click(object sender, EventArgs e) 44 | { 45 | txtDLL.Text = ""; 46 | Close(); 47 | } 48 | 49 | private void cmdOK_Click(object sender, EventArgs e) 50 | { 51 | Close(); 52 | } 53 | } 54 | } -------------------------------------------------------------------------------- /ExportsToC++/obj/ExportsToC++.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\Mike\Documents\Visual Studio 2005\Projects\ExportsToC++\ExportsToC++\bin\Debug\ExportsToC++.exe 2 | C:\Users\Mike\Documents\Visual Studio 2005\Projects\ExportsToC++\ExportsToC++\bin\Debug\ExportsToC++.pdb 3 | C:\Users\Mike\Documents\Visual Studio 2005\Projects\ExportsToC++\ExportsToC++\obj\Debug\ResolveAssemblyReference.cache 4 | C:\Users\Mike\Documents\Visual Studio 2005\Projects\ExportsToC++\ExportsToC++\obj\Debug\ExportsToC__.frmMain.resources 5 | C:\Users\Mike\Documents\Visual Studio 2005\Projects\ExportsToC++\ExportsToC++\obj\Debug\ExportsToC__.Properties.Resources.resources 6 | C:\Users\Mike\Documents\Visual Studio 2005\Projects\ExportsToC++\ExportsToC++\obj\Debug\ExportsToC++.csproj.GenerateResource.Cache 7 | C:\Users\Mike\Documents\Visual Studio 2005\Projects\ExportsToC++\ExportsToC++\obj\Debug\ExportsToC++.exe 8 | C:\Users\Mike\Documents\Visual Studio 2005\Projects\ExportsToC++\ExportsToC++\obj\Debug\ExportsToC++.pdb 9 | C:\Users\Mike\Documents\Visual Studio 2005\Projects\ExportsToC++\ExportsToC++\obj\Debug\ExportsToC__.frmName.resources 10 | C:\Users\Mike\Documents\Visual Studio 2005\Projects\ExportsToC++\ExportsToC++\obj\Debug\ExportsToC__.frmAbout.resources 11 | C:\Users\Mike\Documents\Visual Studio 2005\Projects\ExportsToC++\ExportsToC++\bin\Release\ExportsToC++.exe 12 | C:\Users\Mike\Documents\Visual Studio 2005\Projects\ExportsToC++\ExportsToC++\bin\Release\ExportsToC++.pdb 13 | C:\Users\Mike\Documents\Visual Studio 2005\Projects\ExportsToC++\ExportsToC++\obj\Release\ResolveAssemblyReference.cache 14 | C:\Users\Mike\Documents\Visual Studio 2005\Projects\ExportsToC++\ExportsToC++\obj\Release\ExportsToC__.frmAbout.resources 15 | C:\Users\Mike\Documents\Visual Studio 2005\Projects\ExportsToC++\ExportsToC++\obj\Release\ExportsToC__.frmMain.resources 16 | C:\Users\Mike\Documents\Visual Studio 2005\Projects\ExportsToC++\ExportsToC++\obj\Release\ExportsToC__.frmName.resources 17 | C:\Users\Mike\Documents\Visual Studio 2005\Projects\ExportsToC++\ExportsToC++\obj\Release\ExportsToC__.Properties.Resources.resources 18 | C:\Users\Mike\Documents\Visual Studio 2005\Projects\ExportsToC++\ExportsToC++\obj\Release\ExportsToC++.csproj.GenerateResource.Cache 19 | C:\Users\Mike\Documents\Visual Studio 2005\Projects\ExportsToC++\ExportsToC++\obj\Release\ExportsToC++.exe 20 | C:\Users\Mike\Documents\Visual Studio 2005\Projects\ExportsToC++\ExportsToC++\obj\Release\ExportsToC++.pdb 21 | -------------------------------------------------------------------------------- /ExportsToC++/frmName.Designer.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of ExportsToC++. 3 | * 4 | * ExportsToC++ is free software: you can redistribute it and/or modify 5 | * it under the terms of the GNU General Public License as published by 6 | * the Free Software Foundation, either version 3 of the License, or 7 | * (at your option) any later version. 8 | * 9 | * ExportsToC++ is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | * GNU General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public License 15 | * along with Foobar. If not, see 16 | */ 17 | 18 | namespace ExportsToC__ 19 | { 20 | partial class frmName 21 | { 22 | /// 23 | /// Required designer variable. 24 | /// 25 | private System.ComponentModel.IContainer components = null; 26 | 27 | /// 28 | /// Clean up any resources being used. 29 | /// 30 | /// true if managed resources should be disposed; otherwise, false. 31 | protected override void Dispose(bool disposing) 32 | { 33 | if (disposing && (components != null)) 34 | { 35 | components.Dispose(); 36 | } 37 | base.Dispose(disposing); 38 | } 39 | 40 | #region Windows Form Designer generated code 41 | 42 | /// 43 | /// Required method for Designer support - do not modify 44 | /// the contents of this method with the code editor. 45 | /// 46 | private void InitializeComponent() 47 | { 48 | this.txtDLL = new System.Windows.Forms.TextBox(); 49 | this.cmdOK = new System.Windows.Forms.Button(); 50 | this.cmdCancel = new System.Windows.Forms.Button(); 51 | this.SuspendLayout(); 52 | // 53 | // txtDLL 54 | // 55 | this.txtDLL.Location = new System.Drawing.Point(13, 14); 56 | this.txtDLL.MaxLength = 255; 57 | this.txtDLL.Name = "txtDLL"; 58 | this.txtDLL.Size = new System.Drawing.Size(336, 20); 59 | this.txtDLL.TabIndex = 0; 60 | this.txtDLL.Text = "original.dll"; 61 | // 62 | // cmdOK 63 | // 64 | this.cmdOK.Location = new System.Drawing.Point(193, 40); 65 | this.cmdOK.Name = "cmdOK"; 66 | this.cmdOK.Size = new System.Drawing.Size(75, 25); 67 | this.cmdOK.TabIndex = 1; 68 | this.cmdOK.Text = "OK"; 69 | this.cmdOK.UseVisualStyleBackColor = true; 70 | this.cmdOK.Click += new System.EventHandler(this.cmdOK_Click); 71 | // 72 | // cmdCancel 73 | // 74 | this.cmdCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel; 75 | this.cmdCancel.Location = new System.Drawing.Point(274, 40); 76 | this.cmdCancel.Name = "cmdCancel"; 77 | this.cmdCancel.Size = new System.Drawing.Size(75, 25); 78 | this.cmdCancel.TabIndex = 2; 79 | this.cmdCancel.Text = "Cancel"; 80 | this.cmdCancel.UseVisualStyleBackColor = true; 81 | this.cmdCancel.Click += new System.EventHandler(this.cmdCancel_Click); 82 | // 83 | // frmName 84 | // 85 | this.AcceptButton = this.cmdOK; 86 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 14F); 87 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 88 | this.CancelButton = this.cmdCancel; 89 | this.ClientSize = new System.Drawing.Size(361, 75); 90 | this.ControlBox = false; 91 | this.Controls.Add(this.cmdCancel); 92 | this.Controls.Add(this.cmdOK); 93 | this.Controls.Add(this.txtDLL); 94 | this.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 95 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow; 96 | this.Name = "frmName"; 97 | this.ShowIcon = false; 98 | this.ShowInTaskbar = false; 99 | this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; 100 | this.Text = "Forward Calls To DLL"; 101 | this.ResumeLayout(false); 102 | this.PerformLayout(); 103 | 104 | } 105 | 106 | #endregion 107 | 108 | private System.Windows.Forms.TextBox txtDLL; 109 | private System.Windows.Forms.Button cmdOK; 110 | private System.Windows.Forms.Button cmdCancel; 111 | } 112 | } -------------------------------------------------------------------------------- /ExportsToC++/ExportsToC++.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | Debug 4 | AnyCPU 5 | 8.0.50727 6 | 2.0 7 | {B11D387D-81F0-41DC-9A0E-DD26674AA369} 8 | WinExe 9 | Properties 10 | ExportsToC__ 11 | ExportsToC++ 12 | Code_Component.ico 13 | 14 | 15 | true 16 | full 17 | false 18 | bin\Debug\ 19 | DEBUG;TRACE 20 | prompt 21 | 4 22 | 23 | 24 | pdbonly 25 | true 26 | bin\Release\ 27 | TRACE 28 | prompt 29 | 4 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | Form 42 | 43 | 44 | frmAbout.cs 45 | 46 | 47 | Form 48 | 49 | 50 | frmMain.cs 51 | 52 | 53 | Form 54 | 55 | 56 | frmName.cs 57 | 58 | 59 | 60 | 61 | Designer 62 | frmAbout.cs 63 | 64 | 65 | Designer 66 | frmMain.cs 67 | 68 | 69 | Designer 70 | frmName.cs 71 | 72 | 73 | ResXFileCodeGenerator 74 | Resources.Designer.cs 75 | Designer 76 | 77 | 78 | True 79 | Resources.resx 80 | True 81 | 82 | 83 | SettingsSingleFileGenerator 84 | Settings.Designer.cs 85 | 86 | 87 | True 88 | Settings.settings 89 | True 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 133 | -------------------------------------------------------------------------------- /ExportsToC++/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:2.0.50727.3053 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace ExportsToC__.Properties { 12 | using System; 13 | 14 | 15 | /// 16 | /// A strongly-typed resource class, for looking up localized strings, etc. 17 | /// 18 | // This class was auto-generated by the StronglyTypedResourceBuilder 19 | // class via a tool like ResGen or Visual Studio. 20 | // To add or remove a member, edit your .ResX file then rerun ResGen 21 | // with the /str option, or rebuild your VS project. 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "2.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources { 26 | 27 | private static global::System.Resources.ResourceManager resourceMan; 28 | 29 | private static global::System.Globalization.CultureInfo resourceCulture; 30 | 31 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 32 | internal Resources() { 33 | } 34 | 35 | /// 36 | /// Returns the cached ResourceManager instance used by this class. 37 | /// 38 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 39 | internal static global::System.Resources.ResourceManager ResourceManager { 40 | get { 41 | if (object.ReferenceEquals(resourceMan, null)) { 42 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ExportsToC__.Properties.Resources", typeof(Resources).Assembly); 43 | resourceMan = temp; 44 | } 45 | return resourceMan; 46 | } 47 | } 48 | 49 | /// 50 | /// Overrides the current thread's CurrentUICulture property for all 51 | /// resource lookups using this strongly typed resource class. 52 | /// 53 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 54 | internal static global::System.Globalization.CultureInfo Culture { 55 | get { 56 | return resourceCulture; 57 | } 58 | set { 59 | resourceCulture = value; 60 | } 61 | } 62 | 63 | internal static System.Drawing.Bitmap _class { 64 | get { 65 | object obj = ResourceManager.GetObject("class", resourceCulture); 66 | return ((System.Drawing.Bitmap)(obj)); 67 | } 68 | } 69 | 70 | internal static System.Drawing.Bitmap ArrangeSideBySideHS { 71 | get { 72 | object obj = ResourceManager.GetObject("ArrangeSideBySideHS", resourceCulture); 73 | return ((System.Drawing.Bitmap)(obj)); 74 | } 75 | } 76 | 77 | internal static System.Drawing.Bitmap ArrangeWindowsHS { 78 | get { 79 | object obj = ResourceManager.GetObject("ArrangeWindowsHS", resourceCulture); 80 | return ((System.Drawing.Bitmap)(obj)); 81 | } 82 | } 83 | 84 | internal static System.Drawing.Bitmap Code_Component { 85 | get { 86 | object obj = ResourceManager.GetObject("Code_Component", resourceCulture); 87 | return ((System.Drawing.Bitmap)(obj)); 88 | } 89 | } 90 | 91 | internal static System.Drawing.Bitmap CopyHS { 92 | get { 93 | object obj = ResourceManager.GetObject("CopyHS", resourceCulture); 94 | return ((System.Drawing.Bitmap)(obj)); 95 | } 96 | } 97 | 98 | internal static System.Drawing.Bitmap DeleteHS { 99 | get { 100 | object obj = ResourceManager.GetObject("DeleteHS", resourceCulture); 101 | return ((System.Drawing.Bitmap)(obj)); 102 | } 103 | } 104 | 105 | internal static System.Drawing.Bitmap EditCodeHS { 106 | get { 107 | object obj = ResourceManager.GetObject("EditCodeHS", resourceCulture); 108 | return ((System.Drawing.Bitmap)(obj)); 109 | } 110 | } 111 | 112 | internal static System.Drawing.Bitmap Help { 113 | get { 114 | object obj = ResourceManager.GetObject("Help", resourceCulture); 115 | return ((System.Drawing.Bitmap)(obj)); 116 | } 117 | } 118 | 119 | internal static System.Drawing.Bitmap openHS { 120 | get { 121 | object obj = ResourceManager.GetObject("openHS", resourceCulture); 122 | return ((System.Drawing.Bitmap)(obj)); 123 | } 124 | } 125 | 126 | internal static System.Drawing.Bitmap ZoomHS { 127 | get { 128 | object obj = ResourceManager.GetObject("ZoomHS", resourceCulture); 129 | return ((System.Drawing.Bitmap)(obj)); 130 | } 131 | } 132 | } 133 | } 134 | -------------------------------------------------------------------------------- /ExportsToC++/frmAbout.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of ExportsToC++. 3 | * 4 | * ExportsToC++ is free software: you can redistribute it and/or modify 5 | * it under the terms of the GNU General Public License as published by 6 | * the Free Software Foundation, either version 3 of the License, or 7 | * (at your option) any later version. 8 | * 9 | * ExportsToC++ is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | * GNU General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public License 15 | * along with Foobar. If not, see 16 | */ 17 | 18 | using System; 19 | using System.Collections.Generic; 20 | using System.ComponentModel; 21 | using System.Drawing; 22 | using System.Windows.Forms; 23 | using System.Reflection; 24 | 25 | namespace ExportsToC__ 26 | { 27 | partial class frmAbout : Form 28 | { 29 | public frmAbout() 30 | { 31 | InitializeComponent(); 32 | 33 | // Initialize the AboutBox to display the product information from the assembly information. 34 | // Change assembly information settings for your application through either: 35 | // - Project->Properties->Application->Assembly Information 36 | // - AssemblyInfo.cs 37 | this.Text = String.Format("About {0}", AssemblyTitle); 38 | this.labelProductName.Text = AssemblyProduct; 39 | this.labelVersion.Text = String.Format("Version {0}", AssemblyVersion); 40 | this.labelCopyright.Text = AssemblyCopyright; 41 | this.labelCompanyName.Text = AssemblyCompany; 42 | this.textBoxDescription.Text = AssemblyDescription + Environment.NewLine + Environment.NewLine + this.textBoxDescription.Text; 43 | } 44 | 45 | #region Assembly Attribute Accessors 46 | 47 | public string AssemblyTitle 48 | { 49 | get 50 | { 51 | // Get all Title attributes on this assembly 52 | object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyTitleAttribute), false); 53 | // If there is at least one Title attribute 54 | if (attributes.Length > 0) 55 | { 56 | // Select the first one 57 | AssemblyTitleAttribute titleAttribute = (AssemblyTitleAttribute)attributes[0]; 58 | // If it is not an empty string, return it 59 | if (titleAttribute.Title != "") 60 | return titleAttribute.Title; 61 | } 62 | // If there was no Title attribute, or if the Title attribute was the empty string, return the .exe name 63 | return System.IO.Path.GetFileNameWithoutExtension(Assembly.GetExecutingAssembly().CodeBase); 64 | } 65 | } 66 | 67 | public string AssemblyVersion 68 | { 69 | get 70 | { 71 | return Assembly.GetExecutingAssembly().GetName().Version.ToString(); 72 | } 73 | } 74 | 75 | public string AssemblyDescription 76 | { 77 | get 78 | { 79 | // Get all Description attributes on this assembly 80 | object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyDescriptionAttribute), false); 81 | // If there aren't any Description attributes, return an empty string 82 | if (attributes.Length == 0) 83 | return ""; 84 | // If there is a Description attribute, return its value 85 | return ((AssemblyDescriptionAttribute)attributes[0]).Description; 86 | } 87 | } 88 | 89 | public string AssemblyProduct 90 | { 91 | get 92 | { 93 | // Get all Product attributes on this assembly 94 | object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyProductAttribute), false); 95 | // If there aren't any Product attributes, return an empty string 96 | if (attributes.Length == 0) 97 | return ""; 98 | // If there is a Product attribute, return its value 99 | return ((AssemblyProductAttribute)attributes[0]).Product; 100 | } 101 | } 102 | 103 | public string AssemblyCopyright 104 | { 105 | get 106 | { 107 | // Get all Copyright attributes on this assembly 108 | object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyCopyrightAttribute), false); 109 | // If there aren't any Copyright attributes, return an empty string 110 | if (attributes.Length == 0) 111 | return ""; 112 | // If there is a Copyright attribute, return its value 113 | return ((AssemblyCopyrightAttribute)attributes[0]).Copyright; 114 | } 115 | } 116 | 117 | public string AssemblyCompany 118 | { 119 | get 120 | { 121 | // Get all Company attributes on this assembly 122 | object[] attributes = Assembly.GetExecutingAssembly().GetCustomAttributes(typeof(AssemblyCompanyAttribute), false); 123 | // If there aren't any Company attributes, return an empty string 124 | if (attributes.Length == 0) 125 | return ""; 126 | // If there is a Company attribute, return its value 127 | return ((AssemblyCompanyAttribute)attributes[0]).Company; 128 | } 129 | } 130 | #endregion 131 | 132 | private void frmAbout_Load(object sender, EventArgs e) 133 | { 134 | 135 | } 136 | } 137 | } 138 | -------------------------------------------------------------------------------- /ExportsToC++/frmName.resx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | -------------------------------------------------------------------------------- /ExportsToC++/Properties/Resources.resx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | 122 | ..\Resources\class.bmp;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 123 | 124 | 125 | ..\Resources\ArrangeWindowsHS.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 126 | 127 | 128 | ..\Resources\DeleteHS.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 129 | 130 | 131 | ..\Resources\EditCodeHS.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 132 | 133 | 134 | ..\Resources\CopyHS.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 135 | 136 | 137 | ..\Resources\Code_Component.ico;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 138 | 139 | 140 | ..\Resources\ZoomHS.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 141 | 142 | 143 | ..\Resources\openHS.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 144 | 145 | 146 | ..\Resources\Help.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 147 | 148 | 149 | ..\Resources\ArrangeSideBySideHS.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 150 | 151 | -------------------------------------------------------------------------------- /ExportsToC++/frmAbout.Designer.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of ExportsToC++. 3 | * 4 | * ExportsToC++ is free software: you can redistribute it and/or modify 5 | * it under the terms of the GNU General Public License as published by 6 | * the Free Software Foundation, either version 3 of the License, or 7 | * (at your option) any later version. 8 | * 9 | * ExportsToC++ is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | * GNU General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public License 15 | * along with Foobar. If not, see 16 | */ 17 | 18 | namespace ExportsToC__ 19 | { 20 | partial class frmAbout 21 | { 22 | /// 23 | /// Required designer variable. 24 | /// 25 | private System.ComponentModel.IContainer components = null; 26 | 27 | /// 28 | /// Clean up any resources being used. 29 | /// 30 | protected override void Dispose(bool disposing) 31 | { 32 | if (disposing && (components != null)) 33 | { 34 | components.Dispose(); 35 | } 36 | base.Dispose(disposing); 37 | } 38 | 39 | #region Windows Form Designer generated code 40 | 41 | /// 42 | /// Required method for Designer support - do not modify 43 | /// the contents of this method with the code editor. 44 | /// 45 | private void InitializeComponent() 46 | { 47 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmAbout)); 48 | this.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel(); 49 | this.logoPictureBox = new System.Windows.Forms.PictureBox(); 50 | this.labelProductName = new System.Windows.Forms.Label(); 51 | this.labelVersion = new System.Windows.Forms.Label(); 52 | this.labelCopyright = new System.Windows.Forms.Label(); 53 | this.labelCompanyName = new System.Windows.Forms.Label(); 54 | this.textBoxDescription = new System.Windows.Forms.TextBox(); 55 | this.okButton = new System.Windows.Forms.Button(); 56 | this.tableLayoutPanel.SuspendLayout(); 57 | ((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).BeginInit(); 58 | this.SuspendLayout(); 59 | // 60 | // tableLayoutPanel 61 | // 62 | this.tableLayoutPanel.ColumnCount = 2; 63 | this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33F)); 64 | this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 67F)); 65 | this.tableLayoutPanel.Controls.Add(this.logoPictureBox, 0, 0); 66 | this.tableLayoutPanel.Controls.Add(this.labelProductName, 1, 0); 67 | this.tableLayoutPanel.Controls.Add(this.labelVersion, 1, 1); 68 | this.tableLayoutPanel.Controls.Add(this.labelCopyright, 1, 2); 69 | this.tableLayoutPanel.Controls.Add(this.labelCompanyName, 1, 3); 70 | this.tableLayoutPanel.Controls.Add(this.textBoxDescription, 1, 4); 71 | this.tableLayoutPanel.Controls.Add(this.okButton, 1, 5); 72 | this.tableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill; 73 | this.tableLayoutPanel.Location = new System.Drawing.Point(9, 9); 74 | this.tableLayoutPanel.Name = "tableLayoutPanel"; 75 | this.tableLayoutPanel.RowCount = 6; 76 | this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F)); 77 | this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F)); 78 | this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F)); 79 | this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F)); 80 | this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F)); 81 | this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F)); 82 | this.tableLayoutPanel.Size = new System.Drawing.Size(567, 265); 83 | this.tableLayoutPanel.TabIndex = 0; 84 | // 85 | // logoPictureBox 86 | // 87 | this.logoPictureBox.Dock = System.Windows.Forms.DockStyle.Fill; 88 | this.logoPictureBox.Image = ((System.Drawing.Image)(resources.GetObject("logoPictureBox.Image"))); 89 | this.logoPictureBox.Location = new System.Drawing.Point(3, 3); 90 | this.logoPictureBox.Name = "logoPictureBox"; 91 | this.tableLayoutPanel.SetRowSpan(this.logoPictureBox, 6); 92 | this.logoPictureBox.Size = new System.Drawing.Size(181, 259); 93 | this.logoPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; 94 | this.logoPictureBox.TabIndex = 12; 95 | this.logoPictureBox.TabStop = false; 96 | // 97 | // labelProductName 98 | // 99 | this.labelProductName.Dock = System.Windows.Forms.DockStyle.Fill; 100 | this.labelProductName.Location = new System.Drawing.Point(193, 0); 101 | this.labelProductName.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0); 102 | this.labelProductName.MaximumSize = new System.Drawing.Size(0, 17); 103 | this.labelProductName.Name = "labelProductName"; 104 | this.labelProductName.Size = new System.Drawing.Size(371, 17); 105 | this.labelProductName.TabIndex = 19; 106 | this.labelProductName.Text = "Product Name"; 107 | this.labelProductName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; 108 | // 109 | // labelVersion 110 | // 111 | this.labelVersion.Dock = System.Windows.Forms.DockStyle.Fill; 112 | this.labelVersion.Location = new System.Drawing.Point(193, 26); 113 | this.labelVersion.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0); 114 | this.labelVersion.MaximumSize = new System.Drawing.Size(0, 17); 115 | this.labelVersion.Name = "labelVersion"; 116 | this.labelVersion.Size = new System.Drawing.Size(371, 17); 117 | this.labelVersion.TabIndex = 0; 118 | this.labelVersion.Text = "Version"; 119 | this.labelVersion.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; 120 | // 121 | // labelCopyright 122 | // 123 | this.labelCopyright.Dock = System.Windows.Forms.DockStyle.Fill; 124 | this.labelCopyright.Location = new System.Drawing.Point(193, 52); 125 | this.labelCopyright.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0); 126 | this.labelCopyright.MaximumSize = new System.Drawing.Size(0, 17); 127 | this.labelCopyright.Name = "labelCopyright"; 128 | this.labelCopyright.Size = new System.Drawing.Size(371, 17); 129 | this.labelCopyright.TabIndex = 21; 130 | this.labelCopyright.Text = "Copyright"; 131 | this.labelCopyright.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; 132 | // 133 | // labelCompanyName 134 | // 135 | this.labelCompanyName.Dock = System.Windows.Forms.DockStyle.Fill; 136 | this.labelCompanyName.Location = new System.Drawing.Point(193, 78); 137 | this.labelCompanyName.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0); 138 | this.labelCompanyName.MaximumSize = new System.Drawing.Size(0, 17); 139 | this.labelCompanyName.Name = "labelCompanyName"; 140 | this.labelCompanyName.Size = new System.Drawing.Size(371, 17); 141 | this.labelCompanyName.TabIndex = 22; 142 | this.labelCompanyName.Text = "Company Name"; 143 | this.labelCompanyName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; 144 | // 145 | // textBoxDescription 146 | // 147 | this.textBoxDescription.Dock = System.Windows.Forms.DockStyle.Fill; 148 | this.textBoxDescription.Location = new System.Drawing.Point(193, 107); 149 | this.textBoxDescription.Margin = new System.Windows.Forms.Padding(6, 3, 3, 3); 150 | this.textBoxDescription.Multiline = true; 151 | this.textBoxDescription.Name = "textBoxDescription"; 152 | this.textBoxDescription.ReadOnly = true; 153 | this.textBoxDescription.ScrollBars = System.Windows.Forms.ScrollBars.Both; 154 | this.textBoxDescription.Size = new System.Drawing.Size(371, 126); 155 | this.textBoxDescription.TabIndex = 23; 156 | this.textBoxDescription.TabStop = false; 157 | this.textBoxDescription.Text = resources.GetString("textBoxDescription.Text"); 158 | // 159 | // okButton 160 | // 161 | this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); 162 | this.okButton.DialogResult = System.Windows.Forms.DialogResult.Cancel; 163 | this.okButton.Location = new System.Drawing.Point(489, 239); 164 | this.okButton.Name = "okButton"; 165 | this.okButton.Size = new System.Drawing.Size(75, 23); 166 | this.okButton.TabIndex = 24; 167 | this.okButton.Text = "&OK"; 168 | // 169 | // frmAbout 170 | // 171 | this.AcceptButton = this.okButton; 172 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 173 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 174 | this.ClientSize = new System.Drawing.Size(585, 283); 175 | this.Controls.Add(this.tableLayoutPanel); 176 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; 177 | this.MaximizeBox = false; 178 | this.MinimizeBox = false; 179 | this.Name = "frmAbout"; 180 | this.Padding = new System.Windows.Forms.Padding(9); 181 | this.ShowIcon = false; 182 | this.ShowInTaskbar = false; 183 | this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; 184 | this.Text = "About"; 185 | this.Load += new System.EventHandler(this.frmAbout_Load); 186 | this.tableLayoutPanel.ResumeLayout(false); 187 | this.tableLayoutPanel.PerformLayout(); 188 | ((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).EndInit(); 189 | this.ResumeLayout(false); 190 | 191 | } 192 | 193 | #endregion 194 | 195 | private System.Windows.Forms.TableLayoutPanel tableLayoutPanel; 196 | private System.Windows.Forms.PictureBox logoPictureBox; 197 | private System.Windows.Forms.Label labelProductName; 198 | private System.Windows.Forms.Label labelVersion; 199 | private System.Windows.Forms.Label labelCopyright; 200 | private System.Windows.Forms.Label labelCompanyName; 201 | private System.Windows.Forms.TextBox textBoxDescription; 202 | private System.Windows.Forms.Button okButton; 203 | } 204 | } 205 | -------------------------------------------------------------------------------- /ExportsToC++/frmMain.Designer.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of ExportsToC++. 3 | * 4 | * ExportsToC++ is free software: you can redistribute it and/or modify 5 | * it under the terms of the GNU General Public License as published by 6 | * the Free Software Foundation, either version 3 of the License, or 7 | * (at your option) any later version. 8 | * 9 | * ExportsToC++ is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | * GNU General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public License 15 | * along with Foobar. If not, see 16 | */ 17 | 18 | namespace ExportsToC__ 19 | { 20 | partial class frmMain 21 | { 22 | /// 23 | /// Required designer variable. 24 | /// 25 | private System.ComponentModel.IContainer components = null; 26 | 27 | /// 28 | /// Clean up any resources being used. 29 | /// 30 | /// true if managed resources should be disposed; otherwise, false. 31 | protected override void Dispose(bool disposing) 32 | { 33 | if (disposing && (components != null)) 34 | { 35 | components.Dispose(); 36 | } 37 | base.Dispose(disposing); 38 | } 39 | 40 | #region Windows Form Designer generated code 41 | 42 | /// 43 | /// Required method for Designer support - do not modify 44 | /// the contents of this method with the code editor. 45 | /// 46 | private void InitializeComponent() 47 | { 48 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMain)); 49 | this.menuStrip1 = new System.Windows.Forms.MenuStrip(); 50 | this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); 51 | this.openToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); 52 | this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator(); 53 | this.closeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); 54 | this.generateToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); 55 | this.cToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); 56 | this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); 57 | this.orientationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); 58 | this.horizontalToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); 59 | this.verticalToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); 60 | this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); 61 | this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); 62 | this.ofDialog = new System.Windows.Forms.OpenFileDialog(); 63 | this.SplitCont = new System.Windows.Forms.SplitContainer(); 64 | this.groupBox1 = new System.Windows.Forms.GroupBox(); 65 | this.txtExported = new System.Windows.Forms.TextBox(); 66 | this.groupBox2 = new System.Windows.Forms.GroupBox(); 67 | this.txtCode = new System.Windows.Forms.TextBox(); 68 | this.toolStrip1 = new System.Windows.Forms.ToolStrip(); 69 | this.tsCopy = new System.Windows.Forms.ToolStripButton(); 70 | this.tsSave = new System.Windows.Forms.ToolStripButton(); 71 | this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); 72 | this.tsStub = new System.Windows.Forms.ToolStripButton(); 73 | this.sfDialog = new System.Windows.Forms.SaveFileDialog(); 74 | this.menuStrip1.SuspendLayout(); 75 | this.SplitCont.Panel1.SuspendLayout(); 76 | this.SplitCont.Panel2.SuspendLayout(); 77 | this.SplitCont.SuspendLayout(); 78 | this.groupBox1.SuspendLayout(); 79 | this.groupBox2.SuspendLayout(); 80 | this.toolStrip1.SuspendLayout(); 81 | this.SuspendLayout(); 82 | // 83 | // menuStrip1 84 | // 85 | this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { 86 | this.fileToolStripMenuItem, 87 | this.generateToolStripMenuItem, 88 | this.viewToolStripMenuItem, 89 | this.helpToolStripMenuItem}); 90 | this.menuStrip1.Location = new System.Drawing.Point(0, 0); 91 | this.menuStrip1.Name = "menuStrip1"; 92 | this.menuStrip1.Size = new System.Drawing.Size(549, 24); 93 | this.menuStrip1.TabIndex = 0; 94 | this.menuStrip1.Text = "menuStrip1"; 95 | // 96 | // fileToolStripMenuItem 97 | // 98 | this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { 99 | this.openToolStripMenuItem, 100 | this.toolStripMenuItem1, 101 | this.closeToolStripMenuItem}); 102 | this.fileToolStripMenuItem.Name = "fileToolStripMenuItem"; 103 | this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20); 104 | this.fileToolStripMenuItem.Text = "&File"; 105 | // 106 | // openToolStripMenuItem 107 | // 108 | this.openToolStripMenuItem.Image = global::ExportsToC__.Properties.Resources.openHS; 109 | this.openToolStripMenuItem.Name = "openToolStripMenuItem"; 110 | this.openToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O))); 111 | this.openToolStripMenuItem.Size = new System.Drawing.Size(146, 22); 112 | this.openToolStripMenuItem.Text = "&Open"; 113 | this.openToolStripMenuItem.Click += new System.EventHandler(this.openToolStripMenuItem_Click); 114 | // 115 | // toolStripMenuItem1 116 | // 117 | this.toolStripMenuItem1.Name = "toolStripMenuItem1"; 118 | this.toolStripMenuItem1.Size = new System.Drawing.Size(143, 6); 119 | // 120 | // closeToolStripMenuItem 121 | // 122 | this.closeToolStripMenuItem.Image = global::ExportsToC__.Properties.Resources.DeleteHS; 123 | this.closeToolStripMenuItem.Name = "closeToolStripMenuItem"; 124 | this.closeToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.F4))); 125 | this.closeToolStripMenuItem.Size = new System.Drawing.Size(146, 22); 126 | this.closeToolStripMenuItem.Text = "&Close"; 127 | this.closeToolStripMenuItem.Click += new System.EventHandler(this.closeToolStripMenuItem_Click); 128 | // 129 | // generateToolStripMenuItem 130 | // 131 | this.generateToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { 132 | this.cToolStripMenuItem}); 133 | this.generateToolStripMenuItem.Name = "generateToolStripMenuItem"; 134 | this.generateToolStripMenuItem.Size = new System.Drawing.Size(61, 20); 135 | this.generateToolStripMenuItem.Text = "&Convert"; 136 | // 137 | // cToolStripMenuItem 138 | // 139 | this.cToolStripMenuItem.Image = global::ExportsToC__.Properties.Resources.Code_Component; 140 | this.cToolStripMenuItem.Name = "cToolStripMenuItem"; 141 | this.cToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.G))); 142 | this.cToolStripMenuItem.Size = new System.Drawing.Size(205, 22); 143 | this.cToolStripMenuItem.Text = "To &C++ Wrapper"; 144 | this.cToolStripMenuItem.Click += new System.EventHandler(this.cToolStripMenuItem_Click); 145 | // 146 | // viewToolStripMenuItem 147 | // 148 | this.viewToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { 149 | this.orientationToolStripMenuItem}); 150 | this.viewToolStripMenuItem.Name = "viewToolStripMenuItem"; 151 | this.viewToolStripMenuItem.Size = new System.Drawing.Size(44, 20); 152 | this.viewToolStripMenuItem.Text = "&View"; 153 | // 154 | // orientationToolStripMenuItem 155 | // 156 | this.orientationToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { 157 | this.horizontalToolStripMenuItem, 158 | this.verticalToolStripMenuItem}); 159 | this.orientationToolStripMenuItem.Image = global::ExportsToC__.Properties.Resources.ZoomHS; 160 | this.orientationToolStripMenuItem.Name = "orientationToolStripMenuItem"; 161 | this.orientationToolStripMenuItem.Size = new System.Drawing.Size(134, 22); 162 | this.orientationToolStripMenuItem.Text = "Orientation"; 163 | // 164 | // horizontalToolStripMenuItem 165 | // 166 | this.horizontalToolStripMenuItem.Image = global::ExportsToC__.Properties.Resources.ArrangeWindowsHS; 167 | this.horizontalToolStripMenuItem.Name = "horizontalToolStripMenuItem"; 168 | this.horizontalToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Alt) 169 | | System.Windows.Forms.Keys.H))); 170 | this.horizontalToolStripMenuItem.Size = new System.Drawing.Size(195, 22); 171 | this.horizontalToolStripMenuItem.Text = "&Horizontal"; 172 | this.horizontalToolStripMenuItem.Click += new System.EventHandler(this.horizontalToolStripMenuItem_Click); 173 | // 174 | // verticalToolStripMenuItem 175 | // 176 | this.verticalToolStripMenuItem.Image = global::ExportsToC__.Properties.Resources.ArrangeSideBySideHS; 177 | this.verticalToolStripMenuItem.Name = "verticalToolStripMenuItem"; 178 | this.verticalToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)(((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.Alt) 179 | | System.Windows.Forms.Keys.V))); 180 | this.verticalToolStripMenuItem.Size = new System.Drawing.Size(195, 22); 181 | this.verticalToolStripMenuItem.Text = "&Vertical"; 182 | this.verticalToolStripMenuItem.Click += new System.EventHandler(this.verticalToolStripMenuItem_Click); 183 | // 184 | // helpToolStripMenuItem 185 | // 186 | this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { 187 | this.aboutToolStripMenuItem}); 188 | this.helpToolStripMenuItem.Name = "helpToolStripMenuItem"; 189 | this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20); 190 | this.helpToolStripMenuItem.Text = "&Help"; 191 | // 192 | // aboutToolStripMenuItem 193 | // 194 | this.aboutToolStripMenuItem.Image = global::ExportsToC__.Properties.Resources.Help; 195 | this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem"; 196 | this.aboutToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.F1; 197 | this.aboutToolStripMenuItem.Size = new System.Drawing.Size(126, 22); 198 | this.aboutToolStripMenuItem.Text = "&About"; 199 | this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click); 200 | // 201 | // SplitCont 202 | // 203 | this.SplitCont.Dock = System.Windows.Forms.DockStyle.Fill; 204 | this.SplitCont.Location = new System.Drawing.Point(0, 24); 205 | this.SplitCont.Name = "SplitCont"; 206 | this.SplitCont.Orientation = System.Windows.Forms.Orientation.Horizontal; 207 | // 208 | // SplitCont.Panel1 209 | // 210 | this.SplitCont.Panel1.Controls.Add(this.groupBox1); 211 | // 212 | // SplitCont.Panel2 213 | // 214 | this.SplitCont.Panel2.Controls.Add(this.groupBox2); 215 | this.SplitCont.Size = new System.Drawing.Size(549, 366); 216 | this.SplitCont.SplitterDistance = 207; 217 | this.SplitCont.TabIndex = 1; 218 | // 219 | // groupBox1 220 | // 221 | this.groupBox1.Controls.Add(this.txtExported); 222 | this.groupBox1.Dock = System.Windows.Forms.DockStyle.Fill; 223 | this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.Flat; 224 | this.groupBox1.Location = new System.Drawing.Point(0, 0); 225 | this.groupBox1.Name = "groupBox1"; 226 | this.groupBox1.Size = new System.Drawing.Size(549, 207); 227 | this.groupBox1.TabIndex = 0; 228 | this.groupBox1.TabStop = false; 229 | this.groupBox1.Text = "Exported Functions"; 230 | // 231 | // txtExported 232 | // 233 | this.txtExported.Dock = System.Windows.Forms.DockStyle.Fill; 234 | this.txtExported.Font = new System.Drawing.Font("Lucida Console", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 235 | this.txtExported.Location = new System.Drawing.Point(3, 16); 236 | this.txtExported.Multiline = true; 237 | this.txtExported.Name = "txtExported"; 238 | this.txtExported.ReadOnly = true; 239 | this.txtExported.ScrollBars = System.Windows.Forms.ScrollBars.Both; 240 | this.txtExported.Size = new System.Drawing.Size(543, 188); 241 | this.txtExported.TabIndex = 0; 242 | this.txtExported.WordWrap = false; 243 | // 244 | // groupBox2 245 | // 246 | this.groupBox2.Controls.Add(this.txtCode); 247 | this.groupBox2.Controls.Add(this.toolStrip1); 248 | this.groupBox2.Dock = System.Windows.Forms.DockStyle.Fill; 249 | this.groupBox2.Location = new System.Drawing.Point(0, 0); 250 | this.groupBox2.Name = "groupBox2"; 251 | this.groupBox2.Size = new System.Drawing.Size(549, 155); 252 | this.groupBox2.TabIndex = 0; 253 | this.groupBox2.TabStop = false; 254 | this.groupBox2.Text = "Conversion"; 255 | // 256 | // txtCode 257 | // 258 | this.txtCode.Dock = System.Windows.Forms.DockStyle.Fill; 259 | this.txtCode.Font = new System.Drawing.Font("Lucida Console", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 260 | this.txtCode.Location = new System.Drawing.Point(3, 41); 261 | this.txtCode.Multiline = true; 262 | this.txtCode.Name = "txtCode"; 263 | this.txtCode.ReadOnly = true; 264 | this.txtCode.ScrollBars = System.Windows.Forms.ScrollBars.Both; 265 | this.txtCode.Size = new System.Drawing.Size(543, 111); 266 | this.txtCode.TabIndex = 1; 267 | this.txtCode.WordWrap = false; 268 | // 269 | // toolStrip1 270 | // 271 | this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden; 272 | this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { 273 | this.tsCopy, 274 | this.tsSave, 275 | this.toolStripSeparator1, 276 | this.tsStub}); 277 | this.toolStrip1.Location = new System.Drawing.Point(3, 16); 278 | this.toolStrip1.Name = "toolStrip1"; 279 | this.toolStrip1.Size = new System.Drawing.Size(543, 25); 280 | this.toolStrip1.TabIndex = 2; 281 | this.toolStrip1.Text = "toolStrip1"; 282 | // 283 | // tsCopy 284 | // 285 | this.tsCopy.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; 286 | this.tsCopy.Image = global::ExportsToC__.Properties.Resources.CopyHS; 287 | this.tsCopy.ImageTransparentColor = System.Drawing.Color.Magenta; 288 | this.tsCopy.Name = "tsCopy"; 289 | this.tsCopy.Size = new System.Drawing.Size(23, 22); 290 | this.tsCopy.Text = "Copy Code to Clipboard"; 291 | this.tsCopy.Click += new System.EventHandler(this.tsCopy_Click); 292 | // 293 | // tsSave 294 | // 295 | this.tsSave.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; 296 | this.tsSave.Image = ((System.Drawing.Image)(resources.GetObject("tsSave.Image"))); 297 | this.tsSave.ImageTransparentColor = System.Drawing.Color.Magenta; 298 | this.tsSave.Name = "tsSave"; 299 | this.tsSave.Size = new System.Drawing.Size(23, 22); 300 | this.tsSave.Text = "Save as CPP Source"; 301 | this.tsSave.Click += new System.EventHandler(this.tsSave_Click); 302 | // 303 | // toolStripSeparator1 304 | // 305 | this.toolStripSeparator1.Name = "toolStripSeparator1"; 306 | this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25); 307 | // 308 | // tsStub 309 | // 310 | this.tsStub.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; 311 | this.tsStub.Image = global::ExportsToC__.Properties.Resources.EditCodeHS; 312 | this.tsStub.ImageTransparentColor = System.Drawing.Color.Magenta; 313 | this.tsStub.Name = "tsStub"; 314 | this.tsStub.Size = new System.Drawing.Size(23, 22); 315 | this.tsStub.Text = "Generate Stub Method"; 316 | this.tsStub.Visible = false; 317 | // 318 | // frmMain 319 | // 320 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 14F); 321 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 322 | this.ClientSize = new System.Drawing.Size(549, 390); 323 | this.Controls.Add(this.SplitCont); 324 | this.Controls.Add(this.menuStrip1); 325 | this.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 326 | this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); 327 | this.MainMenuStrip = this.menuStrip1; 328 | this.Name = "frmMain"; 329 | this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; 330 | this.Text = "ExportsToC++"; 331 | this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmMain_FormClosing); 332 | this.menuStrip1.ResumeLayout(false); 333 | this.menuStrip1.PerformLayout(); 334 | this.SplitCont.Panel1.ResumeLayout(false); 335 | this.SplitCont.Panel2.ResumeLayout(false); 336 | this.SplitCont.ResumeLayout(false); 337 | this.groupBox1.ResumeLayout(false); 338 | this.groupBox1.PerformLayout(); 339 | this.groupBox2.ResumeLayout(false); 340 | this.groupBox2.PerformLayout(); 341 | this.toolStrip1.ResumeLayout(false); 342 | this.toolStrip1.PerformLayout(); 343 | this.ResumeLayout(false); 344 | this.PerformLayout(); 345 | 346 | } 347 | 348 | #endregion 349 | 350 | private System.Windows.Forms.MenuStrip menuStrip1; 351 | private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem; 352 | private System.Windows.Forms.ToolStripMenuItem openToolStripMenuItem; 353 | private System.Windows.Forms.ToolStripSeparator toolStripMenuItem1; 354 | private System.Windows.Forms.ToolStripMenuItem closeToolStripMenuItem; 355 | private System.Windows.Forms.ToolStripMenuItem helpToolStripMenuItem; 356 | private System.Windows.Forms.ToolStripMenuItem aboutToolStripMenuItem; 357 | private System.Windows.Forms.ToolStripMenuItem generateToolStripMenuItem; 358 | private System.Windows.Forms.ToolStripMenuItem cToolStripMenuItem; 359 | private System.Windows.Forms.OpenFileDialog ofDialog; 360 | private System.Windows.Forms.SplitContainer SplitCont; 361 | private System.Windows.Forms.GroupBox groupBox1; 362 | private System.Windows.Forms.TextBox txtExported; 363 | private System.Windows.Forms.GroupBox groupBox2; 364 | private System.Windows.Forms.TextBox txtCode; 365 | private System.Windows.Forms.ToolStrip toolStrip1; 366 | private System.Windows.Forms.ToolStripButton tsCopy; 367 | private System.Windows.Forms.ToolStripButton tsStub; 368 | private System.Windows.Forms.ToolStripMenuItem viewToolStripMenuItem; 369 | private System.Windows.Forms.ToolStripMenuItem orientationToolStripMenuItem; 370 | private System.Windows.Forms.ToolStripMenuItem horizontalToolStripMenuItem; 371 | private System.Windows.Forms.ToolStripMenuItem verticalToolStripMenuItem; 372 | private System.Windows.Forms.ToolStripButton tsSave; 373 | private System.Windows.Forms.ToolStripSeparator toolStripSeparator1; 374 | private System.Windows.Forms.SaveFileDialog sfDialog; 375 | } 376 | } 377 | 378 | -------------------------------------------------------------------------------- /ExportsToC++/frmMain.resx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | 17, 17 122 | 123 | 124 | 132, 17 125 | 126 | 127 | 230, 17 128 | 129 | 130 | 131 | 132 | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 133 | YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAi1JREFUOE+tk91L 134 | k3EUx/0XvO8m8KLbmhrDtVgNnnIOZdkwrIhSn/A1TZf5QoqladTyBbIVLp20Wk3CSUW+gCliIoulaGXm 135 | iqY4fEUngsG33/lFzy/TuskfnMvP5zznnO8TFrYT78XzEKg87Stocy/jkXMBLc1B3LPNoKH+G6y3/Lhe 136 | NYnyso8oLhpDQf4ILuT4oPQmsKcbqK9bx7/e2voGDEk9OJH0jJcicD9d4oKa6sW/8gQHF9Zw0PQSKpUM 137 | 83GXEDgfznNBedn0toJf8OfAEiKNHhRdnsIxU6sQ2JtmueCS5dMWwe/wu4kg9khu5OWOIyHeLgSNdwJc 138 | kJ01sknwJzzgC2CXzglZHobRaBOCutqvXCCnDSuC7eDuoS8Ij2nGyVOvERvbIAQ3aqbQ1Ql2SuDMuTcw 139 | n+7n26aF0cz02dT5J9yLRPMrSJJVCK5WTKDDA5YBoNXxnd19FVWVc3yptDCaOTPDp8BxCe3Q66uFoKR4 140 | HK7HwAP7BgtOCIbk3E1lOmtBcnop7xwXz+CjLuh0FUJgKRhlMFB7O8Q7k4CFBJEaCd4PsxidnIOcfw2H 141 | DW0c1hxyQKstFQKKpe0ulM8mAcHnC2/ivX8e/pllXLxiRZTOweAWRB24D01MoRBkZrxlc6/wmSP0Luze 142 | J+FJRx88nQPo6h1C/6AXR4xmqLRNiGbwXnUj1Oo8IchK9yampvTxeFLCKCR0ZzoVbZsWRjNTVyqC90dn 143 | C8H//NE/AEJWOr7cK6XnAAAAAElFTkSuQmCC 144 | 145 | 146 | 147 | 335, 17 148 | 149 | 150 | 151 | AAABAAUAICAQAAAAAADoAgAAVgAAACAgAAABAAgAqAgAAD4DAAAQEAAAAQAIAGgFAADmCwAAICAAAAEA 152 | IACoEAAAThEAABAQAAABACAAaAQAAPYhAAAoAAAAIAAAAEAAAAABAAQAAAAAAAAAAAAAAAAAAAAAAAAA 153 | AAAAAAAAAAAAAAAAAAAAgAAAAICAAIAAAACAAIAAgIAAAMDAwACAgIAAAAD/AAD/AAAA//8A/wAAAP8A 154 | /wD//wAA////ABEQAAAAAAAAAAAAAAAAARERGHd3d3d3d3d3d3d3dwERERj///////////////cBEREY 155 | ///////////////3ARERGP//////////////9wERERj///////////////cBEREY///////////////3 156 | ARERGP////////AA////9wERERj//////wDwMPAP//cBEREY//////CzALADMP/3ARERGP//////CzPw 157 | Ow//9wERERj/////8DC/v7Aw//cBEREY//////A78AD7MP/3ARERGP//8A8AAwDwDwD/9wERERj//w+A 158 | CAs48LMP//cBEREY///weI8DAPALD//3ARERGP//CA+P8PeP8P//9wERERj//wf/AA//D/////cBEREY 159 | //+AgA8AgA/////3ARERGP//8P8PD3D/////9wERERj///hw+ADw//////cBEREY////jw8PD//////3 160 | ARERGP/////4////////9wERERj///////////////cBEREY///////////////3ARERGP////////// 161 | /4AAAAERERj///////////+P94AREREY////////////j3gBERERGP///////////4eAERERERj///// 162 | //////+IAREREREY////////////gBERERERGIiIiIiIiIiIiIERERER4AAAB+AAAAfgAAAH4AAAB+AA 163 | AAfgAAAH4AAAB+AAAAfgAAAH4AAAB+AAAAfgAAAH4AAAB+AAAAfgAAAH4AAAB+AAAAfgAAAH4AAAB+AA 164 | AAfgAAAH4AAAB+AAAAfgAAAH4AAAB+AAAAfgAAAP4AAAH+AAAD/gAAB/4AAA/+AAAf8oAAAAIAAAAEAA 165 | AAABAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAgAAAAICAAIAAAACAAIAAgIAAAICA 166 | gADA3MAA8MqmAKo/KgD/PyoAAF8qAFVfKgCqXyoA/18qAAB/KgBVfyoAqn8qAP9/KgAAnyoAVZ8qAKqf 167 | KgD/nyoAAL8qAFW/KgCqvyoA/78qAADfKgBV3yoAqt8qAP/fKgAA/yoAVf8qAKr/KgD//yoAAABVAFUA 168 | VQCqAFUA/wBVAAAfVQBVH1UAqh9VAP8fVQAAP1UAVT9VAKo/VQD/P1UAAF9VAFVfVQCqX1UA/19VAAB/ 169 | VQBVf1UAqn9VAP9/VQAAn1UAVZ9VAKqfVQD/n1UAAL9VAFW/VQCqv1UA/79VAADfVQBV31UAqt9VAP/f 170 | VQAA/1UAVf9VAKr/VQD//1UAAAB/AFUAfwCqAH8A/wB/AAAffwBVH38Aqh9/AP8ffwAAP38AVT9/AKo/ 171 | fwD/P38AAF9/AFVffwCqX38A/19/AAB/fwBVf38Aqn9/AP9/fwAAn38AVZ9/AKqffwD/n38AAL9/AFW/ 172 | fwCqv38A/79/AADffwBV338Aqt9/AP/ffwAA/38AVf9/AKr/fwD//38AAACqAFUAqgCqAKoA/wCqAAAf 173 | qgBVH6oAqh+qAP8fqgAAP6oAVT+qAKo/qgD/P6oAAF+qAFVfqgCqX6oA/1+qAAB/qgBVf6oAqn+qAP9/ 174 | qgAAn6oAVZ+qAKqfqgD/n6oAAL+qAFW/qgCqv6oA/7+qAADfqgBV36oAqt+qAP/fqgAA/6oAVf+qAKr/ 175 | qgD//6oAAADUAFUA1ACqANQA/wDUAAAf1ABVH9QAqh/UAP8f1AAAP9QAVT/UAKo/1AD/P9QAAF/UAFVf 176 | 1ACqX9QA/1/UAAB/1ABVf9QAqn/UAP9/1AAAn9QAVZ/UAKqf1AD/n9QAAL/UAFW/1ACqv9QA/7/UAADf 177 | 1ABV39QAqt/UAP/f1AAA/9QAVf/UAKr/1AD//9QAVQD/AKoA/wAAH/8AVR//AKof/wD/H/8AAD//AFU/ 178 | /wCqP/8A/z//AABf/wBVX/8Aql//AP9f/wAAf/8AVX//AKp//wD/f/8AAJ//AFWf/wCqn/8A/5//AAC/ 179 | /wBVv/8Aqr//AP+//wAA3/8AVd//AKrf/wD/3/8AVf//AKr//wD/zMwA/8z/AP//MwD//2YA//+ZAP// 180 | zAAAfwAAVX8AAKp/AAD/fwAAAJ8AAFWfAACqnwAA/58AAAC/AABVvwAAqr8AAP+/AAAA3wAAVd8AAKrf 181 | AAD/3wAAVf8AAKr/AAAAACoAVQAqAKoAKgD/ACoAAB8qAFUfKgCqHyoA/x8qAAA/KgBVPyoA8Pv/AKSg 182 | oACAgIAAAAD/AAD/AAAA//8A/wAAAAAAAAD//wAA////AP39/f39/f39/f39/f39/f39/f39/f39/f39 183 | /f39/f39/f39/f39MvX19fX19fX19fX19Q31LfX1DfUt9fX9/f39/f39/f0xrwgJhgkJCQmGCYIJ94Ji 184 | XoKCXl9e9f39/f39/f39/Tavr6+vrwjUCNQJrwnUCdTUCQkJCYL1/f39/f39/f39Ma+vr6+vr6+v1NTU 185 | 1NTUCQnUCdQJXg39/f39/f39/f0Hr6+vr6+vr6+v1IYJCdTU1AnUCdRf9f39/f39/f39/Tavr/avr6+v 186 | Ca9aLgoH1AmC1AnUCYL1/f39/f39/f39B6/2r6+vr1otgloyMjL3LvVaCdQJCfX9/f39/f39/f02r6+v 187 | 9q8JMlsyMlYyMgoyV/EJ1NRe9f39/f39/f39/Qev9vav9q9aW1taWzJWMjMyWq8J1An1/f39/f39/f39 188 | Wq/2r6+vCfdaXzJaWjJXMi4Jr9TUXvX9/f39/f39/f1aCNSv9lYyWoNaVq+vXjIyMi5ar9QJ9f39/f39 189 | /f39/TEuCgf/X4ODgzKGr6/UMlsyMjGvr4L1/f39/f39Xi39MjIyMoJaWoODgzL2r1paMjIuB6/UCfX9 190 | /f39/V4yWzIyVjIyLjIyLlqDWjIyWltWB6+vr68J9f39/f39XltbW1pbMlcyMjIyg4eDg15bWlsygq+v 191 | r4b1/f39/f39glpfMlpaMjJXLlqH9V+DgzIyWzKGr/avCfX9/f39Ni5Wg1ou//+CMjIyMlr/goODWv9a 192 | g/avr9EJ9f39/f2DgwmDVlr//68yVzIyMvbUg1qD9q/2r9Gzrwn1/f39/YNag4NfLf//WltaMi1a///2 193 | s/az9tGz9q/2CfX9/f39/f2DXoNaMjJaWjJa/////////9Gz/6//r68J9f39/f39CFaDh4ODXoNbWjKC 194 | ///////////R9v/29gn1/f39/f3UWoctWoODMjJbVgn///////////+z0bPRCS39/f39/f0JWv1fg4Na 195 | /1oJ9v//////////////9v8J9f39/f39/f39/V6DWgn//////////////////4aDXloN/f39/f39/f39 196 | gv////////////////////9a9Q319fX9/f39/f39/f1e/////////////////////1oIgl4xWv39/f39 197 | /f39/YL/////////////////////WggJMVr9/f39/f39/f39hv////////////////////9a0Qde/f39 198 | /f39/f39/f2C////////////s//Rr9Gvr1429/39/f39/f39/f39/YaChoKCgoJegl73Xl73Xl5eXoL9 199 | /f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f39/f3//////AAAB/wAAAf8AAAH/AAAB/wA 200 | AAf8AAAH/AAAB/wAAAf8AAAH/AAAB/wAAAf8AAAH5AAAB8AAAAfAAAAH4AAAB4AAAAeAAAAHgAAAB+AA 201 | AAfAAAAHwAAAB+QAAAf8AAAH/AAAB/wAAAf8AAAP/AAAH/wAAD/8AAB//////ygAAAAQAAAAIAAAAAEA 202 | CAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAACAAAAAgIAAgAAAAIAAgACAgAAAgICAAMDc 203 | wADwyqYAqj8qAP8/KgAAXyoAVV8qAKpfKgD/XyoAAH8qAFV/KgCqfyoA/38qAACfKgBVnyoAqp8qAP+f 204 | KgAAvyoAVb8qAKq/KgD/vyoAAN8qAFXfKgCq3yoA/98qAAD/KgBV/yoAqv8qAP//KgAAAFUAVQBVAKoA 205 | VQD/AFUAAB9VAFUfVQCqH1UA/x9VAAA/VQBVP1UAqj9VAP8/VQAAX1UAVV9VAKpfVQD/X1UAAH9VAFV/ 206 | VQCqf1UA/39VAACfVQBVn1UAqp9VAP+fVQAAv1UAVb9VAKq/VQD/v1UAAN9VAFXfVQCq31UA/99VAAD/ 207 | VQBV/1UAqv9VAP//VQAAAH8AVQB/AKoAfwD/AH8AAB9/AFUffwCqH38A/x9/AAA/fwBVP38Aqj9/AP8/ 208 | fwAAX38AVV9/AKpffwD/X38AAH9/AFV/fwCqf38A/39/AACffwBVn38Aqp9/AP+ffwAAv38AVb9/AKq/ 209 | fwD/v38AAN9/AFXffwCq338A/99/AAD/fwBV/38Aqv9/AP//fwAAAKoAVQCqAKoAqgD/AKoAAB+qAFUf 210 | qgCqH6oA/x+qAAA/qgBVP6oAqj+qAP8/qgAAX6oAVV+qAKpfqgD/X6oAAH+qAFV/qgCqf6oA/3+qAACf 211 | qgBVn6oAqp+qAP+fqgAAv6oAVb+qAKq/qgD/v6oAAN+qAFXfqgCq36oA/9+qAAD/qgBV/6oAqv+qAP// 212 | qgAAANQAVQDUAKoA1AD/ANQAAB/UAFUf1ACqH9QA/x/UAAA/1ABVP9QAqj/UAP8/1AAAX9QAVV/UAKpf 213 | 1AD/X9QAAH/UAFV/1ACqf9QA/3/UAACf1ABVn9QAqp/UAP+f1AAAv9QAVb/UAKq/1AD/v9QAAN/UAFXf 214 | 1ACq39QA/9/UAAD/1ABV/9QAqv/UAP//1ABVAP8AqgD/AAAf/wBVH/8Aqh//AP8f/wAAP/8AVT//AKo/ 215 | /wD/P/8AAF//AFVf/wCqX/8A/1//AAB//wBVf/8Aqn//AP9//wAAn/8AVZ//AKqf/wD/n/8AAL//AFW/ 216 | /wCqv/8A/7//AADf/wBV3/8Aqt//AP/f/wBV//8Aqv//AP/MzAD/zP8A//8zAP//ZgD//5kA///MAAB/ 217 | AABVfwAAqn8AAP9/AAAAnwAAVZ8AAKqfAAD/nwAAAL8AAFW/AACqvwAA/78AAADfAABV3wAAqt8AAP/f 218 | AABV/wAAqv8AAAAAKgBVACoAqgAqAP8AKgAAHyoAVR8qAKofKgD/HyoAAD8qAFU/KgDw+/8ApKCgAICA 219 | gAAAAP8AAP8AAAD//wD/AAAAAAAAAP//AAD///8A/f39/f39/f39/f39/f39/f39XjEyMTEyMTEtMjEx 220 | Mv39/V6vCAjUCAjUCAgJCTH9/f1e0a+vCTLUNgnU1Agx/f39Xq+v1IIyLi6ChtQJMf39/V72s1ZWMlpb 221 | MjLU1DH9/f0yr1oIXwcIWjLUrwkx/f2CMjIug4NbMloyMq8IMf0yWjJaWzJagl9WCdSvCDL9/Vsyr4Iy 222 | r4OvWq/2rwkx/YODXlYyVjL2//+v9tEIMf39r4NaWwmv//////YJCTL9/f2C/1qv//////82MTEx/f39 223 | gv/////////2NtQJMf39/Yb//////////1qGXv39/f2GCYKGgoJe915eXv39/f///f3AATavwAH2r8AB 224 | WzLAATIywAFX8cAB1F6AAf39AAH9/YABB68AAa/2gAFbW8ABMlbAATJawAPUCcAH/f0oAAAAIAAAAEAA 225 | AAABACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 226 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 227 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 228 | AACBaFb/Y0k1/2NJNf9jSTX/Y0k1/2NJNf9jSTX/Y0k1/2NJNf9jSTX/Y0k1/2NJNf9jSTX/Y0k1/2NJ 229 | Nf9jSTX/Y0k1/2NJNf9jSTX/Y0k1/2NJNf9jSTX/Y0k1/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 230 | AAAAAAAAAAAAAIRrWf/0287/3sCx/9y+rv/bvKz/27uq/9m5qP/Yt6X/2LWj/9ezof/WsZ//1rCc/9St 231 | mv/Uq5f/0qqW/9Kok//QppH/0KSP/8+jjf/PoIv/zZ+J/82eh/9jSTX/AAAAAAAAAAAAAAAAAAAAAAAA 232 | AAAAAAAAAAAAAAAAAAAAAAAAhm5b//Tc0f/14db/9d/U//Xd0v/03ND/9NrN//PYy//y18n/8tXH//HU 233 | xv/x0sP/8dHB//HQwP/xzr7/8M28//DNu//wy7n/78q4/+/Jt//uyLX/zaCJ/2NJNf8AAAAAAAAAAAAA 234 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACJcF7/9d/T//bj2v/24tf/9uDV//Xe0//13dH/9NvO//TZ 235 | zf/z2Mv/89bI//LVxv/y1MX/8dLD//HQwf/xz7//8M69//DNu//vzLr/78u5/+/JuP/PoYv/Y0k1/wAA 236 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAItzYf/24Nb/+Obd//fk2//249n/9uHX//Xf 237 | 1P/13dL/9NzQ//Tazv/u0cX/4L6z/967sP/lx7r/8tLE//LSwv/w0MD/8M6+//DOvf/wzLv/78u6/9Ci 238 | jf9jSTX/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjXZk//bi2P/46OD/+Off//fl 239 | 3f/249r/9uLX//bg1v/ixbz/9N3S/7aMh/+NQUH/ij8//5BoZP/y1cf/7s/B/9Gqnv/x0cH/8NC///DO 240 | vf/wzbz/0KSP/2NJNf8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACPeGf/9+Tb//nr 241 | 5f/46eL/+Ojg//jm3f/35Nv/qYJ9/4RLS//HoJn/nXBs/7FZWP+7W1r/kV5b/8GXj/+LVFD/dDQ0/55x 242 | a//tzb7/8dHA//DPvv/RppH/Y0k1/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJJ7 243 | af/45t7/+e3o//ns5f/56uT/9+ff/969uP+kXFv/4IaG/6hcXf+lW1v/ymtq/8lmZf+bTU3/iEA//6dP 244 | Tv/SZmX/dDQ0/+C9sf/x0sP/8dHB/9KplP9jSTX/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 245 | AAAAAAAAlX1s//jo4f/68Ov/+u/p//rt5//56+X/+Oni/8uMiv/Yg4P/3IOD/9t9ff/NcXH/xmlo/8tn 246 | Zv/FYV//yGNh/8hjYf+odnL/89bI//LVxv/x08X/06uW/2NJNf8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA 247 | AAAAAAAAAAAAAAAAAACWf2//+erj//vy7v/78Oz/++/q/+vTzv/oy8b/xpuX/81/f//kjY3/umxr/610 248 | cv+4f37/s15f/8pmZf/KZmb/mUpL/+LDuP/z2cv/89fJ//LVyP/UrJn/Y0k1/wAAAAAAAAAAAAAAAAAA 249 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAJmBcf/l0Mv/5dXT/+3i3//78u3/tXVz/5BPT/+3cXL/7pub/9OC 250 | gv+Xamf/+Obf//jl3f+7jYr/tmFh/8plZf+gUE7/oFRV/8WJhv/02s3/89jL/9Wum/9jSTX/AAAAAAAA 251 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAHk9PSgAAAAAkGdg/41BQf+KPz//k3Jy//v08f/el5j/7qSk//er 252 | rP/1pqb/tGxs/9a1sP/56uL/9+jg/+vOyP+tYmP/0G5s/81oZ/+zVVX/h1xZ//Tc0P/0287/1rGe/2NJ 253 | Nf8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABrNDSOfUJC8IVERGl9UUv/sVlY/7tbWv+UZmb/xqqo/791 254 | dv/Vhof/35OU//Kmp//dkZH/iFxa//ns5v/46uP/p3l3/812dv/NcHD/pFta/4BDQv+eeHT/9d7T//Xd 255 | 0f/Xs6D/Y0k1/wAAAAAAAAAAAAAAAAAAAACvZGYEn1laS6RcW//ghob/qFxd/6NZWf/KbGv/yWZl/5tO 256 | Tv+IQD//p09O/9JmZf+MR0j/0IeI//qurv/TiYr/kVxb/5hgYP/CdHT/34WF/7lnZ/+Xcm7/9+Xc//bj 257 | 2f/24tf/9eDV/9e1o/9jSTX/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAv3R0y9iDg//cg4P/2319/81x 258 | cf/GaWj/y2dm/8VhX//IY2H/tVpZ/5xdXv/1srP/+K+v//Soqv/uoKD/55aW/+aSkv/eiYn/3ISD/45P 259 | T//MpqH/9+bd//fk2//24tj/2bel/2NJNf8AAAAAAAAAAAAAAAAAAAAAs25uNrZsbEKcWViLzX9//uSN 260 | jf+6bGv/rnd3/7uGh/+zXl//ymZl/8pmZv+eUFD/v3p6//y5uf9+Pz//2ZSV//Glpf/qnZ3/o1xc/61i 261 | Yv/ijo7/sWdo/9Svq//46OH/+Ofe//fl3P/auaf/Y0k1/wAAAAAAAAAAAAAAAAAAAACqYWDckE9P/7dx 262 | cv/um5v+04KC/4BSTf/9+Pb//////76XmP+2YWH/ymVl/6BSUP+yZmf/vHp6//z49f/bn6H/76Wn/+Wc 263 | nP+re3n/+/Hs/7p/fv/UpqP/+e3m//nq5P/46eL/+Off/9u6qv9jSTX/AAAAAAAAAAAAAAAAAAAAANmJ 264 | itvupKT/96us//Wmpv+0bGz/o31z//75+P//////8ePj/61iY//Qbmz/zWhn/7NVVf+KZmb//vn4//DR 265 | 0f/clpf/04uM/9qysf/78+//+/Lt//rx6//67ur/+e3n//ns5f/56+P/27ys/2NJNf8AAAAAAAAAAAAA 266 | AAAAAAAAzn1+xdmKi/TilJXx8qWm/d2Rkf93Skb//vv6//////+pgID/zXZ2/81xcf+lXFz/gUVE/6KF 267 | hP/+/Pr//fv5//359//9+PX//Pf0//z18v/79PD//PPv//rx7f/78Or/+u7p//ns5//cvq7/Y0k1/wAA 268 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAKJZWoPQh4j++q6u/9OJiv+RXl7/mWNk/8J0dP/fhYX/uWdn/5p7 269 | ev////7//v3+//79/P/+/Pv//fv6//76+P/++fb//ff1//z28//89fH//PPw//vy7v/78Oz/+u/p/93B 270 | sf9jSTX/AAAAAAAAAAAAAAAAAAAAAAAAAACPSkpXm1pb6vWys//4r6//9Kiq/+6goP/nlpb/5pKS/96J 271 | if/chIP/j1BQ/9C0tP///////v7+//7+/f/+/fz//vv6//37+f/9+vj//fj2//z39P/89vP//PTx//vz 272 | 7//78e3/38Kz/2NJNf8AAAAAAAAAAAAAAAAAAAAA6piYAqdcXFK/enr+/Lm5/34+Pv7Si4v/8aWl/+qd 273 | nf+qYmL/rWJi/+KOjv+xZ2j/2Ly8/////////////v7///7+/f///fz//vz7//77+v/9+vj//fn3//z4 274 | 9f/89/P//PXx//vz8P/fxLb/Y0k1/wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMN4eX+7eHjsAAAAANCR 275 | kf/vpaf/5Zyc/6x/fv//////u4KC/9aurv///////////////////////////////v///v3//v38//78 276 | +//++/n//vr4//349//99/T//Pbz/+DHuP9jSTX/AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 277 | AAAAAAAAxp2V/9yWl//Ui4z/27i4//////////////////////////////////////////////////// 278 | /v/+/v7///39///8+//+/Pr/ybSp/72ll/+ymYn/pIp4/2NJNf8AAAAAAAAAAAAAAAAAAAAAAAAAAAAA 279 | AAAAAAAAAAAAAAAAAAC6ppj///////////////////////////////////////////////////////// 280 | /////////////////////v7//v79/56Hdv9jSTX/Y0k1/2NJNf9jSTX/Y0k1/wAAAAAAAAAAAAAAAAAA 281 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAALyomv////////////////////////////////////////////// 282 | ////////////////////////////////////////oIl5/9XFvf/HsaX/uaGS/2xSPv9jSTWjAAAAAAAA 283 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAvqqc//////////////////////////////////// 284 | //////////////////////////////////////////////////+ijHz/49rT/9XFvP95YEz/bFI+owAA 285 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADArZ////////////////////////// 286 | /////////////////////////////////////////////////////////////6WOfv/z7+3/iHBd/3lg 287 | TKMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMKvof////////////// 288 | //////////38//77+//9+fj//fj1//z18v/78+//+/Dr//rt6P/56+T/+Oni//fn3f/35Nv/p5GC/5Z/ 289 | bv+IcF2jAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAxbGj/8Ov 290 | of/CrqD/wKyf/7+rnP+9qZv/vKea/7uml/+4pJX/t6KU/7ahkv+zn5D/sp2P/7Cbjf+umov/rZiI/6uW 291 | h/+plIT/ln9uowAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 292 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 293 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/////8AAAH/AAAB/wA 294 | AAf8AAAH/AAAB/wAAAf8AAAH/AAAB/wAAAf8AAAH/AAAB/QAAAfgAAAHgAAAB+AAAAeAAAAHgAAAB4AA 295 | AAeAAAAH4AAAB8AAAAeAAAAH5AAAB/wAAAf8AAAH/AAAB/wAAA/8AAAf/AAAP/wAAH//////KAAAABAA 296 | AAAgAAAAAQAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 297 | AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKyVhP92XEn/dlxJ/3Zc 298 | Sf92XEn/dlxJ/3ZcSf92XEn/dlxJ/3ZcSf92XEn/dlxJ/3ZcSf8AAAAAAAAAAAAAAACslYT/9+Tc/9nL 299 | wP/Zy8D/2cvA/9nLwP/Zy8D/2cvA/9nLwP/Zy8D/2cvA/9nLwP92XEn/AAAAAAAAAAAAAAAArJWE//jq 300 | 4v/459//9+Tb/+bMwv+gaGb/5cm+/650bf/nxrr/89TG//HRwv/Zy8D/dlxJ/wAAAAAAAAAAAAAAAK2X 301 | hv/67uf/+evk/+jTzP/HoZv/r11d/55RTv+iVlb/yJ2V/9u5r//y1sj/2cvA/3ZcSf8AAAAAAAAAAAAA 302 | AACvmon/+/Ht//rw6/+1a2v/u25u/7JnZf+7fHf/0XZ1/7FXVv+hWln/9NrO/9nLwP92XEn/AAAAAAAA 303 | AACDQ0EjklpX/+zf3f+xe3f/7dfU/+KSkf+XXV7/4MvH/8SKif+/X2D/68i+//bf1P/Zy8D/dlxJ/wAA 304 | AACKTEskiEdGb69dXf+eUU7/olZW/96cm//uqKj/zIuL/51nZf+0bWv/vmVl/51gX//349r/2cvA/3Zc 305 | Sf8AAAAAtGpq/btubv+vZGH/vIJ//9J4d/+4YWD/vHV2/+qrqv/di4f/ynZz/92xrv/rzsn/+Ojh/9nL 306 | wP92XEn/AAAAAOicnBnikpH/k1la/+Xd3f/HkJL/v19g/+/U0//hqKb/+ezp/8iAfv/v2db/++/q//ns 307 | 5v/Zy8D/dlxJ/wAAAADgmpri7qio/8uKif+eaWj/tW5t/75lZf+eY2P//vv6//75+P/9+Pb//PXy//vz 308 | 8P/78ez/2cvA/3ZcSf8AAAAA4aChI+KZm2fqq6r/3YuH/8p2c//fubr/8N3e//7+/f/+/Pv//vv5//35 309 | 9//89/T/2cvA/9nLwP92XEn/AAAAAAAAAADcmpod15qX//z09P/JgH//8uTk//////////////7+//7+ 310 | /f/+/Pv/kHlo/3ZcSf92XEn/dlxJ/wAAAAAAAAAAAAAAAMizpP////////////////////////////// 311 | /////////v/+/5Z8af/0287/0bqv/3ZcSf8AAAAAAAAAAAAAAADJtqj///////////////////////// 312 | //////////////////+WfGn/0bqv/6yVhP8AAAAAAAAAAAAAAAAAAAAAy7ep/8m1p//Hs6T/xbCh/8Gt 313 | nv+/qZr/u6aW/7mik/+2n4//spyL/7CZiP8AAAAAAAAAAAAAAAD//wAAwAEAAMABAADAAQAAwAEAAMAB 314 | AACAAWn/AAHe/wAB6P8AAeX/AAHk/wAB3/+AAbj/wAFb/8ADhv/AB13/ 315 | 316 | 317 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | --------------------------------------------------------------------------------