mydll.vcproj
上传用户:nbcables
上传日期:2007-01-11
资源大小:1243k
文件大小:5k
源码类别:

钩子与API截获

开发平台:

Visual C++

  1. <?xml version="1.0" encoding = "gb2312"?>
  2. <VisualStudioProject
  3. ProjectType="Visual C++"
  4. Version="7.00"
  5. Name="mydll"
  6. SccProjectName=""
  7. SccLocalPath="">
  8. <Platforms>
  9. <Platform
  10. Name="Win32"/>
  11. </Platforms>
  12. <Configurations>
  13. <Configuration
  14. Name="Debug|Win32"
  15. OutputDirectory=".Debug"
  16. IntermediateDirectory=".Debug"
  17. ConfigurationType="2"
  18. UseOfMFC="0"
  19. ATLMinimizesCRunTimeLibraryUsage="FALSE"
  20. CharacterSet="2">
  21. <Tool
  22. Name="VCCLCompilerTool"
  23. Optimization="0"
  24. PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;_USRDLL;MYDLL_EXPORTS"
  25. BasicRuntimeChecks="3"
  26. RuntimeLibrary="1"
  27. UsePrecompiledHeader="3"
  28. PrecompiledHeaderThrough="stdafx.h"
  29. PrecompiledHeaderFile=".Debug/mydll.pch"
  30. AssemblerListingLocation=".Debug/"
  31. ObjectFile=".Debug/"
  32. ProgramDataBaseFileName=".Debug/"
  33. WarningLevel="3"
  34. SuppressStartupBanner="TRUE"
  35. DebugInformationFormat="4"/>
  36. <Tool
  37. Name="VCCustomBuildTool"/>
  38. <Tool
  39. Name="VCLinkerTool"
  40. AdditionalOptions="/MACHINE:I386"
  41. AdditionalDependencies="odbc32.lib odbccp32.lib wsock32.lib netapi32.lib"
  42. OutputFile="..mydll.dll"
  43. Version="1.3"
  44. LinkIncremental="2"
  45. SuppressStartupBanner="TRUE"
  46. ModuleDefinitionFile=".mydll.def"
  47. GenerateDebugInformation="TRUE"
  48. ProgramDatabaseFile=".Debug/mydll.pdb"
  49. ImportLibrary=".Debug/mydll.lib"/>
  50. <Tool
  51. Name="VCMIDLTool"
  52. PreprocessorDefinitions="_DEBUG"
  53. MkTypLibCompatible="TRUE"
  54. SuppressStartupBanner="TRUE"
  55. TargetEnvironment="1"
  56. TypeLibraryName=".Debug/mydll.tlb"/>
  57. <Tool
  58. Name="VCPostBuildEventTool"/>
  59. <Tool
  60. Name="VCPreBuildEventTool"/>
  61. <Tool
  62. Name="VCPreLinkEventTool"/>
  63. <Tool
  64. Name="VCResourceCompilerTool"
  65. PreprocessorDefinitions="_DEBUG"
  66. Culture="2052"/>
  67. <Tool
  68. Name="VCWebServiceProxyGeneratorTool"/>
  69. <Tool
  70. Name="VCWebDeploymentTool"/>
  71. </Configuration>
  72. <Configuration
  73. Name="Release|Win32"
  74. OutputDirectory=".Release"
  75. IntermediateDirectory=".Release"
  76. ConfigurationType="2"
  77. UseOfMFC="0"
  78. ATLMinimizesCRunTimeLibraryUsage="FALSE"
  79. CharacterSet="2">
  80. <Tool
  81. Name="VCCLCompilerTool"
  82. InlineFunctionExpansion="1"
  83. PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;MYDLL_EXPORTS"
  84. StringPooling="TRUE"
  85. RuntimeLibrary="0"
  86. EnableFunctionLevelLinking="TRUE"
  87. UsePrecompiledHeader="3"
  88. PrecompiledHeaderThrough="stdafx.h"
  89. PrecompiledHeaderFile=".Release/mydll.pch"
  90. AssemblerListingLocation=".Release/"
  91. ObjectFile=".Release/"
  92. ProgramDataBaseFileName=".Release/"
  93. BrowseInformation="1"
  94. WarningLevel="3"
  95. SuppressStartupBanner="TRUE"/>
  96. <Tool
  97. Name="VCCustomBuildTool"/>
  98. <Tool
  99. Name="VCLinkerTool"
  100. AdditionalOptions="/MACHINE:I386"
  101. AdditionalDependencies="odbc32.lib odbccp32.lib wsock32.lib netapi32.lib ws2_32.lib"
  102. OutputFile="..mydll.dll"
  103. LinkIncremental="1"
  104. SuppressStartupBanner="TRUE"
  105. ModuleDefinitionFile=".mydll.def"
  106. ProgramDatabaseFile=".Release/mydll.pdb"
  107. ImportLibrary=".Release/mydll.lib"/>
  108. <Tool
  109. Name="VCMIDLTool"
  110. PreprocessorDefinitions="NDEBUG"
  111. MkTypLibCompatible="TRUE"
  112. SuppressStartupBanner="TRUE"
  113. TargetEnvironment="1"
  114. TypeLibraryName=".Release/mydll.tlb"/>
  115. <Tool
  116. Name="VCPostBuildEventTool"/>
  117. <Tool
  118. Name="VCPreBuildEventTool"/>
  119. <Tool
  120. Name="VCPreLinkEventTool"/>
  121. <Tool
  122. Name="VCResourceCompilerTool"
  123. PreprocessorDefinitions="NDEBUG"
  124. Culture="2052"/>
  125. <Tool
  126. Name="VCWebServiceProxyGeneratorTool"/>
  127. <Tool
  128. Name="VCWebDeploymentTool"/>
  129. </Configuration>
  130. </Configurations>
  131. <Files>
  132. <Filter
  133. Name="Source Files"
  134. Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat">
  135. <File
  136. RelativePath="CryptFilter.cpp">
  137. </File>
  138. <File
  139. RelativePath=".StdAfx.cpp">
  140. <FileConfiguration
  141. Name="Debug|Win32">
  142. <Tool
  143. Name="VCCLCompilerTool"
  144. UsePrecompiledHeader="1"/>
  145. </FileConfiguration>
  146. <FileConfiguration
  147. Name="Release|Win32">
  148. <Tool
  149. Name="VCCLCompilerTool"
  150. UsePrecompiledHeader="1"/>
  151. </FileConfiguration>
  152. </File>
  153. <File
  154. RelativePath="big_num.cpp">
  155. </File>
  156. <File
  157. RelativePath=".const.cpp">
  158. </File>
  159. <File
  160. RelativePath=".mydll.cpp">
  161. </File>
  162. <File
  163. RelativePath=".mydll.def">
  164. </File>
  165. <File
  166. RelativePath=".mydll.rc">
  167. </File>
  168. <File
  169. RelativePath="ran_prim.cpp">
  170. </File>
  171. <File
  172. RelativePath="rsa.cpp">
  173. </File>
  174. <File
  175. RelativePath=".util.cpp">
  176. </File>
  177. </Filter>
  178. <Filter
  179. Name="Header Files"
  180. Filter="h;hpp;hxx;hm;inl">
  181. <File
  182. RelativePath=".Mydll.h">
  183. </File>
  184. <File
  185. RelativePath=".StdAfx.h">
  186. </File>
  187. <File
  188. RelativePath=".compress.h">
  189. </File>
  190. <File
  191. RelativePath=".const.h">
  192. </File>
  193. <File
  194. RelativePath=".crypt.h">
  195. </File>
  196. <File
  197. RelativePath=".util.h">
  198. </File>
  199. </Filter>
  200. <Filter
  201. Name="Resource Files"
  202. Filter="ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe">
  203. </Filter>
  204. <File
  205. RelativePath=".ReadMe.txt">
  206. </File>
  207. </Files>
  208. <Globals>
  209. </Globals>
  210. </VisualStudioProject>