C++程序  |  50行  |  1.72 KB

/**
 * 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