Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.
/ WDKExt Public archive

Windows Driver Kit Extesion Header (Undoc)

License

LGPL-3.0, Unknown licenses found

Licenses found

LGPL-3.0
LICENSE
Unknown
LICENSE.Anti996
Notifications You must be signed in to change notification settings

MiroKaku/WDKExt

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Windows Driver Kit Extesion Header

LICENSE LICENSE

Environment

  • C++17
  • Windows 7 or higher
  • Arch: X86, AMD64

Config

  1. #include <wdk\wdk.h>
  2. Call wdk::WdkInitSystem() in DriverEntry
extern"C" 
auto DriverEntry(PDRIVER_OBJECT aDriverObject, PUNICODE_STRING) -> NTSTATUS
{
    auto vStatus = STATUS_SUCCESS;

    for (;;)
    {
        // Just a chestnut(example)

        vStatus = wdk::WdkInitSystem();
        if (!NT_SUCCESS(vStatus))
        {
            break;
        }

        aDriverObject->DriverUnload = DriverUnload;
        break;
    }
    if (!NT_SUCCESS(vStatus))
    {
        DriverUnload(aDriverObject);
    }
    
    return vStatus;
}

Feature

Undocument struct, function and Tips.

E.g

  • ETHREAD
  • EPROCESS
  • Other ...

Thanks and references

Thanks for the support of these projects

MSDN
ReactOS
ProcessHacker
wbenny/pdbex
wbenny/ntdiff
tandasat/HyperPlatform

About

Windows Driver Kit Extesion Header (Undoc)

Resources

License

LGPL-3.0, Unknown licenses found

Licenses found

LGPL-3.0
LICENSE
Unknown
LICENSE.Anti996

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages