16a9737578
Gather adapter management in adapter.h/.c (formerly devmgmt.h/.c) and unify HwID tests. Use "Namespace" namespace in all functions from namespace.h/.c. Fix char strings in LOG_... Signed-off-by: Simon Rozman <simon@rozman.si>
27 lines
560 B
C
27 lines
560 B
C
/* SPDX-License-Identifier: GPL-2.0
|
|
*
|
|
* Copyright (C) 2018-2020 WireGuard LLC. All Rights Reserved.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "api.h"
|
|
#include <Windows.h>
|
|
|
|
#define WINTUN_HWID L"Wintun"
|
|
|
|
BOOL
|
|
DriverIsOurHardwareID(_In_z_ const WCHAR *Hwids);
|
|
|
|
BOOL
|
|
DriverIsOurDrvInfoDetail(_In_ const SP_DRVINFO_DETAIL_DATA_W *DrvInfoDetailData);
|
|
|
|
#if defined(HAVE_EV) || defined(HAVE_WHQL)
|
|
|
|
WINTUN_STATUS DriverGetVersion(_Out_ FILETIME *DriverDate, _Out_ DWORDLONG *DriverVersion);
|
|
|
|
WINTUN_STATUS DriverInstallOrUpdate(VOID);
|
|
|
|
WINTUN_STATUS DriverUninstall(VOID);
|
|
|
|
#endif |