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>
  • 相关阅读:
    扩展中国剩余定理
    bzoj 3816&&uoj #41. [清华集训2014]矩阵变换
    THUSC2017
    bzoj 4521: [Cqoi2016]手机号码
    bzoj 4871: [Shoi2017]摧毁“树状图”
    bzoj 2300 : [HAOI2011]防线修建
    bzoj 3853 : GCD Array
    HEOI 2017 游记
    bzoj3926: [Zjoi2015]诸神眷顾的幻想乡 广义后缀自动机模板
    bzoj 4310 跳蚤
  • 原文地址:https://www.cnblogs.com/qintangtao/p/2986270.html
Copyright © 2011-2022 走看看