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>
22 lines
308 B
C
22 lines
308 B
C
/* SPDX-License-Identifier: GPL-2.0
|
|
*
|
|
* Copyright (C) 2018-2020 WireGuard LLC. All Rights Reserved.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <Windows.h>
|
|
|
|
_Check_return_
|
|
HANDLE
|
|
NamespaceTakeMutex(_In_z_ const WCHAR *Pool);
|
|
|
|
void
|
|
NamespaceReleaseMutex(_In_ HANDLE Mutex);
|
|
|
|
void
|
|
NamespaceInit();
|
|
|
|
void
|
|
NamespaceCleanup();
|