aboutsummaryrefslogtreecommitdiffstats
path: root/api/nci.h
blob: 5090c903a4414c9b6f8206f591cf767c935ecb77 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* SPDX-License-Identifier: GPL-2.0
 *
 * Copyright (C) 2018-2020 WireGuard LLC. All Rights Reserved.
 */

#pragma once

#include <Windows.h>

extern DWORD(WINAPI *NciSetConnectionName)(_In_ const GUID *Guid, _In_z_ const WCHAR *NewName);

extern DWORD(WINAPI *NciGetConnectionName)(
    _In_ const GUID *Guid,
    _Out_z_bytecap_(InDestNameBytes) WCHAR *Name,
    _In_ DWORD InDestNameBytes,
    _Out_opt_ DWORD *OutDestNameBytes);

void
NciInit();

void
NciCleanup();