mirror of
https://git.zx2c4.com/wireguard-nt
synced 2024-11-11 11:59:25 +00:00
5030636183
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
35 lines
848 B
C
35 lines
848 B
C
/* SPDX-License-Identifier: GPL-2.0
|
|
*
|
|
* Copyright (C) 2018-2021 WireGuard LLC. All Rights Reserved.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "wireguard.h"
|
|
#include <Windows.h>
|
|
#include <SetupAPI.h>
|
|
|
|
#define WIREGUARD_HWID L"WireGuard"
|
|
|
|
typedef struct _SP_DEVINFO_DATA_LIST SP_DEVINFO_DATA_LIST;
|
|
|
|
VOID
|
|
DriverInstallDeferredCleanup(_In_ HDEVINFO DevInfoExistingAdapters, _In_opt_ SP_DEVINFO_DATA_LIST *ExistingAdapters);
|
|
|
|
_Must_inspect_result_
|
|
_Return_type_success_(return != FALSE)
|
|
BOOL
|
|
DriverInstall(
|
|
_Out_ HDEVINFO *DevInfoExistingAdaptersForCleanup,
|
|
_Out_ SP_DEVINFO_DATA_LIST **ExistingAdaptersForCleanup);
|
|
|
|
/**
|
|
* @copydoc WIREGUARD_DELETE_DRIVER_FUNC
|
|
*/
|
|
WIREGUARD_DELETE_DRIVER_FUNC WireGuardDeleteDriver;
|
|
|
|
/**
|
|
* @copydoc WIREGUARD_GET_RUNNING_DRIVER_VERSION_FUNC
|
|
*/
|
|
WIREGUARD_GET_RUNNING_DRIVER_VERSION_FUNC WireGuardGetRunningDriverVersion;
|