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>
  • 相关阅读:
    现代3D图形编程学习-关于本书
    极简单之爬虫入门
    前端学HTTP之网络基础
    用canvas 实现个图片三角化(LOW POLY)效果
    移动前端—图片压缩上传实践
    nodejs实现Websocket的数据接收发送
    nodejs学习之实现简易路由
    nodejs学习之实现http数据转发
    canvas粒子demo
    nodejs简易实现一下bigpipe
  • 原文地址:https://www.cnblogs.com/qintangtao/p/2986270.html
Copyright © 2011-2022 走看看