├── CppDLL.cpp ├── CppDLL.vcxproj ├── CppDLL_Class.h ├── CppDLL_Resource.cpp ├── CppDLL_Resource.h ├── README.md ├── bin └── CppDLL_x64.exe └── link_140 ├── link.exe ├── msvcp140.dll └── vcruntime140.dll /CppDLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rprop/CppDLL/9d68b708a3d27fbf1b8c6dfda5075e993aea79d8/CppDLL.cpp -------------------------------------------------------------------------------- /CppDLL.vcxproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | Win32 7 | 8 | 9 | Debug 10 | x64 11 | 12 | 13 | Release 14 | Win32 15 | 16 | 17 | Release 18 | x64 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | {88AAAEB1-C26D-4F5A-9529-9350717AC432} 31 | Win32Proj 32 | RLibExamples 33 | CppDLL 34 | 10.0.15063.0 35 | 36 | 37 | 38 | Application 39 | true 40 | Unicode 41 | false 42 | v141 43 | 44 | 45 | Application 46 | true 47 | Unicode 48 | false 49 | v141 50 | 51 | 52 | Application 53 | false 54 | true 55 | Unicode 56 | v141 57 | 58 | 59 | Application 60 | false 61 | true 62 | Unicode 63 | v141 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | AllRules.ruleset 89 | 90 | 91 | 92 | AllRules.ruleset 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | Default 101 | 102 | 103 | Console 104 | false 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | Default 114 | 115 | 116 | Console 117 | false 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | Default 127 | 128 | 129 | Console 130 | 131 | 132 | 133 | 134 | 135 | 136 | Default 137 | 138 | 139 | Console 140 | 141 | 142 | 143 | 144 | 145 | -------------------------------------------------------------------------------- /CppDLL_Class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rprop/CppDLL/9d68b708a3d27fbf1b8c6dfda5075e993aea79d8/CppDLL_Class.h -------------------------------------------------------------------------------- /CppDLL_Resource.h: -------------------------------------------------------------------------------- 1 | /******************************************************************** 2 | Created: 2012/05/27 8:39 3 | Filename: CppDLL_Resource.h 4 | Author: rrrfff 5 | Url: http://blog.csdn.net/rrrfff 6 | *********************************************************************/ 7 | #include 8 | 9 | extern const unsigned char link_exe[332104]; 10 | 11 | extern const unsigned char mspdb100_dll[82768]; 12 | 13 | extern const unsigned char msvcr100_dll[351568]; 14 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rprop/CppDLL/9d68b708a3d27fbf1b8c6dfda5075e993aea79d8/README.md -------------------------------------------------------------------------------- /bin/CppDLL_x64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rprop/CppDLL/9d68b708a3d27fbf1b8c6dfda5075e993aea79d8/bin/CppDLL_x64.exe -------------------------------------------------------------------------------- /link_140/link.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rprop/CppDLL/9d68b708a3d27fbf1b8c6dfda5075e993aea79d8/link_140/link.exe -------------------------------------------------------------------------------- /link_140/msvcp140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rprop/CppDLL/9d68b708a3d27fbf1b8c6dfda5075e993aea79d8/link_140/msvcp140.dll -------------------------------------------------------------------------------- /link_140/vcruntime140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rprop/CppDLL/9d68b708a3d27fbf1b8c6dfda5075e993aea79d8/link_140/vcruntime140.dll --------------------------------------------------------------------------------