Some repositories couldn't be updated, please check application logs for details.
BadCredentialsException: 401 {"message": "Bad credentials", "documentation_url": "https://docs.github.com/rest", "status": "401"}

aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/km/src/minimal/main.c
blob: 69839290c81f387848b7c1b59fe2b61015445a63 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include <ntddk.h>

static void on_driver_unload(DRIVER_OBJECT *driver_object)
{ }

NTSTATUS DriverEntry(
    DRIVER_OBJECT *driver_object,
    UNICODE_STRING *registry_path)
{
    driver_object->DriverUnload = on_driver_unload;
    return STATUS_SUCCESS;
}