summaryrefslogtreecommitdiffstatshomepage
path: root/src/wincompat/include/nci.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/wincompat/include/nci.h')
-rw-r--r--src/wincompat/include/nci.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/wincompat/include/nci.h b/src/wincompat/include/nci.h
deleted file mode 100644
index 895e49a..0000000
--- a/src/wincompat/include/nci.h
+++ /dev/null
@@ -1,30 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0
- *
- * Copyright (C) 2018-2021 WireGuard LLC. All Rights Reserved.
- */
-
-#ifndef _NCI_H
-#define _NCI_H
-
-#include <windows.h>
-
-#ifdef GENERATE_LIB
-#define DECLSPEC __declspec(dllexport)
-#define STUB { return 0; }
-#else
-#define DECLSPEC __declspec(dllimport)
-#define STUB ;
-#endif
-
-
-EXTERN_C DECLSPEC DWORD WINAPI
-NciSetConnectionName(const GUID *Guid, const WCHAR *NewName) STUB
-
-EXTERN_C DECLSPEC DWORD WINAPI
-NciGetConnectionName(
- const GUID *Guid,
- WCHAR *Name,
- DWORD InDestNameBytes,
- DWORD *OutDestNameBytes) STUB
-
-#endif