zoukankan      html  css  js  c++  java
  • VS2010驱动开发属性表配置 driverpropertyt.props

    <?xml version="1.0" encoding="utf-8"?>
    <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
      <ImportGroup Label="PropertySheets" />
      <PropertyGroup Label="UserMacros" />
      <PropertyGroup>
        <GenerateManifest>false</GenerateManifest>
        <TargetExt>.sys</TargetExt>
        <TargetName>$(ProjectName)</TargetName>
      </PropertyGroup>
      <ItemDefinitionGroup>
        <ClCompile>
          <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
          <PreprocessorDefinitions>WIN32=100;_X86_=1;WINVER=0X500;DBG=1;%(PreprocessorDefinitions)</PreprocessorDefinitions>
          <ExceptionHandling>false</ExceptionHandling>
          <BasicRuntimeChecks>Default</BasicRuntimeChecks>
          <BufferSecurityCheck>false</BufferSecurityCheck>
          <CallingConvention>StdCall</CallingConvention>
          <CompileAs>CompileAsCpp</CompileAs>
        </ClCompile>
        <Link>
          <OutputFile>$(OutDir)$(ProjectName).sys</OutputFile>
          <AdditionalDependencies>ntoskrnl.lib;Hal.lib;wdm.lib;wdmsec.lib;wmilib.lib;ndis.lib;MSVCRT.LIB;LIBCMT.LIB;%(AdditionalDependencies)</AdditionalDependencies>
          <IgnoreAllDefaultLibraries>true</IgnoreAllDefaultLibraries>
          <SubSystem>Native</SubSystem>
          <Driver>Driver</Driver>
          <EntryPointSymbol>DriverEntry</EntryPointSymbol>
          <BaseAddress>0x10000</BaseAddress>
          <RandomizedBaseAddress>
          </RandomizedBaseAddress>
          <DataExecutionPrevention>
          </DataExecutionPrevention>
        </Link>
      </ItemDefinitionGroup>
      <ItemGroup />
    </Project>
  • 相关阅读:
    浏览器缓存机制
    es6笔记(6) Iterator 和 for...of循环
    es6笔记(3.1)三个点的“...”的作用
    es6笔记(5)Map数据结构
    es6笔记(4) Set数据结构
    SpringBoot事件监听
    SpringBoot入门
    五大常用算法之三贪心算法
    五种常用算法之二:动态规划算法
    五大常用算法之一:分治算法
  • 原文地址:https://www.cnblogs.com/qintangtao/p/2986270.html
Copyright © 2011-2022 走看看