blob: 3e2cca1458f63cddeb2aec894d730d109095867f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
/**
* This file is part of the mingw-w64 runtime package.
* No warranty is given; refer to the file DISCLAIMER within this package.
*/
#ifndef NAPUTIL_H
#define NAPUTIL_H
#include <winapifamily.h>
#if WINAPI_FAMILY_PARTITION (WINAPI_PARTITION_DESKTOP)
#include "naptypes.h"
#include "napmanagement.h"
#include "napservermanagement.h"
#include "napprotocol.h"
#include "napenforcementclient.h"
#ifdef __cplusplus
extern "C" {
#endif
#ifndef NAPAPI
#define NAPAPI DECLSPEC_IMPORT
#endif
NAPAPI HRESULT WINAPI AllocFixupInfo(FixupInfo **fixupInfo, UINT16 countResultCodes);
NAPAPI HRESULT WINAPI AllocConnections(Connections **connections, UINT16 connectionsCount);
NAPAPI HRESULT WINAPI AllocCountedString(CountedString **countedString, CONST WCHAR *string);
NAPAPI VOID WINAPI FreeFixupInfo(FixupInfo *fixupInfo);
NAPAPI VOID WINAPI FreeConnections(Connections *connections);
NAPAPI VOID WINAPI FreeIsolationInfo(IsolationInfo *isolationInfo);
NAPAPI VOID WINAPI FreeIsolationInfoEx(IsolationInfoEx *isolationInfo);
NAPAPI VOID WINAPI FreeCountedString(CountedString *countedString);
NAPAPI VOID WINAPI FreeSoH(SoH *soh);
NAPAPI VOID WINAPI FreeNetworkSoH(NetworkSoH *networkSoh);
NAPAPI VOID WINAPI FreePrivateData(PrivateData *privateData);
NAPAPI VOID WINAPI FreeSoHAttributeValue(SoHAttributeType type, SoHAttributeValue *value);
NAPAPI VOID WINAPI FreeNapComponentRegistrationInfoArray(UINT16 count, NapComponentRegistrationInfo **info);
NAPAPI VOID WINAPI FreeSystemHealthAgentState(SystemHealthAgentState *state);
NAPAPI HRESULT WINAPI InitializeNapAgentNotifier(NapNotifyType type, HANDLE hNotifyEvent);
NAPAPI VOID WINAPI UninitializeNapAgentNotifier(NapNotifyType type);
#ifdef __cplusplus
}
#endif
#endif
#endif
|