2020-07-29 10:10:42 +02:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0
|
|
|
|
*
|
2021-01-30 16:45:26 +01:00
|
|
|
* Copyright (C) 2018-2021 WireGuard LLC. All Rights Reserved.
|
2020-07-29 10:10:42 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <Windows.h>
|
|
|
|
|
|
|
|
_Check_return_
|
2020-11-03 12:29:34 +01:00
|
|
|
_Return_type_success_(return != NULL) HANDLE NamespaceTakePoolMutex(_In_z_ const WCHAR *Pool);
|
2020-11-02 12:07:05 +01:00
|
|
|
|
|
|
|
_Check_return_
|
2020-11-03 12:29:34 +01:00
|
|
|
_Return_type_success_(return != NULL) HANDLE NamespaceTakeDriverInstallationMutex(void);
|
2020-07-29 10:10:42 +02:00
|
|
|
|
|
|
|
void
|
2020-10-15 11:32:06 +02:00
|
|
|
NamespaceReleaseMutex(_In_ HANDLE Mutex);
|
2020-07-29 10:10:42 +02:00
|
|
|
|
|
|
|
void
|
2020-10-30 06:03:21 +01:00
|
|
|
NamespaceInit(void);
|
2020-07-29 10:10:42 +02:00
|
|
|
|
|
|
|
void
|
2020-11-03 12:29:34 +01:00
|
|
|
NamespaceDone(void);
|