├── .gitignore ├── BuildProcessTemplates ├── DefaultTemplate.11.1.xaml ├── DefaultTemplate.xaml ├── LabDefaultTemplate.11.xaml └── UpgradeTemplate.xaml ├── PInvokeTool ├── Installer │ └── PInvokeGeneratorSetup.vdproj ├── ManagedToUnmanaged │ ├── ConsoleTool │ │ ├── Console.cs │ │ ├── ConsoleTool.csproj │ │ ├── Errors.cs │ │ ├── Native.rc │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── DebugTests │ │ ├── DebugTests.csproj │ │ ├── Program.cs │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ ├── Engine │ │ ├── EngineLibrary.csproj │ │ ├── Errors.cs │ │ ├── Log.cs │ │ ├── NativeTypes │ │ │ ├── Arrays.cs │ │ │ ├── Callbacks.cs │ │ │ ├── Classes.cs │ │ │ ├── Enums.cs │ │ │ ├── Primitives.cs │ │ │ ├── Strings.cs │ │ │ └── Structs.cs │ │ ├── Print.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Signature.cs │ │ ├── Tables.cs │ │ └── Utility.cs │ └── TestInput │ │ ├── Layouts.cs │ │ ├── Marshalers.cs │ │ ├── PInvokes.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── RCWs.cs │ │ └── TestInput.csproj ├── PInvoke.sln ├── PInvoke.vsmdi ├── UnmanagedToManaged │ ├── ConsoleTool │ │ ├── Module1.vb │ │ ├── MyProject │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ └── Resources.resx │ │ ├── Native.rc │ │ └── SigImp.vbproj │ ├── Engine │ │ ├── Contract.vb │ │ ├── Controls │ │ │ ├── CodeBox.Designer.vb │ │ │ ├── CodeBox.resx │ │ │ ├── CodeBox.vb │ │ │ ├── CodeDialog.Designer.vb │ │ │ ├── CodeDialog.resx │ │ │ ├── CodeDialog.vb │ │ │ ├── Interfaces.vb │ │ │ ├── SearchComponent.vb │ │ │ ├── SearchDataGrid.vb │ │ │ ├── SelectSymbolDialog.Designer.vb │ │ │ ├── SelectSymbolDialog.resx │ │ │ ├── SelectSymbolDialog.vb │ │ │ ├── SymbolDisplayControl.Designer.vb │ │ │ ├── SymbolDisplayControl.resx │ │ │ ├── SymbolDisplayControl.vb │ │ │ ├── TranslateSnippetControl.Designer.vb │ │ │ ├── TranslateSnippetControl.resx │ │ │ └── TranslateSnippetControl.vb │ │ ├── MyProject │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ └── Resources.resx │ │ ├── NativeMethods.vb │ │ ├── NativeStorage.Designer.vb │ │ ├── NativeStorage.vb │ │ ├── NativeStorage.xsc │ │ ├── NativeStorage.xsd │ │ ├── NativeStorage.xss │ │ ├── NativeSymbolBag.vb │ │ ├── NativeTypeIterator.vb │ │ ├── NativeTypes.vb │ │ ├── PInvoke.vbproj │ │ ├── Parser │ │ │ ├── ExpressionEvaluator.vb │ │ │ ├── ExpressionParser.vb │ │ │ ├── ExpressionValue.vb │ │ │ ├── Macro.vb │ │ │ ├── NativeCodeAnalyzer.vb │ │ │ ├── ParseEngine.vb │ │ │ ├── PreProcessor.vb │ │ │ ├── Scanner.vb │ │ │ ├── Tokens.vb │ │ │ └── Utilities.vb │ │ ├── ProcedureFinder.vb │ │ ├── Transform │ │ │ ├── BasicConverter.vb │ │ │ ├── CodeDomCloner.vb │ │ │ ├── CodeDomIterator.vb │ │ │ ├── CodeDomPrettyList.vb │ │ │ ├── CodeTransform.vb │ │ │ ├── CustomCodeDom.vb │ │ │ ├── MarshalTransform.vb │ │ │ ├── MarshalTypeFactory.vb │ │ │ ├── NativeSymbolTransform.vb │ │ │ ├── SalAnalyzer.vb │ │ │ ├── TransformPlugin.vb │ │ │ └── Utilities.vb │ │ └── Utilities.vb │ ├── HostApp │ │ ├── Form1.Designer.vb │ │ ├── Form1.resx │ │ ├── Form1.vb │ │ ├── MyProject │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ └── Resources.resx │ │ ├── Native.rc │ │ └── PInvokeHostApp.vbproj │ ├── PInvokeAddin │ │ ├── AssemblyInfo.vb │ │ ├── CodeDomInsterter.vb │ │ ├── CodeModelAdapter.vb │ │ ├── CommandBar.resx │ │ ├── Connect.vb │ │ ├── My Project │ │ │ ├── DataSources │ │ │ │ └── PInvoke.NativeStorage+ConstantsDataTable.datasource │ │ │ ├── Resources.Designer.vb │ │ │ └── Resources.resx │ │ ├── Options.vb │ │ ├── PInvokeAddin Orcas.AddIn │ │ ├── PInvokeAddin.AddIn │ │ └── PInvokeAddin.vbproj │ ├── PInvokeTest │ │ ├── AuthoringTests.txt │ │ ├── CodeDomIteratorTest.vb │ │ ├── CodeTransformTest.vb │ │ ├── ExpressionEvaluatorTest.vb │ │ ├── ExpressionParserTest.vb │ │ ├── ExpressionValueTest.vb │ │ ├── GenTestCode.ps1 │ │ ├── Generated.vb │ │ ├── MacroTest.vb │ │ ├── MarshalTransformTest.vb │ │ ├── My Project │ │ │ └── AssemblyInfo.vb │ │ ├── NativeParserTest.vb │ │ ├── NativePreProcessorTest.vb │ │ ├── NativeStorageTest.vb │ │ ├── NativeSymbolTransformTest.vb │ │ ├── NativeTypeBagTest.vb │ │ ├── NativeTypeEqualityComparer.vb │ │ ├── NativeTypeEqualityComparerTest.vb │ │ ├── NativeTypeIteratorTest.vb │ │ ├── NativeTypesTest.vb │ │ ├── PInvokeTest.vbproj │ │ ├── PInvokeTestLib.vb │ │ ├── ProcedureFinderTest.vb │ │ ├── SalAnalyzerTest.vb │ │ ├── SampleFiles │ │ │ ├── Class1.txt │ │ │ ├── Complex1.txt │ │ │ ├── Enum1.txt │ │ │ ├── Enum2.txt │ │ │ ├── Enum3.txt │ │ │ ├── Enum4.txt │ │ │ ├── Errors1.txt │ │ │ ├── FuncPtr1.txt │ │ │ ├── FuncPtr2.txt │ │ │ ├── FuncPtr3.txt │ │ │ ├── FuncPtr4.txt │ │ │ ├── Mixed1.txt │ │ │ ├── Mixed2.txt │ │ │ ├── Mixed3.txt │ │ │ ├── Proc1.txt │ │ │ ├── Proc10.txt │ │ │ ├── Proc11.txt │ │ │ ├── Proc2.txt │ │ │ ├── Proc3.txt │ │ │ ├── Proc4.txt │ │ │ ├── Proc5.txt │ │ │ ├── Proc6.txt │ │ │ ├── Proc7.txt │ │ │ ├── Proc8.txt │ │ │ ├── Proc9.txt │ │ │ ├── Sal.txt │ │ │ ├── Struct1.txt │ │ │ ├── Struct10.txt │ │ │ ├── Struct11.txt │ │ │ ├── Struct12.txt │ │ │ ├── Struct13.txt │ │ │ ├── Struct14.txt │ │ │ ├── Struct15.txt │ │ │ ├── Struct16.txt │ │ │ ├── Struct17.txt │ │ │ ├── Struct18.txt │ │ │ ├── Struct19.txt │ │ │ ├── Struct2.txt │ │ │ ├── Struct20.txt │ │ │ ├── Struct21.txt │ │ │ ├── Struct3.txt │ │ │ ├── Struct4.txt │ │ │ ├── Struct5.txt │ │ │ ├── Struct6.txt │ │ │ ├── Struct7.txt │ │ │ ├── Struct8.txt │ │ │ ├── Struct9.txt │ │ │ ├── TypeDef1.txt │ │ │ ├── TypeDef2.txt │ │ │ ├── TypeDef3.txt │ │ │ ├── TypeDef4.txt │ │ │ ├── TypeDef5.txt │ │ │ ├── TypeDef6.txt │ │ │ ├── TypeDef7.txt │ │ │ ├── TypeDef8.txt │ │ │ ├── TypeDef9.txt │ │ │ ├── Union1.txt │ │ │ ├── Union2.txt │ │ │ └── specstrings.h │ │ ├── ScannerTest.vb │ │ ├── SelfHost.vb │ │ ├── TestPInvokeTestLib.vb │ │ ├── TokensTest.vb │ │ ├── Utilities.vb │ │ ├── VSCodeGenAccessors.vb │ │ └── _Scripts.vb │ ├── PInvokeTestLib │ │ ├── NativeMethods.vb │ │ ├── PInvokeTestLib.cpp │ │ ├── PInvokeTestLib.h │ │ ├── PInvokeTestLib.vcproj │ │ ├── PInvokeTestLib.vcxproj │ │ ├── PInvokeTestLib.vcxproj.filters │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── StorageGenerator │ │ ├── Data │ │ │ └── windows.xml │ │ ├── DiffTables.ps1 │ │ ├── Module1.vb │ │ ├── My Project │ │ │ ├── Application.Designer.vb │ │ │ ├── Application.myapp │ │ │ ├── AssemblyInfo.vb │ │ │ ├── Resources.Designer.vb │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.vb │ │ │ └── Settings.settings │ │ └── StorageGenerator.vbproj │ ├── UnmanagedToManaged.sln │ └── localtestrun.testrunconfig ├── WindowsTool │ ├── AboutForm.Designer.cs │ ├── AboutForm.cs │ ├── AboutForm.resx │ ├── Bitmaps │ │ ├── classa.bmp │ │ ├── classi.bmp │ │ ├── classv.bmp │ │ ├── copyHS.bmp │ │ ├── field.bmp │ │ ├── mainicon.ico │ │ ├── method.bmp │ │ ├── namespace.bmp │ │ ├── openHS.bmp │ │ ├── refreshDocViewHS.bmp │ │ └── staticmethod.bmp │ ├── Help │ │ ├── Overview.htm │ │ ├── SigExp.htm │ │ ├── SigExp.png │ │ ├── SigExp_Console.htm │ │ ├── SigExp_GUI.htm │ │ ├── SigImp.htm │ │ ├── SigImp_Console.htm │ │ ├── SigImp_GUI.htm │ │ ├── SigImp_Search.png │ │ ├── SigImp_Snippet.png │ │ ├── SigImp_Unsupported.htm │ │ ├── siggen.hhc │ │ └── siggen.hhp │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Reflector.cs │ ├── RichTextPrinter.cs │ ├── Settings.cs │ ├── WindowsTool.csproj │ ├── app.config │ └── siggen.chm ├── WindowsToolLauncher │ ├── Native.rc │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ └── mainicon.ico │ ├── WindowsToolLauncher.csproj │ └── mainicon.ico └── localtestrun.testrunconfig ├── README.md ├── TlbImp ├── CommandLine.cs ├── Constants.cs ├── ConvClassInterface.cs ├── ConvCoClass.cs ├── ConvCommon.cs ├── ConvEnum.cs ├── ConvEventInterface.cs ├── ConvInterface.cs ├── ConvLocalBase.cs ├── ConvModule.cs ├── ConvStruct.cs ├── ConvUnion.cs ├── ConverterInfo.cs ├── CustomAttributeBlobBuilder.cs ├── CustomAttributeHelper.cs ├── ErrorCode.cs ├── Event │ ├── EventItfInfo.cs │ ├── EventProviderWriter.cs │ ├── EventSinkHelperWriter.cs │ ├── NamespaceExtractor.cs │ └── TCEAdapterGenerator.cs ├── Exceptions.cs ├── FuncDesc.cs ├── IConvBase.cs ├── InterfaceInfo.cs ├── Process.cs ├── PropertyInfo.cs ├── RemoteTlbImp.cs ├── Resource.cs ├── Resources.resx ├── TlbImp.cs ├── TlbImp2.csproj ├── TlbImp2.sln ├── TlbImpOptions.cs ├── TypeAttr.cs ├── TypeConverter.cs ├── TypeInfo.cs ├── TypeLib.cs ├── TypeLibAttr.cs ├── Types.cs ├── VarDesc.cs ├── output.cs └── tlbimpcode.cs └── TlbImp2 ├── AssemblyTreeView ├── AssemblyTVForm.Designer.cs ├── AssemblyTVForm.cs ├── AssemblyTVForm.resx ├── AssemblyTreeView.Designer.cs ├── AssemblyTreeView.cs ├── AssemblyTreeView.resx ├── AssemblyTreeViewer.csproj ├── Program.cs └── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── TlbImp ├── CommandLine.cs ├── Constants.cs ├── ConvClassInterface.cs ├── ConvCoClass.cs ├── ConvCommon.cs ├── ConvEnum.cs ├── ConvEventInterface.cs ├── ConvInterface.cs ├── ConvLocalBase.cs ├── ConvModule.cs ├── ConvStruct.cs ├── ConvUnion.cs ├── ConverterInfo.cs ├── CustomAttributeBlobBuilder.cs ├── CustomAttributeHelper.cs ├── ErrorCode.cs ├── Event │ ├── EventItfInfo.cs │ ├── EventProviderWriter.cs │ ├── EventSinkHelperWriter.cs │ ├── NamespaceExtractor.cs │ └── TCEAdapterGenerator.cs ├── Exceptions.cs ├── IConvBase.cs ├── InterfaceInfo.cs ├── Process.cs ├── PropertyInfo.cs ├── RemoteTlbImp.cs ├── Resource.cs ├── Resources.resx ├── TlbImp.cs ├── TlbImp2.csproj ├── TlbImpOptions.cs ├── TypeConverter.cs ├── output.cs └── tlbimpcode.cs ├── TlbImp2.sln ├── TlbImpRegressionTestTool ├── AssemPrinter.cs ├── Exceptions.cs ├── ILReader.cs ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── RemoteAssemPrinter.cs ├── SettingsForm.Designer.cs ├── SettingsForm.cs ├── SettingsForm.resx ├── TestCase.cs ├── TestCaseRunner.cs ├── TestCaseSet.cs ├── TestCaseSettings.cs ├── TestCaseStatusChangeEventArgs.cs ├── Testcases │ ├── AddAttribute │ │ ├── AddAttribute_1.baseline │ │ ├── AddAttribute_1.idl │ │ ├── AddAttribute_1.tlb │ │ ├── AddAttribute_1.xml │ │ ├── AddAttribute_2.baseline │ │ ├── AddAttribute_2.idl │ │ ├── AddAttribute_2.tlb │ │ ├── AddAttribute_2.xml │ │ ├── AddAttribute_3.baseline │ │ ├── AddAttribute_3.idl │ │ ├── AddAttribute_3.tlb │ │ ├── AddAttribute_3.xml │ │ ├── AddAttribute_4.baseline │ │ ├── AddAttribute_4.idl │ │ ├── AddAttribute_4.tlb │ │ ├── AddAttribute_4.xml │ │ ├── AddAttribute_5.baseline │ │ ├── AddAttribute_5.idl │ │ ├── AddAttribute_5.tlb │ │ ├── AddAttribute_5.xml │ │ ├── AddAttribute_6.baseline │ │ ├── AddAttribute_6.idl │ │ ├── AddAttribute_6.tlb │ │ └── AddAttribute_6.xml │ ├── ChangeManagedName │ │ ├── ChangeManagedName_1.baseline │ │ ├── ChangeManagedName_1.idl │ │ ├── ChangeManagedName_1.tlb │ │ ├── ChangeManagedName_1.xml │ │ ├── ChangeManagedName_2.baseline │ │ ├── ChangeManagedName_2.idl │ │ ├── ChangeManagedName_2.tlb │ │ ├── ChangeManagedName_2.xml │ │ ├── ChangeManagedName_3_1.baseline │ │ ├── ChangeManagedName_3_1.idl │ │ ├── ChangeManagedName_3_1.tlb │ │ ├── ChangeManagedName_3_1.xml │ │ ├── ChangeManagedName_3_2.baseline │ │ ├── ChangeManagedName_3_2.idl │ │ ├── ChangeManagedName_3_2.tlb │ │ ├── ChangeManagedName_3_2.xml │ │ ├── ChangeManagedName_3_3.baseline │ │ ├── ChangeManagedName_3_3.idl │ │ ├── ChangeManagedName_3_3.tlb │ │ ├── ChangeManagedName_3_3.xml │ │ ├── ChangeManagedName_3_4.baseline │ │ ├── ChangeManagedName_3_4.idl │ │ ├── ChangeManagedName_3_4.tlb │ │ ├── ChangeManagedName_3_4.xml │ │ ├── ChangeManagedName_3_5.baseline │ │ ├── ChangeManagedName_3_5.idl │ │ ├── ChangeManagedName_3_5.tlb │ │ ├── ChangeManagedName_3_5.xml │ │ ├── ChangeManagedName_3_6.baseline │ │ ├── ChangeManagedName_3_6.idl │ │ ├── ChangeManagedName_3_6.tlb │ │ ├── ChangeManagedName_3_6.xml │ │ ├── ChangeManagedName_3_7.baseline │ │ ├── ChangeManagedName_3_7.idl │ │ ├── ChangeManagedName_3_7.tlb │ │ ├── ChangeManagedName_3_7.xml │ │ ├── ChangeManagedName_4.baseline │ │ ├── ChangeManagedName_4.idl │ │ ├── ChangeManagedName_4.tlb │ │ ├── ChangeManagedName_4.xml │ │ ├── ChangeManagedName_5.baseline │ │ ├── ChangeManagedName_5.idl │ │ ├── ChangeManagedName_5.tlb │ │ ├── ChangeManagedName_5.xml │ │ ├── ChangeManagedName_6.baseline │ │ ├── ChangeManagedName_6.idl │ │ ├── ChangeManagedName_6.tlb │ │ ├── ChangeManagedName_6.xml │ │ ├── ChangeManagedName_7.baseline │ │ ├── ChangeManagedName_7.idl │ │ ├── ChangeManagedName_7.tlb │ │ ├── ChangeManagedName_7.xml │ │ ├── ChangeManagedName_8.baseline │ │ ├── ChangeManagedName_8.idl │ │ ├── ChangeManagedName_8.tlb │ │ ├── ChangeManagedName_8.xml │ │ ├── ChangeManagedName_9.baseline │ │ ├── ChangeManagedName_9.idl │ │ ├── ChangeManagedName_9.tlb │ │ └── ChangeManagedName_9.xml │ ├── ConvertTo │ │ ├── ConvertTo_1.baseline │ │ ├── ConvertTo_1.idl │ │ ├── ConvertTo_1.tlb │ │ ├── ConvertTo_1.xml │ │ ├── ConvertTo_2.baseline │ │ ├── ConvertTo_2.idl │ │ ├── ConvertTo_2.tlb │ │ ├── ConvertTo_2.xml │ │ ├── ConvertTo_3.baseline │ │ ├── ConvertTo_3.idl │ │ ├── ConvertTo_3.tlb │ │ ├── ConvertTo_3.xml │ │ ├── ConvertTo_4.baseline │ │ ├── ConvertTo_4.idl │ │ ├── ConvertTo_4.tlb │ │ └── ConvertTo_4.xml │ ├── ConvertToOtherType │ │ ├── ConvertToOtherType_1.baseline │ │ ├── ConvertToOtherType_1.idl │ │ ├── ConvertToOtherType_1.tlb │ │ ├── ConvertToOtherType_1.xml │ │ ├── ConvertToOtherType_2.baseline │ │ ├── ConvertToOtherType_2.idl │ │ ├── ConvertToOtherType_2.tlb │ │ ├── ConvertToOtherType_2.xml │ │ ├── ConvertToOtherType_3_1.baseline │ │ ├── ConvertToOtherType_3_1.idl │ │ ├── ConvertToOtherType_3_1.tlb │ │ ├── ConvertToOtherType_3_1.xml │ │ ├── ConvertToOtherType_3_2.baseline │ │ ├── ConvertToOtherType_3_2.idl │ │ ├── ConvertToOtherType_3_2.tlb │ │ ├── ConvertToOtherType_3_2.xml │ │ ├── ConvertToOtherType_3_3.baseline │ │ ├── ConvertToOtherType_3_3.idl │ │ ├── ConvertToOtherType_3_3.tlb │ │ ├── ConvertToOtherType_3_3.xml │ │ ├── ConvertToOtherType_4.baseline │ │ ├── ConvertToOtherType_4.idl │ │ ├── ConvertToOtherType_4.tlb │ │ ├── ConvertToOtherType_4.xml │ │ ├── ConvertToOtherType_5.baseline │ │ ├── ConvertToOtherType_5.idl │ │ ├── ConvertToOtherType_5.tlb │ │ ├── ConvertToOtherType_5.xml │ │ ├── ConvertToOtherType_6.baseline │ │ ├── ConvertToOtherType_6.idl │ │ ├── ConvertToOtherType_6.tlb │ │ └── ConvertToOtherType_6.xml │ ├── MultipleRules │ │ ├── MultipleRuleRef.idl │ │ ├── MultipleRuleRef.tlb │ │ ├── MultipleRule_1.baseline │ │ ├── MultipleRule_1.idl │ │ ├── MultipleRule_1.tlb │ │ ├── MultipleRule_1.xml │ │ ├── MultipleRule_2.baseline │ │ ├── MultipleRule_2.idl │ │ ├── MultipleRule_2.tlb │ │ ├── MultipleRule_2.xml │ │ ├── MultipleRule_3.baseline │ │ ├── MultipleRule_3.idl │ │ ├── MultipleRule_3.tlb │ │ ├── MultipleRule_3.xml │ │ ├── MultipleRule_4.baseline │ │ ├── MultipleRule_4.idl │ │ ├── MultipleRule_4.tlb │ │ ├── MultipleRule_4.xml │ │ ├── MultipleRule_5.baseline │ │ ├── MultipleRule_5.idl │ │ ├── MultipleRule_5.tlb │ │ ├── MultipleRule_5.xml │ │ ├── MultipleRule_6.baseline │ │ ├── MultipleRule_6.idl │ │ ├── MultipleRule_6.tlb │ │ ├── MultipleRule_6.xml │ │ └── ResolveTo_1.idl │ ├── Office │ │ ├── mso.dll.baseline │ │ ├── mso.dll.tlb │ │ └── mso.dll.xml │ ├── Operator │ │ ├── Operator_1.baseline │ │ ├── Operator_1.idl │ │ ├── Operator_1.tlb │ │ ├── Operator_1.xml │ │ ├── Operator_2.baseline │ │ ├── Operator_2.idl │ │ ├── Operator_2.tlb │ │ ├── Operator_2.xml │ │ ├── Operator_3.baseline │ │ ├── Operator_3.idl │ │ ├── Operator_3.tlb │ │ ├── Operator_3.xml │ │ ├── Operator_4.baseline │ │ ├── Operator_4.idl │ │ ├── Operator_4.tlb │ │ ├── Operator_4.xml │ │ ├── Operator_5.baseline │ │ ├── Operator_5.idl │ │ ├── Operator_5.tlb │ │ ├── Operator_5.xml │ │ ├── Operator_6.baseline │ │ ├── Operator_6.idl │ │ ├── Operator_6.tlb │ │ ├── Operator_6.xml │ │ ├── Operator_7.baseline │ │ ├── Operator_7.idl │ │ ├── Operator_7.tlb │ │ ├── Operator_7.xml │ │ ├── Operator_8.baseline │ │ ├── Operator_8.idl │ │ ├── Operator_8.tlb │ │ └── Operator_8.xml │ ├── OtherScenario │ │ ├── OtherScenario_1.baseline │ │ ├── OtherScenario_1.idl │ │ ├── OtherScenario_1.tlb │ │ ├── OtherScenario_1.xml │ │ ├── OtherScenario_2.baseline │ │ ├── OtherScenario_2.idl │ │ ├── OtherScenario_2.tlb │ │ ├── OtherScenario_2.xml │ │ ├── OtherScenario_3.baseline │ │ ├── OtherScenario_3.idl │ │ ├── OtherScenario_3.tlb │ │ └── OtherScenario_3.xml │ ├── PreserveSig │ │ ├── PreserveSig_1.baseline │ │ ├── PreserveSig_1.idl │ │ ├── PreserveSig_1.tlb │ │ ├── PreserveSig_1.xml │ │ ├── PreserveSig_2.baseline │ │ ├── PreserveSig_2.idl │ │ ├── PreserveSig_2.tlb │ │ ├── PreserveSig_2.xml │ │ ├── PreserveSig_3.baseline │ │ ├── PreserveSig_3.idl │ │ ├── PreserveSig_3.tlb │ │ └── PreserveSig_3.xml │ ├── ResolveTo │ │ ├── ResolveToRef.idl │ │ ├── ResolveToRef.tlb │ │ ├── ResolveTo_1.baseline │ │ ├── ResolveTo_1.idl │ │ ├── ResolveTo_1.tlb │ │ ├── ResolveTo_1.xml │ │ ├── ResolveTo_2.baseline │ │ ├── ResolveTo_2.idl │ │ ├── ResolveTo_2.tlb │ │ ├── ResolveTo_2.xml │ │ ├── ResolveTo_3.baseline │ │ ├── ResolveTo_3.idl │ │ ├── ResolveTo_3.tlb │ │ ├── ResolveTo_3.xml │ │ ├── ResolveTo_4.baseline │ │ ├── ResolveTo_4.idl │ │ ├── ResolveTo_4.tlb │ │ ├── ResolveTo_4.xml │ │ ├── ResolveTo_5.baseline │ │ ├── ResolveTo_5.idl │ │ ├── ResolveTo_5.tlb │ │ ├── ResolveTo_5.xml │ │ └── TestClass.cs │ ├── Testcases.xml │ └── tlb │ │ ├── ConvertProperty.tlb │ │ ├── ConvertProperty.tlb.baseline │ │ ├── ConvertProperty.tlb_2.baseline │ │ ├── DISPRET.DLL.TLB │ │ ├── MSACC9.OLB.tlb │ │ ├── MSACC9.OLB.tlb.baseline │ │ ├── MSACC9.OLB.tlb_2.baseline │ │ ├── MSO9.DLL.tlb │ │ ├── MSO9.DLL.tlb.baseline │ │ ├── MSO9.DLL.tlb_2.baseline │ │ ├── MSO97RT.DLL.tlb │ │ ├── MSO97RT.DLL.tlb.baseline │ │ ├── MSO97RT.DLL.tlb_2.baseline │ │ ├── MSPPT.OLB.tlb │ │ ├── MSPPT9.OLB.tlb │ │ ├── MSPPT9.OLB.tlb.baseline │ │ ├── MSPPT9.OLB.tlb_2.baseline │ │ ├── MSWORD9.OLB.tlb │ │ ├── ManagedNameAttribute.tlb │ │ ├── ManagedNameAttribute.tlb.baseline │ │ ├── ManagedNameAttribute.tlb_2.baseline │ │ ├── ManagedName_InconsistenceNSandCoclass.tlb │ │ ├── ManagedName_InconsistenceNSandCoclass.tlb.baseline │ │ ├── ManagedName_InconsistenceNSandCoclass.tlb_2.baseline │ │ ├── Prop01.tlb │ │ ├── Prop03.tlb │ │ ├── PropGet01.tlb │ │ ├── PropGet01.tlb.baseline │ │ ├── PropGet01.tlb_2.baseline │ │ ├── PropSet01.tlb │ │ ├── S0006.tlb │ │ ├── S0046.tlb │ │ ├── S0046.tlb.baseline │ │ ├── S0046.tlb_2.baseline │ │ ├── SPDESIGN.EXE.TLB │ │ ├── UDTSafeArrayEnum.tlb │ │ ├── UDTSafeArrayEnum.tlb.baseline │ │ ├── UDTSafeArrayEnum.tlb_2.baseline │ │ ├── UDTSafeArrayInterface.tlb │ │ ├── UDTSafeArrayInterface.tlb.baseline │ │ ├── UDTSafeArrayInterface.tlb_2.baseline │ │ ├── VB6EXT.OLB.tlb │ │ ├── VBA6.DLL.tlb │ │ ├── VBA6.DLL.tlb.baseline │ │ ├── VBA6.DLL.tlb_2.baseline │ │ ├── dispret.dll.tlb.baseline │ │ ├── dispret.dll.tlb_2.baseline │ │ ├── msado20.tlb │ │ ├── msado20.tlb.baseline │ │ ├── msado20.tlb_2.baseline │ │ ├── msado25.tlb │ │ ├── msado25.tlb.baseline │ │ ├── msado25.tlb_2.baseline │ │ ├── msado25.tlb_3.baseline │ │ ├── mso.dll.tlb │ │ ├── mso.dll.tlb.baseline │ │ ├── mso.dll.tlb_2.baseline │ │ ├── mso.dll.tlb_3.baseline │ │ ├── msppt.olb.tlb.baseline │ │ ├── msppt.olb.tlb_2.baseline │ │ ├── msstdfmt.dll.tlb │ │ ├── msstdfmt.dll.tlb.baseline │ │ ├── msstdfmt.dll.tlb_2.baseline │ │ ├── msword9.olb.tlb.baseline │ │ ├── msword9.olb.tlb_2.baseline │ │ ├── prop01.tlb.baseline │ │ ├── prop01.tlb_2.baseline │ │ ├── prop02.tlb │ │ ├── prop02.tlb.baseline │ │ ├── prop02.tlb_2.baseline │ │ ├── prop03.tlb.baseline │ │ ├── prop03.tlb_2.baseline │ │ ├── propgetwithvoid.tlb │ │ ├── propgetwithvoid.tlb.baseline │ │ ├── propgetwithvoid.tlb_2.baseline │ │ ├── propset01.tlb.baseline │ │ ├── propset01.tlb_2.baseline │ │ ├── s0006.tlb.baseline │ │ ├── s0006.tlb_2.baseline │ │ ├── spdesign.exe.tlb.baseline │ │ ├── test_deep_object_in_union.tlb │ │ ├── test_deep_object_in_union.tlb.baseline │ │ ├── vb6ext.olb.tlb.baseline │ │ ├── vb6ext.olb.tlb_2.baseline │ │ ├── vcpb2.tlb │ │ ├── vcpb2.tlb.baseline │ │ └── vcpb2.tlb_2.baseline ├── TlbImpRegressionTestTool.csproj ├── action.ico └── app.config ├── TlbImpRuleFileEditor ├── APIHelper.cs ├── AboutDialog.Designer.cs ├── AboutDialog.cs ├── AboutDialog.resx ├── AddAttributeActionWizard.Designer.cs ├── AddAttributeActionWizard.cs ├── AddAttributeActionWizard.resx ├── AddAttributeDataInputHelper.Designer.cs ├── AddAttributeDataInputHelper.cs ├── AddAttributeDataInputHelper.resx ├── AssemblyTypeSelectDialog.Designer.cs ├── AssemblyTypeSelectDialog.cs ├── AssemblyTypeSelectDialog.resx ├── ChangeManagedNameActionDialog.Designer.cs ├── ChangeManagedNameActionDialog.cs ├── ChangeManagedNameActionDialog.resx ├── ConditionInPlaceEditor.Designer.cs ├── ConditionInPlaceEditor.cs ├── ConditionInPlaceEditor.resx ├── ConvertToActionWizard.Designer.cs ├── ConvertToActionWizard.cs ├── ConvertToActionWizard.resx ├── Exceptions.cs ├── ImageCloseButton.cs ├── InsertionHighlight.Designer.cs ├── InsertionHighlight.cs ├── InsertionHighlight.resx ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── ManagedTypeSelectButton.Designer.cs ├── ManagedTypeSelectButton.cs ├── ManagedTypeSelectButton.resx ├── NativeSignatureInputHelper.Designer.cs ├── NativeSignatureInputHelper.cs ├── NativeSignatureInputHelper.resx ├── ParameterIndexNumericUpDown.Designer.cs ├── ParameterIndexNumericUpDown.cs ├── ParameterIndexNumericUpDown.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── ResolveToActionWizard.Designer.cs ├── ResolveToActionWizard.cs ├── ResolveToActionWizard.resx ├── Resource.cs ├── Resources.Designer.cs ├── Resources.resx ├── Resources │ ├── Save.bmp │ ├── SaveAs.bmp │ ├── VSObject_Library.bmp │ ├── addcondition.bmp │ ├── addrule.bmp │ ├── addruletotree.bmp │ ├── close_down.bmp │ ├── close_hover.bmp │ ├── close_normal.bmp │ ├── modifyaction.bmp │ ├── modifycondition.bmp │ ├── new.BMP │ ├── open.bmp │ ├── removeallrules.bmp │ ├── removeallsubconditions.bmp │ ├── removecondition.bmp │ ├── removerule.bmp │ └── resetrootcondition.bmp ├── RichTextBoxConditionExpression.cs ├── RuleForm.Designer.cs ├── RuleForm.cs ├── RuleForm.resx ├── RuleSet2TreeNodeProcessor.cs ├── RuleTreeView.cs ├── TlbImpRuleFileEditor.csproj ├── TlbTypeSelectDialog.Designer.cs ├── TlbTypeSelectDialog.cs ├── TlbTypeSelectDialog.resx ├── TreeNodeConstants.cs ├── action.ico └── app.config ├── TypeLibraryViewer ├── ConvCommon2.cs ├── DaemonForm.Designer.cs ├── DaemonForm.cs ├── DaemonForm.resx ├── FormDaemon.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── TlbTreeView.cs ├── TlbTreeView.resx ├── TlbTreeViewExceptions.cs ├── TypeLib2TreeNodeProcessor.cs ├── TypeLibraryTreeView.csproj ├── TypeLibraryViewer.Designer.cs ├── TypeLibraryViewer.cs └── TypeLibraryViewer.resx ├── coreRuleEngine ├── AbstractAtomicCondition.cs ├── AbstractCompositeCondition.cs ├── AbstractMultipleCondition.cs ├── AbstractSingleCondition.cs ├── Action.cs ├── AndCondition.cs ├── Category.cs ├── Condition.cs ├── CoreRuleEngine.csproj ├── IMatchTarget.cs ├── NotCondition.cs ├── Operator.cs ├── OrCondition.cs ├── Properties │ └── AssemblyInfo.cs ├── Rule.cs ├── RuleEngine.cs ├── RuleEngineExceptions.cs ├── RuleFileConstants.cs ├── RuleFileParser.cs ├── RuleFileWriter.cs └── RuleSet.cs ├── tlbImpRuleEngine ├── AbstractParentNativeNameCondition.cs ├── AddAttributeAction.cs ├── ChangeManagedNameAction.cs ├── ConvertToAction.cs ├── ConvertToActionConstants.cs ├── FieldInfoMatchTarget.cs ├── FunctionInfoMatchTarget.cs ├── GuidCondition.cs ├── IGetNativeParentName.cs ├── ITypeLibElementCommonInfo.cs ├── NativeNameCondition.cs ├── NativeParameterIndexCondition.cs ├── NativeParentFunctionNameCondition.cs ├── NativeParentTypeNameCondition.cs ├── NativeSignatureCondition.cs ├── PreserveSigAction.cs ├── Properties │ └── AssemblyInfo.cs ├── ResolveToAction.cs ├── SignatureInfoMatchTarget.cs ├── TlbImpOperator.cs ├── TlbImpRuleEngine.csproj ├── TlbImpRuleEngineExceptions.cs ├── TlbType2String.cs ├── TlbimpAction.cs ├── TlbimpCategory.cs ├── TlbimpCondition.cs ├── TypeInfoMatchTarget.cs └── TypeKindCondition.cs └── typelibTypes.interop ├── Daemon.cs ├── DefaultDaemon.cs ├── FuncDesc.cs ├── Properties └── AssemblyInfo.cs ├── TypeAttr.cs ├── TypeInfo.cs ├── TypeLib.cs ├── TypeLibAttr.cs ├── TypeLibResourceManager.cs ├── TypeLibTypes.Interop.csproj ├── TypeLibUtility.cs ├── Types.cs └── VarDesc.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/.gitignore -------------------------------------------------------------------------------- /BuildProcessTemplates/DefaultTemplate.11.1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/BuildProcessTemplates/DefaultTemplate.11.1.xaml -------------------------------------------------------------------------------- /BuildProcessTemplates/DefaultTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/BuildProcessTemplates/DefaultTemplate.xaml -------------------------------------------------------------------------------- /BuildProcessTemplates/LabDefaultTemplate.11.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/BuildProcessTemplates/LabDefaultTemplate.11.xaml -------------------------------------------------------------------------------- /BuildProcessTemplates/UpgradeTemplate.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/BuildProcessTemplates/UpgradeTemplate.xaml -------------------------------------------------------------------------------- /PInvokeTool/Installer/PInvokeGeneratorSetup.vdproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/Installer/PInvokeGeneratorSetup.vdproj -------------------------------------------------------------------------------- /PInvokeTool/ManagedToUnmanaged/ConsoleTool/Console.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/ManagedToUnmanaged/ConsoleTool/Console.cs -------------------------------------------------------------------------------- /PInvokeTool/ManagedToUnmanaged/ConsoleTool/ConsoleTool.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/ManagedToUnmanaged/ConsoleTool/ConsoleTool.csproj -------------------------------------------------------------------------------- /PInvokeTool/ManagedToUnmanaged/ConsoleTool/Errors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/ManagedToUnmanaged/ConsoleTool/Errors.cs -------------------------------------------------------------------------------- /PInvokeTool/ManagedToUnmanaged/ConsoleTool/Native.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/ManagedToUnmanaged/ConsoleTool/Native.rc -------------------------------------------------------------------------------- /PInvokeTool/ManagedToUnmanaged/ConsoleTool/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/ManagedToUnmanaged/ConsoleTool/Program.cs -------------------------------------------------------------------------------- /PInvokeTool/ManagedToUnmanaged/ConsoleTool/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/ManagedToUnmanaged/ConsoleTool/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PInvokeTool/ManagedToUnmanaged/ConsoleTool/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/ManagedToUnmanaged/ConsoleTool/Resources.Designer.cs -------------------------------------------------------------------------------- /PInvokeTool/ManagedToUnmanaged/ConsoleTool/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/ManagedToUnmanaged/ConsoleTool/Resources.resx -------------------------------------------------------------------------------- /PInvokeTool/ManagedToUnmanaged/DebugTests/DebugTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/ManagedToUnmanaged/DebugTests/DebugTests.csproj -------------------------------------------------------------------------------- /PInvokeTool/ManagedToUnmanaged/DebugTests/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/ManagedToUnmanaged/DebugTests/Program.cs -------------------------------------------------------------------------------- /PInvokeTool/ManagedToUnmanaged/DebugTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/ManagedToUnmanaged/DebugTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PInvokeTool/ManagedToUnmanaged/Engine/EngineLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/ManagedToUnmanaged/Engine/EngineLibrary.csproj -------------------------------------------------------------------------------- /PInvokeTool/ManagedToUnmanaged/Engine/Errors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/ManagedToUnmanaged/Engine/Errors.cs -------------------------------------------------------------------------------- /PInvokeTool/ManagedToUnmanaged/Engine/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/ManagedToUnmanaged/Engine/Log.cs -------------------------------------------------------------------------------- /PInvokeTool/ManagedToUnmanaged/Engine/NativeTypes/Arrays.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/ManagedToUnmanaged/Engine/NativeTypes/Arrays.cs -------------------------------------------------------------------------------- /PInvokeTool/ManagedToUnmanaged/Engine/NativeTypes/Callbacks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/ManagedToUnmanaged/Engine/NativeTypes/Callbacks.cs -------------------------------------------------------------------------------- /PInvokeTool/ManagedToUnmanaged/Engine/NativeTypes/Classes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/ManagedToUnmanaged/Engine/NativeTypes/Classes.cs -------------------------------------------------------------------------------- /PInvokeTool/ManagedToUnmanaged/Engine/NativeTypes/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/ManagedToUnmanaged/Engine/NativeTypes/Enums.cs -------------------------------------------------------------------------------- /PInvokeTool/ManagedToUnmanaged/Engine/NativeTypes/Primitives.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/ManagedToUnmanaged/Engine/NativeTypes/Primitives.cs -------------------------------------------------------------------------------- /PInvokeTool/ManagedToUnmanaged/Engine/NativeTypes/Strings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/ManagedToUnmanaged/Engine/NativeTypes/Strings.cs -------------------------------------------------------------------------------- /PInvokeTool/ManagedToUnmanaged/Engine/NativeTypes/Structs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/ManagedToUnmanaged/Engine/NativeTypes/Structs.cs -------------------------------------------------------------------------------- /PInvokeTool/ManagedToUnmanaged/Engine/Print.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/ManagedToUnmanaged/Engine/Print.cs -------------------------------------------------------------------------------- /PInvokeTool/ManagedToUnmanaged/Engine/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/ManagedToUnmanaged/Engine/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PInvokeTool/ManagedToUnmanaged/Engine/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/ManagedToUnmanaged/Engine/Resources.Designer.cs -------------------------------------------------------------------------------- /PInvokeTool/ManagedToUnmanaged/Engine/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/ManagedToUnmanaged/Engine/Resources.resx -------------------------------------------------------------------------------- /PInvokeTool/ManagedToUnmanaged/Engine/Signature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/ManagedToUnmanaged/Engine/Signature.cs -------------------------------------------------------------------------------- /PInvokeTool/ManagedToUnmanaged/Engine/Tables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/ManagedToUnmanaged/Engine/Tables.cs -------------------------------------------------------------------------------- /PInvokeTool/ManagedToUnmanaged/Engine/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/ManagedToUnmanaged/Engine/Utility.cs -------------------------------------------------------------------------------- /PInvokeTool/ManagedToUnmanaged/TestInput/Layouts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/ManagedToUnmanaged/TestInput/Layouts.cs -------------------------------------------------------------------------------- /PInvokeTool/ManagedToUnmanaged/TestInput/Marshalers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/ManagedToUnmanaged/TestInput/Marshalers.cs -------------------------------------------------------------------------------- /PInvokeTool/ManagedToUnmanaged/TestInput/PInvokes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/ManagedToUnmanaged/TestInput/PInvokes.cs -------------------------------------------------------------------------------- /PInvokeTool/ManagedToUnmanaged/TestInput/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/ManagedToUnmanaged/TestInput/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PInvokeTool/ManagedToUnmanaged/TestInput/RCWs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/ManagedToUnmanaged/TestInput/RCWs.cs -------------------------------------------------------------------------------- /PInvokeTool/ManagedToUnmanaged/TestInput/TestInput.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/ManagedToUnmanaged/TestInput/TestInput.csproj -------------------------------------------------------------------------------- /PInvokeTool/PInvoke.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/PInvoke.sln -------------------------------------------------------------------------------- /PInvokeTool/PInvoke.vsmdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/PInvoke.vsmdi -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/ConsoleTool/Module1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/ConsoleTool/Module1.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/ConsoleTool/MyProject/Application.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/ConsoleTool/MyProject/Application.Designer.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/ConsoleTool/MyProject/Application.myapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/ConsoleTool/MyProject/Application.myapp -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/ConsoleTool/MyProject/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/ConsoleTool/MyProject/AssemblyInfo.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/ConsoleTool/MyProject/Resources.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/ConsoleTool/MyProject/Resources.Designer.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/ConsoleTool/MyProject/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/ConsoleTool/MyProject/Resources.resx -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/ConsoleTool/Native.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/ConsoleTool/Native.rc -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/ConsoleTool/SigImp.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/ConsoleTool/SigImp.vbproj -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/Contract.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/Contract.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/Controls/CodeBox.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/Controls/CodeBox.Designer.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/Controls/CodeBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/Controls/CodeBox.resx -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/Controls/CodeBox.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/Controls/CodeBox.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/Controls/CodeDialog.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/Controls/CodeDialog.Designer.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/Controls/CodeDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/Controls/CodeDialog.resx -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/Controls/CodeDialog.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/Controls/CodeDialog.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/Controls/Interfaces.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/Controls/Interfaces.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/Controls/SearchComponent.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/Controls/SearchComponent.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/Controls/SearchDataGrid.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/Controls/SearchDataGrid.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/Controls/SelectSymbolDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/Controls/SelectSymbolDialog.resx -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/Controls/SelectSymbolDialog.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/Controls/SelectSymbolDialog.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/Controls/SymbolDisplayControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/Controls/SymbolDisplayControl.resx -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/Controls/SymbolDisplayControl.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/Controls/SymbolDisplayControl.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/Controls/TranslateSnippetControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/Controls/TranslateSnippetControl.resx -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/Controls/TranslateSnippetControl.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/Controls/TranslateSnippetControl.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/MyProject/Application.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/MyProject/Application.Designer.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/MyProject/Application.myapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/MyProject/Application.myapp -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/MyProject/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/MyProject/AssemblyInfo.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/MyProject/Resources.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/MyProject/Resources.Designer.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/MyProject/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/MyProject/Resources.resx -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/NativeMethods.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/NativeMethods.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/NativeStorage.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/NativeStorage.Designer.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/NativeStorage.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/NativeStorage.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/NativeStorage.xsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/NativeStorage.xsc -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/NativeStorage.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/NativeStorage.xsd -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/NativeStorage.xss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/NativeStorage.xss -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/NativeSymbolBag.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/NativeSymbolBag.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/NativeTypeIterator.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/NativeTypeIterator.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/NativeTypes.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/NativeTypes.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/PInvoke.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/PInvoke.vbproj -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/Parser/ExpressionEvaluator.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/Parser/ExpressionEvaluator.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/Parser/ExpressionParser.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/Parser/ExpressionParser.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/Parser/ExpressionValue.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/Parser/ExpressionValue.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/Parser/Macro.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/Parser/Macro.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/Parser/NativeCodeAnalyzer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/Parser/NativeCodeAnalyzer.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/Parser/ParseEngine.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/Parser/ParseEngine.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/Parser/PreProcessor.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/Parser/PreProcessor.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/Parser/Scanner.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/Parser/Scanner.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/Parser/Tokens.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/Parser/Tokens.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/Parser/Utilities.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/Parser/Utilities.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/ProcedureFinder.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/ProcedureFinder.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/Transform/BasicConverter.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/Transform/BasicConverter.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/Transform/CodeDomCloner.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/Transform/CodeDomCloner.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/Transform/CodeDomIterator.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/Transform/CodeDomIterator.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/Transform/CodeDomPrettyList.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/Transform/CodeDomPrettyList.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/Transform/CodeTransform.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/Transform/CodeTransform.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/Transform/CustomCodeDom.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/Transform/CustomCodeDom.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/Transform/MarshalTransform.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/Transform/MarshalTransform.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/Transform/MarshalTypeFactory.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/Transform/MarshalTypeFactory.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/Transform/NativeSymbolTransform.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/Transform/NativeSymbolTransform.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/Transform/SalAnalyzer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/Transform/SalAnalyzer.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/Transform/TransformPlugin.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/Transform/TransformPlugin.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/Transform/Utilities.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/Transform/Utilities.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/Engine/Utilities.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/Engine/Utilities.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/HostApp/Form1.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/HostApp/Form1.Designer.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/HostApp/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/HostApp/Form1.resx -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/HostApp/Form1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/HostApp/Form1.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/HostApp/MyProject/Application.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/HostApp/MyProject/Application.Designer.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/HostApp/MyProject/Application.myapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/HostApp/MyProject/Application.myapp -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/HostApp/MyProject/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/HostApp/MyProject/AssemblyInfo.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/HostApp/MyProject/Resources.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/HostApp/MyProject/Resources.Designer.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/HostApp/MyProject/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/HostApp/MyProject/Resources.resx -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/HostApp/Native.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/HostApp/Native.rc -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/HostApp/PInvokeHostApp.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/HostApp/PInvokeHostApp.vbproj -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeAddin/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeAddin/AssemblyInfo.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeAddin/CodeDomInsterter.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeAddin/CodeDomInsterter.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeAddin/CodeModelAdapter.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeAddin/CodeModelAdapter.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeAddin/CommandBar.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeAddin/CommandBar.resx -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeAddin/Connect.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeAddin/Connect.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeAddin/My Project/Resources.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeAddin/My Project/Resources.Designer.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeAddin/My Project/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeAddin/My Project/Resources.resx -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeAddin/Options.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeAddin/Options.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeAddin/PInvokeAddin Orcas.AddIn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeAddin/PInvokeAddin Orcas.AddIn -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeAddin/PInvokeAddin.AddIn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeAddin/PInvokeAddin.AddIn -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeAddin/PInvokeAddin.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeAddin/PInvokeAddin.vbproj -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/AuthoringTests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/AuthoringTests.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/CodeDomIteratorTest.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/CodeDomIteratorTest.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/CodeTransformTest.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/CodeTransformTest.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/ExpressionEvaluatorTest.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/ExpressionEvaluatorTest.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/ExpressionParserTest.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/ExpressionParserTest.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/ExpressionValueTest.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/ExpressionValueTest.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/GenTestCode.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/GenTestCode.ps1 -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/Generated.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/Generated.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/MacroTest.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/MacroTest.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/MarshalTransformTest.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/MarshalTransformTest.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/My Project/AssemblyInfo.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/NativeParserTest.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/NativeParserTest.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/NativePreProcessorTest.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/NativePreProcessorTest.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/NativeStorageTest.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/NativeStorageTest.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/NativeSymbolTransformTest.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/NativeSymbolTransformTest.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/NativeTypeBagTest.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/NativeTypeBagTest.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/NativeTypeEqualityComparer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/NativeTypeEqualityComparer.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/NativeTypeEqualityComparerTest.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/NativeTypeEqualityComparerTest.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/NativeTypeIteratorTest.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/NativeTypeIteratorTest.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/NativeTypesTest.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/NativeTypesTest.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/PInvokeTest.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/PInvokeTest.vbproj -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/PInvokeTestLib.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/PInvokeTestLib.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/ProcedureFinderTest.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/ProcedureFinderTest.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SalAnalyzerTest.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SalAnalyzerTest.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Class1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Class1.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Complex1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Complex1.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Enum1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Enum1.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Enum2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Enum2.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Enum3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Enum3.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Enum4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Enum4.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Errors1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Errors1.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/FuncPtr1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/FuncPtr1.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/FuncPtr2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/FuncPtr2.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/FuncPtr3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/FuncPtr3.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/FuncPtr4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/FuncPtr4.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Mixed1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Mixed1.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Mixed2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Mixed2.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Mixed3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Mixed3.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Proc1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Proc1.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Proc10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Proc10.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Proc11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Proc11.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Proc2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Proc2.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Proc3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Proc3.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Proc4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Proc4.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Proc5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Proc5.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Proc6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Proc6.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Proc7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Proc7.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Proc8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Proc8.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Proc9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Proc9.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Sal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Sal.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Struct1.txt: -------------------------------------------------------------------------------- 1 | struct foo 2 | { 3 | int i; 4 | } -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Struct10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Struct10.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Struct11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Struct11.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Struct12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Struct12.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Struct13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Struct13.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Struct14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Struct14.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Struct15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Struct15.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Struct16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Struct16.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Struct17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Struct17.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Struct18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Struct18.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Struct19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Struct19.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Struct2.txt: -------------------------------------------------------------------------------- 1 | /*hello*/ 2 | struct bar /*aoe*/ 3 | { 4 | double j 5 | ; 6 | } 7 | 8 | -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Struct20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Struct20.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Struct21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Struct21.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Struct3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Struct3.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Struct4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Struct4.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Struct5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Struct5.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Struct6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Struct6.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Struct7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Struct7.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Struct8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Struct8.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Struct9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Struct9.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/TypeDef1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/TypeDef1.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/TypeDef2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/TypeDef2.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/TypeDef3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/TypeDef3.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/TypeDef4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/TypeDef4.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/TypeDef5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/TypeDef5.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/TypeDef6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/TypeDef6.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/TypeDef7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/TypeDef7.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/TypeDef8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/TypeDef8.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/TypeDef9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/TypeDef9.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Union1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Union1.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Union2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/Union2.txt -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/specstrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SampleFiles/specstrings.h -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/ScannerTest.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/ScannerTest.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/SelfHost.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/SelfHost.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/TestPInvokeTestLib.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/TestPInvokeTestLib.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/TokensTest.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/TokensTest.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/Utilities.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/Utilities.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/VSCodeGenAccessors.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/VSCodeGenAccessors.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTest/_Scripts.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTest/_Scripts.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTestLib/NativeMethods.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTestLib/NativeMethods.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTestLib/PInvokeTestLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTestLib/PInvokeTestLib.cpp -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTestLib/PInvokeTestLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTestLib/PInvokeTestLib.h -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTestLib/PInvokeTestLib.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTestLib/PInvokeTestLib.vcproj -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTestLib/PInvokeTestLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTestLib/PInvokeTestLib.vcxproj -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTestLib/PInvokeTestLib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTestLib/PInvokeTestLib.vcxproj.filters -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTestLib/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTestLib/stdafx.cpp -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/PInvokeTestLib/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/PInvokeTestLib/stdafx.h -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/StorageGenerator/Data/windows.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/StorageGenerator/Data/windows.xml -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/StorageGenerator/DiffTables.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/StorageGenerator/DiffTables.ps1 -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/StorageGenerator/Module1.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/StorageGenerator/Module1.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/StorageGenerator/My Project/Application.myapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/StorageGenerator/My Project/Application.myapp -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/StorageGenerator/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/StorageGenerator/My Project/AssemblyInfo.vb -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/StorageGenerator/My Project/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/StorageGenerator/My Project/Resources.resx -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/StorageGenerator/My Project/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/StorageGenerator/My Project/Settings.settings -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/StorageGenerator/StorageGenerator.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/StorageGenerator/StorageGenerator.vbproj -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/UnmanagedToManaged.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/UnmanagedToManaged.sln -------------------------------------------------------------------------------- /PInvokeTool/UnmanagedToManaged/localtestrun.testrunconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/UnmanagedToManaged/localtestrun.testrunconfig -------------------------------------------------------------------------------- /PInvokeTool/WindowsTool/AboutForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/WindowsTool/AboutForm.Designer.cs -------------------------------------------------------------------------------- /PInvokeTool/WindowsTool/AboutForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/WindowsTool/AboutForm.cs -------------------------------------------------------------------------------- /PInvokeTool/WindowsTool/AboutForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/WindowsTool/AboutForm.resx -------------------------------------------------------------------------------- /PInvokeTool/WindowsTool/Bitmaps/classa.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/WindowsTool/Bitmaps/classa.bmp -------------------------------------------------------------------------------- /PInvokeTool/WindowsTool/Bitmaps/classi.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/WindowsTool/Bitmaps/classi.bmp -------------------------------------------------------------------------------- /PInvokeTool/WindowsTool/Bitmaps/classv.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/WindowsTool/Bitmaps/classv.bmp -------------------------------------------------------------------------------- /PInvokeTool/WindowsTool/Bitmaps/copyHS.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/WindowsTool/Bitmaps/copyHS.bmp -------------------------------------------------------------------------------- /PInvokeTool/WindowsTool/Bitmaps/field.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/WindowsTool/Bitmaps/field.bmp -------------------------------------------------------------------------------- /PInvokeTool/WindowsTool/Bitmaps/mainicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/WindowsTool/Bitmaps/mainicon.ico -------------------------------------------------------------------------------- /PInvokeTool/WindowsTool/Bitmaps/method.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/WindowsTool/Bitmaps/method.bmp -------------------------------------------------------------------------------- /PInvokeTool/WindowsTool/Bitmaps/namespace.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/WindowsTool/Bitmaps/namespace.bmp -------------------------------------------------------------------------------- /PInvokeTool/WindowsTool/Bitmaps/openHS.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/WindowsTool/Bitmaps/openHS.bmp -------------------------------------------------------------------------------- /PInvokeTool/WindowsTool/Bitmaps/refreshDocViewHS.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/WindowsTool/Bitmaps/refreshDocViewHS.bmp -------------------------------------------------------------------------------- /PInvokeTool/WindowsTool/Bitmaps/staticmethod.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/WindowsTool/Bitmaps/staticmethod.bmp -------------------------------------------------------------------------------- /PInvokeTool/WindowsTool/Help/Overview.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/WindowsTool/Help/Overview.htm -------------------------------------------------------------------------------- /PInvokeTool/WindowsTool/Help/SigExp.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/WindowsTool/Help/SigExp.htm -------------------------------------------------------------------------------- /PInvokeTool/WindowsTool/Help/SigExp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/WindowsTool/Help/SigExp.png -------------------------------------------------------------------------------- /PInvokeTool/WindowsTool/Help/SigExp_Console.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/WindowsTool/Help/SigExp_Console.htm -------------------------------------------------------------------------------- /PInvokeTool/WindowsTool/Help/SigExp_GUI.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/WindowsTool/Help/SigExp_GUI.htm -------------------------------------------------------------------------------- /PInvokeTool/WindowsTool/Help/SigImp.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/WindowsTool/Help/SigImp.htm -------------------------------------------------------------------------------- /PInvokeTool/WindowsTool/Help/SigImp_Console.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/WindowsTool/Help/SigImp_Console.htm -------------------------------------------------------------------------------- /PInvokeTool/WindowsTool/Help/SigImp_GUI.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/WindowsTool/Help/SigImp_GUI.htm -------------------------------------------------------------------------------- /PInvokeTool/WindowsTool/Help/SigImp_Search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/WindowsTool/Help/SigImp_Search.png -------------------------------------------------------------------------------- /PInvokeTool/WindowsTool/Help/SigImp_Snippet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/WindowsTool/Help/SigImp_Snippet.png -------------------------------------------------------------------------------- /PInvokeTool/WindowsTool/Help/SigImp_Unsupported.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/WindowsTool/Help/SigImp_Unsupported.htm -------------------------------------------------------------------------------- /PInvokeTool/WindowsTool/Help/siggen.hhc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/WindowsTool/Help/siggen.hhc -------------------------------------------------------------------------------- /PInvokeTool/WindowsTool/Help/siggen.hhp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/WindowsTool/Help/siggen.hhp -------------------------------------------------------------------------------- /PInvokeTool/WindowsTool/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/WindowsTool/MainForm.Designer.cs -------------------------------------------------------------------------------- /PInvokeTool/WindowsTool/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/WindowsTool/MainForm.cs -------------------------------------------------------------------------------- /PInvokeTool/WindowsTool/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/WindowsTool/MainForm.resx -------------------------------------------------------------------------------- /PInvokeTool/WindowsTool/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/WindowsTool/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PInvokeTool/WindowsTool/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/WindowsTool/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /PInvokeTool/WindowsTool/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/WindowsTool/Properties/Resources.resx -------------------------------------------------------------------------------- /PInvokeTool/WindowsTool/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/WindowsTool/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /PInvokeTool/WindowsTool/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/WindowsTool/Properties/Settings.settings -------------------------------------------------------------------------------- /PInvokeTool/WindowsTool/Reflector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/WindowsTool/Reflector.cs -------------------------------------------------------------------------------- /PInvokeTool/WindowsTool/RichTextPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/WindowsTool/RichTextPrinter.cs -------------------------------------------------------------------------------- /PInvokeTool/WindowsTool/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/WindowsTool/Settings.cs -------------------------------------------------------------------------------- /PInvokeTool/WindowsTool/WindowsTool.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/WindowsTool/WindowsTool.csproj -------------------------------------------------------------------------------- /PInvokeTool/WindowsTool/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/WindowsTool/app.config -------------------------------------------------------------------------------- /PInvokeTool/WindowsTool/siggen.chm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/WindowsTool/siggen.chm -------------------------------------------------------------------------------- /PInvokeTool/WindowsToolLauncher/Native.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/WindowsToolLauncher/Native.rc -------------------------------------------------------------------------------- /PInvokeTool/WindowsToolLauncher/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/WindowsToolLauncher/Program.cs -------------------------------------------------------------------------------- /PInvokeTool/WindowsToolLauncher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/WindowsToolLauncher/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PInvokeTool/WindowsToolLauncher/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/WindowsToolLauncher/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /PInvokeTool/WindowsToolLauncher/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/WindowsToolLauncher/Properties/Resources.resx -------------------------------------------------------------------------------- /PInvokeTool/WindowsToolLauncher/Properties/mainicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/WindowsToolLauncher/Properties/mainicon.ico -------------------------------------------------------------------------------- /PInvokeTool/WindowsToolLauncher/WindowsToolLauncher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/WindowsToolLauncher/WindowsToolLauncher.csproj -------------------------------------------------------------------------------- /PInvokeTool/WindowsToolLauncher/mainicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/WindowsToolLauncher/mainicon.ico -------------------------------------------------------------------------------- /PInvokeTool/localtestrun.testrunconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/PInvokeTool/localtestrun.testrunconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/README.md -------------------------------------------------------------------------------- /TlbImp/CommandLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp/CommandLine.cs -------------------------------------------------------------------------------- /TlbImp/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp/Constants.cs -------------------------------------------------------------------------------- /TlbImp/ConvClassInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp/ConvClassInterface.cs -------------------------------------------------------------------------------- /TlbImp/ConvCoClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp/ConvCoClass.cs -------------------------------------------------------------------------------- /TlbImp/ConvCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp/ConvCommon.cs -------------------------------------------------------------------------------- /TlbImp/ConvEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp/ConvEnum.cs -------------------------------------------------------------------------------- /TlbImp/ConvEventInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp/ConvEventInterface.cs -------------------------------------------------------------------------------- /TlbImp/ConvInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp/ConvInterface.cs -------------------------------------------------------------------------------- /TlbImp/ConvLocalBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp/ConvLocalBase.cs -------------------------------------------------------------------------------- /TlbImp/ConvModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp/ConvModule.cs -------------------------------------------------------------------------------- /TlbImp/ConvStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp/ConvStruct.cs -------------------------------------------------------------------------------- /TlbImp/ConvUnion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp/ConvUnion.cs -------------------------------------------------------------------------------- /TlbImp/ConverterInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp/ConverterInfo.cs -------------------------------------------------------------------------------- /TlbImp/CustomAttributeBlobBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp/CustomAttributeBlobBuilder.cs -------------------------------------------------------------------------------- /TlbImp/CustomAttributeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp/CustomAttributeHelper.cs -------------------------------------------------------------------------------- /TlbImp/ErrorCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp/ErrorCode.cs -------------------------------------------------------------------------------- /TlbImp/Event/EventItfInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp/Event/EventItfInfo.cs -------------------------------------------------------------------------------- /TlbImp/Event/EventProviderWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp/Event/EventProviderWriter.cs -------------------------------------------------------------------------------- /TlbImp/Event/EventSinkHelperWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp/Event/EventSinkHelperWriter.cs -------------------------------------------------------------------------------- /TlbImp/Event/NamespaceExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp/Event/NamespaceExtractor.cs -------------------------------------------------------------------------------- /TlbImp/Event/TCEAdapterGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp/Event/TCEAdapterGenerator.cs -------------------------------------------------------------------------------- /TlbImp/Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp/Exceptions.cs -------------------------------------------------------------------------------- /TlbImp/FuncDesc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp/FuncDesc.cs -------------------------------------------------------------------------------- /TlbImp/IConvBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp/IConvBase.cs -------------------------------------------------------------------------------- /TlbImp/InterfaceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp/InterfaceInfo.cs -------------------------------------------------------------------------------- /TlbImp/Process.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp/Process.cs -------------------------------------------------------------------------------- /TlbImp/PropertyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp/PropertyInfo.cs -------------------------------------------------------------------------------- /TlbImp/RemoteTlbImp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp/RemoteTlbImp.cs -------------------------------------------------------------------------------- /TlbImp/Resource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp/Resource.cs -------------------------------------------------------------------------------- /TlbImp/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp/Resources.resx -------------------------------------------------------------------------------- /TlbImp/TlbImp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp/TlbImp.cs -------------------------------------------------------------------------------- /TlbImp/TlbImp2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp/TlbImp2.csproj -------------------------------------------------------------------------------- /TlbImp/TlbImp2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp/TlbImp2.sln -------------------------------------------------------------------------------- /TlbImp/TlbImpOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp/TlbImpOptions.cs -------------------------------------------------------------------------------- /TlbImp/TypeAttr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp/TypeAttr.cs -------------------------------------------------------------------------------- /TlbImp/TypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp/TypeConverter.cs -------------------------------------------------------------------------------- /TlbImp/TypeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp/TypeInfo.cs -------------------------------------------------------------------------------- /TlbImp/TypeLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp/TypeLib.cs -------------------------------------------------------------------------------- /TlbImp/TypeLibAttr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp/TypeLibAttr.cs -------------------------------------------------------------------------------- /TlbImp/Types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp/Types.cs -------------------------------------------------------------------------------- /TlbImp/VarDesc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp/VarDesc.cs -------------------------------------------------------------------------------- /TlbImp/output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp/output.cs -------------------------------------------------------------------------------- /TlbImp/tlbimpcode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp/tlbimpcode.cs -------------------------------------------------------------------------------- /TlbImp2/AssemblyTreeView/AssemblyTVForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/AssemblyTreeView/AssemblyTVForm.Designer.cs -------------------------------------------------------------------------------- /TlbImp2/AssemblyTreeView/AssemblyTVForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/AssemblyTreeView/AssemblyTVForm.cs -------------------------------------------------------------------------------- /TlbImp2/AssemblyTreeView/AssemblyTVForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/AssemblyTreeView/AssemblyTVForm.resx -------------------------------------------------------------------------------- /TlbImp2/AssemblyTreeView/AssemblyTreeView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/AssemblyTreeView/AssemblyTreeView.Designer.cs -------------------------------------------------------------------------------- /TlbImp2/AssemblyTreeView/AssemblyTreeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/AssemblyTreeView/AssemblyTreeView.cs -------------------------------------------------------------------------------- /TlbImp2/AssemblyTreeView/AssemblyTreeView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/AssemblyTreeView/AssemblyTreeView.resx -------------------------------------------------------------------------------- /TlbImp2/AssemblyTreeView/AssemblyTreeViewer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/AssemblyTreeView/AssemblyTreeViewer.csproj -------------------------------------------------------------------------------- /TlbImp2/AssemblyTreeView/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/AssemblyTreeView/Program.cs -------------------------------------------------------------------------------- /TlbImp2/AssemblyTreeView/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/AssemblyTreeView/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TlbImp2/AssemblyTreeView/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/AssemblyTreeView/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /TlbImp2/AssemblyTreeView/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/AssemblyTreeView/Properties/Resources.resx -------------------------------------------------------------------------------- /TlbImp2/AssemblyTreeView/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/AssemblyTreeView/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /TlbImp2/AssemblyTreeView/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/AssemblyTreeView/Properties/Settings.settings -------------------------------------------------------------------------------- /TlbImp2/TlbImp/CommandLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImp/CommandLine.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImp/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImp/Constants.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImp/ConvClassInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImp/ConvClassInterface.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImp/ConvCoClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImp/ConvCoClass.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImp/ConvCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImp/ConvCommon.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImp/ConvEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImp/ConvEnum.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImp/ConvEventInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImp/ConvEventInterface.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImp/ConvInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImp/ConvInterface.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImp/ConvLocalBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImp/ConvLocalBase.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImp/ConvModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImp/ConvModule.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImp/ConvStruct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImp/ConvStruct.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImp/ConvUnion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImp/ConvUnion.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImp/ConverterInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImp/ConverterInfo.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImp/CustomAttributeBlobBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImp/CustomAttributeBlobBuilder.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImp/CustomAttributeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImp/CustomAttributeHelper.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImp/ErrorCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImp/ErrorCode.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImp/Event/EventItfInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImp/Event/EventItfInfo.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImp/Event/EventProviderWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImp/Event/EventProviderWriter.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImp/Event/EventSinkHelperWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImp/Event/EventSinkHelperWriter.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImp/Event/NamespaceExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImp/Event/NamespaceExtractor.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImp/Event/TCEAdapterGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImp/Event/TCEAdapterGenerator.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImp/Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImp/Exceptions.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImp/IConvBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImp/IConvBase.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImp/InterfaceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImp/InterfaceInfo.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImp/Process.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImp/Process.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImp/PropertyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImp/PropertyInfo.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImp/RemoteTlbImp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImp/RemoteTlbImp.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImp/Resource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImp/Resource.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImp/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImp/Resources.resx -------------------------------------------------------------------------------- /TlbImp2/TlbImp/TlbImp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImp/TlbImp.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImp/TlbImp2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImp/TlbImp2.csproj -------------------------------------------------------------------------------- /TlbImp2/TlbImp/TlbImpOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImp/TlbImpOptions.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImp/TypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImp/TypeConverter.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImp/output.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImp/output.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImp/tlbimpcode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImp/tlbimpcode.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImp2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImp2.sln -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/AssemPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/AssemPrinter.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Exceptions.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/ILReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/ILReader.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/MainForm.Designer.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/MainForm.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/MainForm.resx -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Program.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Properties/Resources.resx -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Properties/Settings.settings -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/RemoteAssemPrinter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/RemoteAssemPrinter.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/SettingsForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/SettingsForm.Designer.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/SettingsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/SettingsForm.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/SettingsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/SettingsForm.resx -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/TestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/TestCase.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/TestCaseRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/TestCaseRunner.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/TestCaseSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/TestCaseSet.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/TestCaseSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/TestCaseSettings.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/TestCaseStatusChangeEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/TestCaseStatusChangeEventArgs.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/AddAttribute/AddAttribute_1.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/AddAttribute/AddAttribute_1.idl -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/AddAttribute/AddAttribute_1.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/AddAttribute/AddAttribute_1.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/AddAttribute/AddAttribute_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/AddAttribute/AddAttribute_1.xml -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/AddAttribute/AddAttribute_2.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/AddAttribute/AddAttribute_2.idl -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/AddAttribute/AddAttribute_2.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/AddAttribute/AddAttribute_2.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/AddAttribute/AddAttribute_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/AddAttribute/AddAttribute_2.xml -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/AddAttribute/AddAttribute_3.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/AddAttribute/AddAttribute_3.idl -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/AddAttribute/AddAttribute_3.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/AddAttribute/AddAttribute_3.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/AddAttribute/AddAttribute_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/AddAttribute/AddAttribute_3.xml -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/AddAttribute/AddAttribute_4.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/AddAttribute/AddAttribute_4.idl -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/AddAttribute/AddAttribute_4.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/AddAttribute/AddAttribute_4.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/AddAttribute/AddAttribute_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/AddAttribute/AddAttribute_4.xml -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/AddAttribute/AddAttribute_5.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/AddAttribute/AddAttribute_5.idl -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/AddAttribute/AddAttribute_5.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/AddAttribute/AddAttribute_5.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/AddAttribute/AddAttribute_5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/AddAttribute/AddAttribute_5.xml -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/AddAttribute/AddAttribute_6.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/AddAttribute/AddAttribute_6.idl -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/AddAttribute/AddAttribute_6.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/AddAttribute/AddAttribute_6.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/AddAttribute/AddAttribute_6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/AddAttribute/AddAttribute_6.xml -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/ConvertTo/ConvertTo_1.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/ConvertTo/ConvertTo_1.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/ConvertTo/ConvertTo_1.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/ConvertTo/ConvertTo_1.idl -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/ConvertTo/ConvertTo_1.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/ConvertTo/ConvertTo_1.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/ConvertTo/ConvertTo_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/ConvertTo/ConvertTo_1.xml -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/ConvertTo/ConvertTo_2.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/ConvertTo/ConvertTo_2.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/ConvertTo/ConvertTo_2.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/ConvertTo/ConvertTo_2.idl -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/ConvertTo/ConvertTo_2.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/ConvertTo/ConvertTo_2.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/ConvertTo/ConvertTo_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/ConvertTo/ConvertTo_2.xml -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/ConvertTo/ConvertTo_3.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/ConvertTo/ConvertTo_3.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/ConvertTo/ConvertTo_3.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/ConvertTo/ConvertTo_3.idl -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/ConvertTo/ConvertTo_3.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/ConvertTo/ConvertTo_3.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/ConvertTo/ConvertTo_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/ConvertTo/ConvertTo_3.xml -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/ConvertTo/ConvertTo_4.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/ConvertTo/ConvertTo_4.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/ConvertTo/ConvertTo_4.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/ConvertTo/ConvertTo_4.idl -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/ConvertTo/ConvertTo_4.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/ConvertTo/ConvertTo_4.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/ConvertTo/ConvertTo_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/ConvertTo/ConvertTo_4.xml -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/MultipleRules/MultipleRuleRef.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/MultipleRules/MultipleRuleRef.idl -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/MultipleRules/MultipleRuleRef.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/MultipleRules/MultipleRuleRef.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/MultipleRules/ResolveTo_1.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/MultipleRules/ResolveTo_1.idl -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/Office/mso.dll.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/Office/mso.dll.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/Office/mso.dll.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/Office/mso.dll.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/Office/mso.dll.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/Office/mso.dll.xml -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_1.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_1.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_1.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_1.idl -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_1.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_1.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_1.xml -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_2.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_2.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_2.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_2.idl -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_2.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_2.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_2.xml -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_3.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_3.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_3.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_3.idl -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_3.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_3.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_3.xml -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_4.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_4.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_4.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_4.idl -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_4.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_4.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_4.xml -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_5.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_5.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_5.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_5.idl -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_5.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_5.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_5.xml -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_6.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_6.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_6.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_6.idl -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_6.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_6.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_6.xml -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_7.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_7.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_7.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_7.idl -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_7.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_7.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_7.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_7.xml -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_8.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_8.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_8.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_8.idl -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_8.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_8.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_8.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/Operator/Operator_8.xml -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/PreserveSig/PreserveSig_1.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/PreserveSig/PreserveSig_1.idl -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/PreserveSig/PreserveSig_1.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/PreserveSig/PreserveSig_1.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/PreserveSig/PreserveSig_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/PreserveSig/PreserveSig_1.xml -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/PreserveSig/PreserveSig_2.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/PreserveSig/PreserveSig_2.idl -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/PreserveSig/PreserveSig_2.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/PreserveSig/PreserveSig_2.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/PreserveSig/PreserveSig_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/PreserveSig/PreserveSig_2.xml -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/PreserveSig/PreserveSig_3.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/PreserveSig/PreserveSig_3.idl -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/PreserveSig/PreserveSig_3.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/PreserveSig/PreserveSig_3.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/PreserveSig/PreserveSig_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/PreserveSig/PreserveSig_3.xml -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/ResolveTo/ResolveToRef.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/ResolveTo/ResolveToRef.idl -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/ResolveTo/ResolveToRef.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/ResolveTo/ResolveToRef.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/ResolveTo/ResolveTo_1.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/ResolveTo/ResolveTo_1.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/ResolveTo/ResolveTo_1.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/ResolveTo/ResolveTo_1.idl -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/ResolveTo/ResolveTo_1.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/ResolveTo/ResolveTo_1.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/ResolveTo/ResolveTo_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/ResolveTo/ResolveTo_1.xml -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/ResolveTo/ResolveTo_2.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/ResolveTo/ResolveTo_2.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/ResolveTo/ResolveTo_2.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/ResolveTo/ResolveTo_2.idl -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/ResolveTo/ResolveTo_2.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/ResolveTo/ResolveTo_2.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/ResolveTo/ResolveTo_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/ResolveTo/ResolveTo_2.xml -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/ResolveTo/ResolveTo_3.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/ResolveTo/ResolveTo_3.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/ResolveTo/ResolveTo_3.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/ResolveTo/ResolveTo_3.idl -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/ResolveTo/ResolveTo_3.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/ResolveTo/ResolveTo_3.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/ResolveTo/ResolveTo_3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/ResolveTo/ResolveTo_3.xml -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/ResolveTo/ResolveTo_4.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/ResolveTo/ResolveTo_4.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/ResolveTo/ResolveTo_4.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/ResolveTo/ResolveTo_4.idl -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/ResolveTo/ResolveTo_4.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/ResolveTo/ResolveTo_4.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/ResolveTo/ResolveTo_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/ResolveTo/ResolveTo_4.xml -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/ResolveTo/ResolveTo_5.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/ResolveTo/ResolveTo_5.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/ResolveTo/ResolveTo_5.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/ResolveTo/ResolveTo_5.idl -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/ResolveTo/ResolveTo_5.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/ResolveTo/ResolveTo_5.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/ResolveTo/ResolveTo_5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/ResolveTo/ResolveTo_5.xml -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/ResolveTo/TestClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/ResolveTo/TestClass.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/Testcases.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/Testcases.xml -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/ConvertProperty.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/ConvertProperty.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/DISPRET.DLL.TLB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/DISPRET.DLL.TLB -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/MSACC9.OLB.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/MSACC9.OLB.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/MSACC9.OLB.tlb.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/MSACC9.OLB.tlb.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/MSACC9.OLB.tlb_2.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/MSACC9.OLB.tlb_2.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/MSO9.DLL.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/MSO9.DLL.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/MSO9.DLL.tlb.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/MSO9.DLL.tlb.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/MSO9.DLL.tlb_2.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/MSO9.DLL.tlb_2.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/MSO97RT.DLL.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/MSO97RT.DLL.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/MSO97RT.DLL.tlb.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/MSO97RT.DLL.tlb.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/MSO97RT.DLL.tlb_2.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/MSO97RT.DLL.tlb_2.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/MSPPT.OLB.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/MSPPT.OLB.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/MSPPT9.OLB.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/MSPPT9.OLB.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/MSPPT9.OLB.tlb.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/MSPPT9.OLB.tlb.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/MSPPT9.OLB.tlb_2.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/MSPPT9.OLB.tlb_2.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/MSWORD9.OLB.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/MSWORD9.OLB.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/ManagedNameAttribute.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/ManagedNameAttribute.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/Prop01.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/Prop01.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/Prop03.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/Prop03.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/PropGet01.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/PropGet01.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/PropGet01.tlb.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/PropGet01.tlb.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/PropGet01.tlb_2.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/PropGet01.tlb_2.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/PropSet01.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/PropSet01.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/S0006.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/S0006.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/S0046.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/S0046.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/S0046.tlb.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/S0046.tlb.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/S0046.tlb_2.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/S0046.tlb_2.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/SPDESIGN.EXE.TLB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/SPDESIGN.EXE.TLB -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/UDTSafeArrayEnum.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/UDTSafeArrayEnum.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/UDTSafeArrayInterface.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/UDTSafeArrayInterface.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/VB6EXT.OLB.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/VB6EXT.OLB.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/VBA6.DLL.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/VBA6.DLL.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/VBA6.DLL.tlb.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/VBA6.DLL.tlb.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/VBA6.DLL.tlb_2.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/VBA6.DLL.tlb_2.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/dispret.dll.tlb.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/dispret.dll.tlb.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/dispret.dll.tlb_2.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/dispret.dll.tlb_2.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/msado20.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/msado20.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/msado20.tlb.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/msado20.tlb.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/msado20.tlb_2.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/msado20.tlb_2.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/msado25.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/msado25.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/msado25.tlb.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/msado25.tlb.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/msado25.tlb_2.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/msado25.tlb_2.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/msado25.tlb_3.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/msado25.tlb_3.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/mso.dll.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/mso.dll.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/mso.dll.tlb.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/mso.dll.tlb.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/mso.dll.tlb_2.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/mso.dll.tlb_2.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/mso.dll.tlb_3.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/mso.dll.tlb_3.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/msppt.olb.tlb.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/msppt.olb.tlb.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/msppt.olb.tlb_2.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/msppt.olb.tlb_2.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/msstdfmt.dll.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/msstdfmt.dll.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/msstdfmt.dll.tlb.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/msstdfmt.dll.tlb.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/msstdfmt.dll.tlb_2.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/msstdfmt.dll.tlb_2.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/msword9.olb.tlb.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/msword9.olb.tlb.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/msword9.olb.tlb_2.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/msword9.olb.tlb_2.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/prop01.tlb.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/prop01.tlb.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/prop01.tlb_2.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/prop01.tlb_2.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/prop02.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/prop02.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/prop02.tlb.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/prop02.tlb.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/prop02.tlb_2.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/prop02.tlb_2.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/prop03.tlb.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/prop03.tlb.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/prop03.tlb_2.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/prop03.tlb_2.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/propgetwithvoid.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/propgetwithvoid.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/propset01.tlb.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/propset01.tlb.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/propset01.tlb_2.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/propset01.tlb_2.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/s0006.tlb.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/s0006.tlb.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/s0006.tlb_2.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/s0006.tlb_2.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/spdesign.exe.tlb.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/spdesign.exe.tlb.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/vb6ext.olb.tlb.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/vb6ext.olb.tlb.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/vb6ext.olb.tlb_2.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/vb6ext.olb.tlb_2.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/vcpb2.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/vcpb2.tlb -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/vcpb2.tlb.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/vcpb2.tlb.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/vcpb2.tlb_2.baseline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/Testcases/tlb/vcpb2.tlb_2.baseline -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/TlbImpRegressionTestTool.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/TlbImpRegressionTestTool.csproj -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/action.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/action.ico -------------------------------------------------------------------------------- /TlbImp2/TlbImpRegressionTestTool/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRegressionTestTool/app.config -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/APIHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/APIHelper.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/AboutDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/AboutDialog.Designer.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/AboutDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/AboutDialog.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/AboutDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/AboutDialog.resx -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/AddAttributeActionWizard.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/AddAttributeActionWizard.Designer.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/AddAttributeActionWizard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/AddAttributeActionWizard.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/AddAttributeActionWizard.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/AddAttributeActionWizard.resx -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/AddAttributeDataInputHelper.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/AddAttributeDataInputHelper.Designer.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/AddAttributeDataInputHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/AddAttributeDataInputHelper.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/AddAttributeDataInputHelper.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/AddAttributeDataInputHelper.resx -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/AssemblyTypeSelectDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/AssemblyTypeSelectDialog.Designer.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/AssemblyTypeSelectDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/AssemblyTypeSelectDialog.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/AssemblyTypeSelectDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/AssemblyTypeSelectDialog.resx -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/ChangeManagedNameActionDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/ChangeManagedNameActionDialog.Designer.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/ChangeManagedNameActionDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/ChangeManagedNameActionDialog.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/ChangeManagedNameActionDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/ChangeManagedNameActionDialog.resx -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/ConditionInPlaceEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/ConditionInPlaceEditor.Designer.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/ConditionInPlaceEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/ConditionInPlaceEditor.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/ConditionInPlaceEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/ConditionInPlaceEditor.resx -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/ConvertToActionWizard.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/ConvertToActionWizard.Designer.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/ConvertToActionWizard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/ConvertToActionWizard.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/ConvertToActionWizard.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/ConvertToActionWizard.resx -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/Exceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/Exceptions.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/ImageCloseButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/ImageCloseButton.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/InsertionHighlight.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/InsertionHighlight.Designer.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/InsertionHighlight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/InsertionHighlight.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/InsertionHighlight.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/InsertionHighlight.resx -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/MainForm.Designer.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/MainForm.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/MainForm.resx -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/ManagedTypeSelectButton.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/ManagedTypeSelectButton.Designer.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/ManagedTypeSelectButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/ManagedTypeSelectButton.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/ManagedTypeSelectButton.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/ManagedTypeSelectButton.resx -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/NativeSignatureInputHelper.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/NativeSignatureInputHelper.Designer.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/NativeSignatureInputHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/NativeSignatureInputHelper.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/NativeSignatureInputHelper.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/NativeSignatureInputHelper.resx -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/ParameterIndexNumericUpDown.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/ParameterIndexNumericUpDown.Designer.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/ParameterIndexNumericUpDown.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/ParameterIndexNumericUpDown.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/ParameterIndexNumericUpDown.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/ParameterIndexNumericUpDown.resx -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/Program.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/Properties/Resources.resx -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/Properties/Settings.settings -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/ResolveToActionWizard.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/ResolveToActionWizard.Designer.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/ResolveToActionWizard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/ResolveToActionWizard.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/ResolveToActionWizard.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/ResolveToActionWizard.resx -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/Resource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/Resource.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/Resources.Designer.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/Resources.resx -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/Resources/Save.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/Resources/Save.bmp -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/Resources/SaveAs.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/Resources/SaveAs.bmp -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/Resources/VSObject_Library.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/Resources/VSObject_Library.bmp -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/Resources/addcondition.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/Resources/addcondition.bmp -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/Resources/addrule.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/Resources/addrule.bmp -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/Resources/addruletotree.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/Resources/addruletotree.bmp -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/Resources/close_down.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/Resources/close_down.bmp -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/Resources/close_hover.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/Resources/close_hover.bmp -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/Resources/close_normal.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/Resources/close_normal.bmp -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/Resources/modifyaction.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/Resources/modifyaction.bmp -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/Resources/modifycondition.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/Resources/modifycondition.bmp -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/Resources/new.BMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/Resources/new.BMP -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/Resources/open.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/Resources/open.bmp -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/Resources/removeallrules.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/Resources/removeallrules.bmp -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/Resources/removeallsubconditions.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/Resources/removeallsubconditions.bmp -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/Resources/removecondition.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/Resources/removecondition.bmp -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/Resources/removerule.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/Resources/removerule.bmp -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/Resources/resetrootcondition.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/Resources/resetrootcondition.bmp -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/RichTextBoxConditionExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/RichTextBoxConditionExpression.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/RuleForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/RuleForm.Designer.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/RuleForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/RuleForm.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/RuleForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/RuleForm.resx -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/RuleSet2TreeNodeProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/RuleSet2TreeNodeProcessor.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/RuleTreeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/RuleTreeView.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/TlbImpRuleFileEditor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/TlbImpRuleFileEditor.csproj -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/TlbTypeSelectDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/TlbTypeSelectDialog.Designer.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/TlbTypeSelectDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/TlbTypeSelectDialog.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/TlbTypeSelectDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/TlbTypeSelectDialog.resx -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/TreeNodeConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/TreeNodeConstants.cs -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/action.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/action.ico -------------------------------------------------------------------------------- /TlbImp2/TlbImpRuleFileEditor/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TlbImpRuleFileEditor/app.config -------------------------------------------------------------------------------- /TlbImp2/TypeLibraryViewer/ConvCommon2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TypeLibraryViewer/ConvCommon2.cs -------------------------------------------------------------------------------- /TlbImp2/TypeLibraryViewer/DaemonForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TypeLibraryViewer/DaemonForm.Designer.cs -------------------------------------------------------------------------------- /TlbImp2/TypeLibraryViewer/DaemonForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TypeLibraryViewer/DaemonForm.cs -------------------------------------------------------------------------------- /TlbImp2/TypeLibraryViewer/DaemonForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TypeLibraryViewer/DaemonForm.resx -------------------------------------------------------------------------------- /TlbImp2/TypeLibraryViewer/FormDaemon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TypeLibraryViewer/FormDaemon.cs -------------------------------------------------------------------------------- /TlbImp2/TypeLibraryViewer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TypeLibraryViewer/Program.cs -------------------------------------------------------------------------------- /TlbImp2/TypeLibraryViewer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TypeLibraryViewer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TlbImp2/TypeLibraryViewer/TlbTreeView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TypeLibraryViewer/TlbTreeView.cs -------------------------------------------------------------------------------- /TlbImp2/TypeLibraryViewer/TlbTreeView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TypeLibraryViewer/TlbTreeView.resx -------------------------------------------------------------------------------- /TlbImp2/TypeLibraryViewer/TlbTreeViewExceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TypeLibraryViewer/TlbTreeViewExceptions.cs -------------------------------------------------------------------------------- /TlbImp2/TypeLibraryViewer/TypeLib2TreeNodeProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TypeLibraryViewer/TypeLib2TreeNodeProcessor.cs -------------------------------------------------------------------------------- /TlbImp2/TypeLibraryViewer/TypeLibraryTreeView.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TypeLibraryViewer/TypeLibraryTreeView.csproj -------------------------------------------------------------------------------- /TlbImp2/TypeLibraryViewer/TypeLibraryViewer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TypeLibraryViewer/TypeLibraryViewer.Designer.cs -------------------------------------------------------------------------------- /TlbImp2/TypeLibraryViewer/TypeLibraryViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TypeLibraryViewer/TypeLibraryViewer.cs -------------------------------------------------------------------------------- /TlbImp2/TypeLibraryViewer/TypeLibraryViewer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/TypeLibraryViewer/TypeLibraryViewer.resx -------------------------------------------------------------------------------- /TlbImp2/coreRuleEngine/AbstractAtomicCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/coreRuleEngine/AbstractAtomicCondition.cs -------------------------------------------------------------------------------- /TlbImp2/coreRuleEngine/AbstractCompositeCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/coreRuleEngine/AbstractCompositeCondition.cs -------------------------------------------------------------------------------- /TlbImp2/coreRuleEngine/AbstractMultipleCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/coreRuleEngine/AbstractMultipleCondition.cs -------------------------------------------------------------------------------- /TlbImp2/coreRuleEngine/AbstractSingleCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/coreRuleEngine/AbstractSingleCondition.cs -------------------------------------------------------------------------------- /TlbImp2/coreRuleEngine/Action.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/coreRuleEngine/Action.cs -------------------------------------------------------------------------------- /TlbImp2/coreRuleEngine/AndCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/coreRuleEngine/AndCondition.cs -------------------------------------------------------------------------------- /TlbImp2/coreRuleEngine/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/coreRuleEngine/Category.cs -------------------------------------------------------------------------------- /TlbImp2/coreRuleEngine/Condition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/coreRuleEngine/Condition.cs -------------------------------------------------------------------------------- /TlbImp2/coreRuleEngine/CoreRuleEngine.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/coreRuleEngine/CoreRuleEngine.csproj -------------------------------------------------------------------------------- /TlbImp2/coreRuleEngine/IMatchTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/coreRuleEngine/IMatchTarget.cs -------------------------------------------------------------------------------- /TlbImp2/coreRuleEngine/NotCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/coreRuleEngine/NotCondition.cs -------------------------------------------------------------------------------- /TlbImp2/coreRuleEngine/Operator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/coreRuleEngine/Operator.cs -------------------------------------------------------------------------------- /TlbImp2/coreRuleEngine/OrCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/coreRuleEngine/OrCondition.cs -------------------------------------------------------------------------------- /TlbImp2/coreRuleEngine/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/coreRuleEngine/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TlbImp2/coreRuleEngine/Rule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/coreRuleEngine/Rule.cs -------------------------------------------------------------------------------- /TlbImp2/coreRuleEngine/RuleEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/coreRuleEngine/RuleEngine.cs -------------------------------------------------------------------------------- /TlbImp2/coreRuleEngine/RuleEngineExceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/coreRuleEngine/RuleEngineExceptions.cs -------------------------------------------------------------------------------- /TlbImp2/coreRuleEngine/RuleFileConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/coreRuleEngine/RuleFileConstants.cs -------------------------------------------------------------------------------- /TlbImp2/coreRuleEngine/RuleFileParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/coreRuleEngine/RuleFileParser.cs -------------------------------------------------------------------------------- /TlbImp2/coreRuleEngine/RuleFileWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/coreRuleEngine/RuleFileWriter.cs -------------------------------------------------------------------------------- /TlbImp2/coreRuleEngine/RuleSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/coreRuleEngine/RuleSet.cs -------------------------------------------------------------------------------- /TlbImp2/tlbImpRuleEngine/AbstractParentNativeNameCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/tlbImpRuleEngine/AbstractParentNativeNameCondition.cs -------------------------------------------------------------------------------- /TlbImp2/tlbImpRuleEngine/AddAttributeAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/tlbImpRuleEngine/AddAttributeAction.cs -------------------------------------------------------------------------------- /TlbImp2/tlbImpRuleEngine/ChangeManagedNameAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/tlbImpRuleEngine/ChangeManagedNameAction.cs -------------------------------------------------------------------------------- /TlbImp2/tlbImpRuleEngine/ConvertToAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/tlbImpRuleEngine/ConvertToAction.cs -------------------------------------------------------------------------------- /TlbImp2/tlbImpRuleEngine/ConvertToActionConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/tlbImpRuleEngine/ConvertToActionConstants.cs -------------------------------------------------------------------------------- /TlbImp2/tlbImpRuleEngine/FieldInfoMatchTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/tlbImpRuleEngine/FieldInfoMatchTarget.cs -------------------------------------------------------------------------------- /TlbImp2/tlbImpRuleEngine/FunctionInfoMatchTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/tlbImpRuleEngine/FunctionInfoMatchTarget.cs -------------------------------------------------------------------------------- /TlbImp2/tlbImpRuleEngine/GuidCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/tlbImpRuleEngine/GuidCondition.cs -------------------------------------------------------------------------------- /TlbImp2/tlbImpRuleEngine/IGetNativeParentName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/tlbImpRuleEngine/IGetNativeParentName.cs -------------------------------------------------------------------------------- /TlbImp2/tlbImpRuleEngine/ITypeLibElementCommonInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/tlbImpRuleEngine/ITypeLibElementCommonInfo.cs -------------------------------------------------------------------------------- /TlbImp2/tlbImpRuleEngine/NativeNameCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/tlbImpRuleEngine/NativeNameCondition.cs -------------------------------------------------------------------------------- /TlbImp2/tlbImpRuleEngine/NativeParameterIndexCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/tlbImpRuleEngine/NativeParameterIndexCondition.cs -------------------------------------------------------------------------------- /TlbImp2/tlbImpRuleEngine/NativeParentFunctionNameCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/tlbImpRuleEngine/NativeParentFunctionNameCondition.cs -------------------------------------------------------------------------------- /TlbImp2/tlbImpRuleEngine/NativeParentTypeNameCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/tlbImpRuleEngine/NativeParentTypeNameCondition.cs -------------------------------------------------------------------------------- /TlbImp2/tlbImpRuleEngine/NativeSignatureCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/tlbImpRuleEngine/NativeSignatureCondition.cs -------------------------------------------------------------------------------- /TlbImp2/tlbImpRuleEngine/PreserveSigAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/tlbImpRuleEngine/PreserveSigAction.cs -------------------------------------------------------------------------------- /TlbImp2/tlbImpRuleEngine/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/tlbImpRuleEngine/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TlbImp2/tlbImpRuleEngine/ResolveToAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/tlbImpRuleEngine/ResolveToAction.cs -------------------------------------------------------------------------------- /TlbImp2/tlbImpRuleEngine/SignatureInfoMatchTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/tlbImpRuleEngine/SignatureInfoMatchTarget.cs -------------------------------------------------------------------------------- /TlbImp2/tlbImpRuleEngine/TlbImpOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/tlbImpRuleEngine/TlbImpOperator.cs -------------------------------------------------------------------------------- /TlbImp2/tlbImpRuleEngine/TlbImpRuleEngine.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/tlbImpRuleEngine/TlbImpRuleEngine.csproj -------------------------------------------------------------------------------- /TlbImp2/tlbImpRuleEngine/TlbImpRuleEngineExceptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/tlbImpRuleEngine/TlbImpRuleEngineExceptions.cs -------------------------------------------------------------------------------- /TlbImp2/tlbImpRuleEngine/TlbType2String.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/tlbImpRuleEngine/TlbType2String.cs -------------------------------------------------------------------------------- /TlbImp2/tlbImpRuleEngine/TlbimpAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/tlbImpRuleEngine/TlbimpAction.cs -------------------------------------------------------------------------------- /TlbImp2/tlbImpRuleEngine/TlbimpCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/tlbImpRuleEngine/TlbimpCategory.cs -------------------------------------------------------------------------------- /TlbImp2/tlbImpRuleEngine/TlbimpCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/tlbImpRuleEngine/TlbimpCondition.cs -------------------------------------------------------------------------------- /TlbImp2/tlbImpRuleEngine/TypeInfoMatchTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/tlbImpRuleEngine/TypeInfoMatchTarget.cs -------------------------------------------------------------------------------- /TlbImp2/tlbImpRuleEngine/TypeKindCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/tlbImpRuleEngine/TypeKindCondition.cs -------------------------------------------------------------------------------- /TlbImp2/typelibTypes.interop/Daemon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/typelibTypes.interop/Daemon.cs -------------------------------------------------------------------------------- /TlbImp2/typelibTypes.interop/DefaultDaemon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/typelibTypes.interop/DefaultDaemon.cs -------------------------------------------------------------------------------- /TlbImp2/typelibTypes.interop/FuncDesc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/typelibTypes.interop/FuncDesc.cs -------------------------------------------------------------------------------- /TlbImp2/typelibTypes.interop/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/typelibTypes.interop/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TlbImp2/typelibTypes.interop/TypeAttr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/typelibTypes.interop/TypeAttr.cs -------------------------------------------------------------------------------- /TlbImp2/typelibTypes.interop/TypeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/typelibTypes.interop/TypeInfo.cs -------------------------------------------------------------------------------- /TlbImp2/typelibTypes.interop/TypeLib.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/typelibTypes.interop/TypeLib.cs -------------------------------------------------------------------------------- /TlbImp2/typelibTypes.interop/TypeLibAttr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/typelibTypes.interop/TypeLibAttr.cs -------------------------------------------------------------------------------- /TlbImp2/typelibTypes.interop/TypeLibResourceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/typelibTypes.interop/TypeLibResourceManager.cs -------------------------------------------------------------------------------- /TlbImp2/typelibTypes.interop/TypeLibTypes.Interop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/typelibTypes.interop/TypeLibTypes.Interop.csproj -------------------------------------------------------------------------------- /TlbImp2/typelibTypes.interop/TypeLibUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/typelibTypes.interop/TypeLibUtility.cs -------------------------------------------------------------------------------- /TlbImp2/typelibTypes.interop/Types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/typelibTypes.interop/Types.cs -------------------------------------------------------------------------------- /TlbImp2/typelibTypes.interop/VarDesc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thrixton/clrinterop/HEAD/TlbImp2/typelibTypes.interop/VarDesc.cs --------------------------------------------------------------------------------