544fdaaf8f
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
26 lines
702 B
C
26 lines
702 B
C
/* SPDX-License-Identifier: GPL-2.0
|
|
*
|
|
* Copyright (C) 2018-2021 WireGuard LLC. All Rights Reserved.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <Windows.h>
|
|
#include <SetupAPI.h>
|
|
#include "adapter.h"
|
|
|
|
_Return_type_success_(return != FALSE)
|
|
BOOL
|
|
RemoveInstanceViaRundll32(_In_ HDEVINFO DevInfo, _In_ SP_DEVINFO_DATA *DevInfoData);
|
|
|
|
_Return_type_success_(return != FALSE)
|
|
BOOL
|
|
EnableInstanceViaRundll32(_In_ HDEVINFO DevInfo, _In_ SP_DEVINFO_DATA *DevInfoData);
|
|
|
|
_Return_type_success_(return != FALSE)
|
|
BOOL
|
|
DisableInstanceViaRundll32(_In_ HDEVINFO DevInfo, _In_ SP_DEVINFO_DATA *DevInfoData);
|
|
|
|
_Return_type_success_(return != FALSE)
|
|
BOOL
|
|
CreateInstanceWin7ViaRundll32(_Out_writes_z_(MAX_INSTANCE_ID) LPWSTR InstanceId); |