├── .gitignore ├── ComClient ├── ComClient.cpp ├── ComClient.vcxproj ├── ComClient.vcxproj.filters ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── ComClient_RegFree ├── App.manifest ├── ComClient_RegFree.vcxproj ├── ComClient_RegFree.vcxproj.filters ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── ComInterop.sln ├── ComServer ├── ComServer.X.manifest ├── ComServer.cpp ├── ComServer.h ├── ComServer.vcxproj ├── ComServer.vcxproj.filters ├── Exports.def ├── IServer.idl ├── dllmain.cpp ├── stdafx.cpp └── stdafx.h ├── NetClient ├── App.config ├── NetClient.csproj ├── Program.cs └── Properties │ └── AssemblyInfo.cs ├── NetClient_RegFree ├── App.config ├── App.manifest ├── NetClient_RegFree.csproj └── Properties │ └── AssemblyInfo.cs ├── NetServer ├── NetServer.cs ├── NetServer.csproj ├── NetServer.manifest └── Properties │ └── AssemblyInfo.cs ├── OutOfProcDemo ├── App.config ├── App.manifest ├── OutOfProcDemo.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── RunningObjectTable.cs └── readme.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/COMInterop/HEAD/.gitignore -------------------------------------------------------------------------------- /ComClient/ComClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/COMInterop/HEAD/ComClient/ComClient.cpp -------------------------------------------------------------------------------- /ComClient/ComClient.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/COMInterop/HEAD/ComClient/ComClient.vcxproj -------------------------------------------------------------------------------- /ComClient/ComClient.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/COMInterop/HEAD/ComClient/ComClient.vcxproj.filters -------------------------------------------------------------------------------- /ComClient/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/COMInterop/HEAD/ComClient/stdafx.cpp -------------------------------------------------------------------------------- /ComClient/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/COMInterop/HEAD/ComClient/stdafx.h -------------------------------------------------------------------------------- /ComClient/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/COMInterop/HEAD/ComClient/targetver.h -------------------------------------------------------------------------------- /ComClient_RegFree/App.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/COMInterop/HEAD/ComClient_RegFree/App.manifest -------------------------------------------------------------------------------- /ComClient_RegFree/ComClient_RegFree.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/COMInterop/HEAD/ComClient_RegFree/ComClient_RegFree.vcxproj -------------------------------------------------------------------------------- /ComClient_RegFree/ComClient_RegFree.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/COMInterop/HEAD/ComClient_RegFree/ComClient_RegFree.vcxproj.filters -------------------------------------------------------------------------------- /ComClient_RegFree/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/COMInterop/HEAD/ComClient_RegFree/stdafx.cpp -------------------------------------------------------------------------------- /ComClient_RegFree/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/COMInterop/HEAD/ComClient_RegFree/stdafx.h -------------------------------------------------------------------------------- /ComClient_RegFree/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/COMInterop/HEAD/ComClient_RegFree/targetver.h -------------------------------------------------------------------------------- /ComInterop.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/COMInterop/HEAD/ComInterop.sln -------------------------------------------------------------------------------- /ComServer/ComServer.X.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/COMInterop/HEAD/ComServer/ComServer.X.manifest -------------------------------------------------------------------------------- /ComServer/ComServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/COMInterop/HEAD/ComServer/ComServer.cpp -------------------------------------------------------------------------------- /ComServer/ComServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/COMInterop/HEAD/ComServer/ComServer.h -------------------------------------------------------------------------------- /ComServer/ComServer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/COMInterop/HEAD/ComServer/ComServer.vcxproj -------------------------------------------------------------------------------- /ComServer/ComServer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/COMInterop/HEAD/ComServer/ComServer.vcxproj.filters -------------------------------------------------------------------------------- /ComServer/Exports.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/COMInterop/HEAD/ComServer/Exports.def -------------------------------------------------------------------------------- /ComServer/IServer.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/COMInterop/HEAD/ComServer/IServer.idl -------------------------------------------------------------------------------- /ComServer/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/COMInterop/HEAD/ComServer/dllmain.cpp -------------------------------------------------------------------------------- /ComServer/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/COMInterop/HEAD/ComServer/stdafx.cpp -------------------------------------------------------------------------------- /ComServer/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/COMInterop/HEAD/ComServer/stdafx.h -------------------------------------------------------------------------------- /NetClient/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/COMInterop/HEAD/NetClient/App.config -------------------------------------------------------------------------------- /NetClient/NetClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/COMInterop/HEAD/NetClient/NetClient.csproj -------------------------------------------------------------------------------- /NetClient/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/COMInterop/HEAD/NetClient/Program.cs -------------------------------------------------------------------------------- /NetClient/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/COMInterop/HEAD/NetClient/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /NetClient_RegFree/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/COMInterop/HEAD/NetClient_RegFree/App.config -------------------------------------------------------------------------------- /NetClient_RegFree/App.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/COMInterop/HEAD/NetClient_RegFree/App.manifest -------------------------------------------------------------------------------- /NetClient_RegFree/NetClient_RegFree.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/COMInterop/HEAD/NetClient_RegFree/NetClient_RegFree.csproj -------------------------------------------------------------------------------- /NetClient_RegFree/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/COMInterop/HEAD/NetClient_RegFree/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /NetServer/NetServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/COMInterop/HEAD/NetServer/NetServer.cs -------------------------------------------------------------------------------- /NetServer/NetServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/COMInterop/HEAD/NetServer/NetServer.csproj -------------------------------------------------------------------------------- /NetServer/NetServer.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/COMInterop/HEAD/NetServer/NetServer.manifest -------------------------------------------------------------------------------- /NetServer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/COMInterop/HEAD/NetServer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OutOfProcDemo/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/COMInterop/HEAD/OutOfProcDemo/App.config -------------------------------------------------------------------------------- /OutOfProcDemo/App.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/COMInterop/HEAD/OutOfProcDemo/App.manifest -------------------------------------------------------------------------------- /OutOfProcDemo/OutOfProcDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/COMInterop/HEAD/OutOfProcDemo/OutOfProcDemo.csproj -------------------------------------------------------------------------------- /OutOfProcDemo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/COMInterop/HEAD/OutOfProcDemo/Program.cs -------------------------------------------------------------------------------- /OutOfProcDemo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/COMInterop/HEAD/OutOfProcDemo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OutOfProcDemo/RunningObjectTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/COMInterop/HEAD/OutOfProcDemo/RunningObjectTable.cs -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AaronRobinsonMSFT/COMInterop/HEAD/readme.md --------------------------------------------------------------------------------