├── MyLoadLibrary ├── MyLoadLibrary.sln └── MyLoadLibrary │ ├── MyLoadLibrary.cpp │ ├── MyLoadLibrary.vcxproj │ ├── MyLoadLibrary.vcxproj.filters │ ├── ReadMe.txt │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h └── README.md /MyLoadLibrary/MyLoadLibrary.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 14 4 | VisualStudioVersion = 14.0.25420.1 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "MyLoadLibrary", "MyLoadLibrary\MyLoadLibrary.vcxproj", "{57AEAF33-DC85-4595-B67A-A3C3884761B5}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|x64 = Debug|x64 11 | Debug|x86 = Debug|x86 12 | Release|x64 = Release|x64 13 | Release|x86 = Release|x86 14 | EndGlobalSection 15 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 16 | {57AEAF33-DC85-4595-B67A-A3C3884761B5}.Debug|x64.ActiveCfg = Debug|x64 17 | {57AEAF33-DC85-4595-B67A-A3C3884761B5}.Debug|x64.Build.0 = Debug|x64 18 | {57AEAF33-DC85-4595-B67A-A3C3884761B5}.Debug|x86.ActiveCfg = Debug|Win32 19 | {57AEAF33-DC85-4595-B67A-A3C3884761B5}.Debug|x86.Build.0 = Debug|Win32 20 | {57AEAF33-DC85-4595-B67A-A3C3884761B5}.Release|x64.ActiveCfg = Release|x64 21 | {57AEAF33-DC85-4595-B67A-A3C3884761B5}.Release|x64.Build.0 = Release|x64 22 | {57AEAF33-DC85-4595-B67A-A3C3884761B5}.Release|x86.ActiveCfg = Release|Win32 23 | {57AEAF33-DC85-4595-B67A-A3C3884761B5}.Release|x86.Build.0 = Release|Win32 24 | EndGlobalSection 25 | GlobalSection(SolutionProperties) = preSolution 26 | HideSolutionNode = FALSE 27 | EndGlobalSection 28 | EndGlobal 29 | -------------------------------------------------------------------------------- /MyLoadLibrary/MyLoadLibrary/MyLoadLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HollyDi/MyLoadLibrary/3fb931aaf5ce4ced8106737d7a0646f2a66c17cb/MyLoadLibrary/MyLoadLibrary/MyLoadLibrary.cpp -------------------------------------------------------------------------------- /MyLoadLibrary/MyLoadLibrary/MyLoadLibrary.vcxproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | Win32 7 | 8 | 9 | Release 10 | Win32 11 | 12 | 13 | Debug 14 | x64 15 | 16 | 17 | Release 18 | x64 19 | 20 | 21 | 22 | {57AEAF33-DC85-4595-B67A-A3C3884761B5} 23 | Win32Proj 24 | MyLoadLibrary 25 | 8.1 26 | 27 | 28 | 29 | Application 30 | true 31 | v140 32 | Unicode 33 | 34 | 35 | Application 36 | false 37 | v140 38 | true 39 | Unicode 40 | 41 | 42 | Application 43 | true 44 | v140 45 | Unicode 46 | 47 | 48 | Application 49 | false 50 | v140 51 | true 52 | Unicode 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | true 74 | 75 | 76 | true 77 | 78 | 79 | false 80 | 81 | 82 | false 83 | 84 | 85 | 86 | 87 | 88 | Level3 89 | Disabled 90 | WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) 91 | 92 | 93 | Console 94 | true 95 | 96 | 97 | 98 | 99 | 100 | 101 | Level3 102 | Disabled 103 | _DEBUG;_CONSOLE;%(PreprocessorDefinitions) 104 | 105 | 106 | Console 107 | true 108 | 109 | 110 | 111 | 112 | Level3 113 | 114 | 115 | MaxSpeed 116 | true 117 | true 118 | WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) 119 | 120 | 121 | Console 122 | true 123 | true 124 | true 125 | 126 | 127 | 128 | 129 | Level3 130 | 131 | 132 | MaxSpeed 133 | true 134 | true 135 | NDEBUG;_CONSOLE;%(PreprocessorDefinitions) 136 | 137 | 138 | Console 139 | true 140 | true 141 | true 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | -------------------------------------------------------------------------------- /MyLoadLibrary/MyLoadLibrary/MyLoadLibrary.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hh;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 头文件 23 | 24 | 25 | 头文件 26 | 27 | 28 | 29 | 30 | 源文件 31 | 32 | 33 | 源文件 34 | 35 | 36 | -------------------------------------------------------------------------------- /MyLoadLibrary/MyLoadLibrary/ReadMe.txt: -------------------------------------------------------------------------------- 1 | ======================================================================== 2 | 控制台应用程序:MyLoadLibrary 项目概述 3 | ======================================================================== 4 | 5 | 应用程序向导已为您创建了此 MyLoadLibrary 应用程序。 6 | 7 | 本文件概要介绍组成 MyLoadLibrary 应用程序的每个文件的内容。 8 | 9 | 10 | MyLoadLibrary.vcxproj 11 | 这是使用应用程序向导生成的 VC++ 项目的主项目文件,其中包含生成该文件的 Visual C++ 的版本信息,以及有关使用应用程序向导选择的平台、配置和项目功能的信息。 12 | 13 | MyLoadLibrary.vcxproj.filters 14 | 这是使用“应用程序向导”生成的 VC++ 项目筛选器文件。它包含有关项目文件与筛选器之间的关联信息。在 IDE 中,通过这种关联,在特定节点下以分组形式显示具有相似扩展名的文件。例如,“.cpp”文件与“源文件”筛选器关联。 15 | 16 | MyLoadLibrary.cpp 17 | 这是主应用程序源文件。 18 | 19 | ///////////////////////////////////////////////////////////////////////////// 20 | 其他标准文件: 21 | 22 | StdAfx.h, StdAfx.cpp 23 | 这些文件用于生成名为 MyLoadLibrary.pch 的预编译头 (PCH) 文件和名为 StdAfx.obj 的预编译类型文件。 24 | 25 | ///////////////////////////////////////////////////////////////////////////// 26 | 其他注释: 27 | 28 | 应用程序向导使用“TODO:”注释来指示应添加或自定义的源代码部分。 29 | 30 | ///////////////////////////////////////////////////////////////////////////// 31 | -------------------------------------------------------------------------------- /MyLoadLibrary/MyLoadLibrary/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HollyDi/MyLoadLibrary/3fb931aaf5ce4ced8106737d7a0646f2a66c17cb/MyLoadLibrary/MyLoadLibrary/stdafx.cpp -------------------------------------------------------------------------------- /MyLoadLibrary/MyLoadLibrary/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HollyDi/MyLoadLibrary/3fb931aaf5ce4ced8106737d7a0646f2a66c17cb/MyLoadLibrary/MyLoadLibrary/stdafx.h -------------------------------------------------------------------------------- /MyLoadLibrary/MyLoadLibrary/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HollyDi/MyLoadLibrary/3fb931aaf5ce4ced8106737d7a0646f2a66c17cb/MyLoadLibrary/MyLoadLibrary/targetver.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # MyLoadLibrary 2 | 自己实现LoadLibrary函数的操作 3 | --------------------------------------------------------------------------------