Não é possível localizar a documentação do Windows DDK

3

Estou procurando a documentação do Windows DDK, mas não consigo encontrá-la em lugar nenhum - nem mesmo no MSDN.

Por exemplo, não consigo encontrar a documentação da função KeGetActiveProcessors para obter uma quantidade de processadores ativos.

    
por J. Doe 02.12.2016 / 08:07

1 resposta

1

Estou procurando a documentação do Windows DDK

O DDK é agora conhecido como WDK. Veja abaixo as instruções para download.

Previously, the WDK was known as Windows Driver Development Kit (DDK) and supported Windows Driver Model (WDM) development. It got its current name when Microsoft released Windows Vista and added the following tools to the kit:

  • Windows Driver Foundation (WDF)
  • Installable File System Kit (IFS Kit)
  • Driver Test Manager (DTM)

Fonte Kit de driver do Windows

A documentação do WDK pode ser baixada em conta do github da Microsoft :

Windows Driver Documentation

Welcome to the Windows driver docs repository, housing the source for the official Windows Driver Kit documentation available on MSDN. Contributing

We actively merge contributions into this repository via pull request into the staging branch (for the public repo) or the master branch (for the private repo).

For more information on contributing, read our contributions guide. Microsoft Code of Conduct

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact [email protected] with any additional questions or comments.

Fonte Documentação do driver do Windows

Kit de driver do Windows (WDK)

Windows Driver Kit (WDK) 10 is integrated with Microsoft Visual Studio 2015 and Debugging Tools for Windows. This integrated environment gives you the tools you need to develop, build, package, deploy, test, and debug drivers. You can run many basic certification tests in the integrated environment. The Windows Driver Kit (WDK) includes templates for several technologies and driver models, including Windows Driver Frameworks (WDF), Universal Serial Bus (USB), print, networking, and file system filters.

How to get WDK 10

Install Visual Studio 2015 with the SDK, and then install WDK 10.

Debugging Tools for Windows is included in WDK 10, so you don't need to download it separately.

Fonte Kit de driver do Windows (WDK)

Estou procurando por KeQueryActiveProcessorCount e KeQueryActiveProcessors

Você pode encontrá-los on-line na documentação do MSDN (Rotinas de Suporte à Biblioteca do Núcleo Central).

por 02.12.2016 / 22:29