wintun/api/namespace.h
Simon Rozman 16a9737578 api: internal reorganization
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>
2020-10-30 16:51:00 +01:00

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();