├── .gitattributes ├── .gitignore ├── Interface └── e │ ├── UseDotNet.ec │ └── interface.e ├── LICENSE ├── UseDotNet.sln └── UseDotNet ├── AssemblyInfo.cpp ├── Stdafx.h ├── UseDotNet.cpp ├── UseDotNet.h ├── UseDotNet.vcxproj └── UseDotNet.vcxproj.filters /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wnxd/UseDotNet/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wnxd/UseDotNet/HEAD/.gitignore -------------------------------------------------------------------------------- /Interface/e/UseDotNet.ec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wnxd/UseDotNet/HEAD/Interface/e/UseDotNet.ec -------------------------------------------------------------------------------- /Interface/e/interface.e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wnxd/UseDotNet/HEAD/Interface/e/interface.e -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wnxd/UseDotNet/HEAD/LICENSE -------------------------------------------------------------------------------- /UseDotNet.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wnxd/UseDotNet/HEAD/UseDotNet.sln -------------------------------------------------------------------------------- /UseDotNet/AssemblyInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wnxd/UseDotNet/HEAD/UseDotNet/AssemblyInfo.cpp -------------------------------------------------------------------------------- /UseDotNet/Stdafx.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | 5 | #define EXPORT extern "C" __declspec(dllexport) -------------------------------------------------------------------------------- /UseDotNet/UseDotNet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wnxd/UseDotNet/HEAD/UseDotNet/UseDotNet.cpp -------------------------------------------------------------------------------- /UseDotNet/UseDotNet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wnxd/UseDotNet/HEAD/UseDotNet/UseDotNet.h -------------------------------------------------------------------------------- /UseDotNet/UseDotNet.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wnxd/UseDotNet/HEAD/UseDotNet/UseDotNet.vcxproj -------------------------------------------------------------------------------- /UseDotNet/UseDotNet.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wnxd/UseDotNet/HEAD/UseDotNet/UseDotNet.vcxproj.filters --------------------------------------------------------------------------------