MPCONFIGURATION_DATA structure

Contains data about configuration changes, including the old and new values.

Syntax

typedef struct tagMPCONFIGURATION_DATA {
  MP_MIDL_STRING LPWSTR ConfigurationName;
  DWORD                 DataType;
  DWORD                 PreviousDataSize;
  BYTE                  *pPreviousData;
  DWORD                 CurrentDataSize;
  BYTE                  *pCurrentData;
} MPCONFIGURATION_DATA, *PMPCONFIGURATION_DATA;

Members

ConfigurationName

Type: MP_MIDL_STRING LPWSTR

Name of the configuration that changed.

DataType

Type: DWORD

The type of data used.

PreviousDataSize

Type: DWORD

Size of previous data, in bytes.

pPreviousData

Type: BYTE*

Pointer to previous data.

CurrentDataSize

Type: DWORD

Size of new data, in bytes.

pCurrentData

Type: BYTE*

Pointer to new data.

Requirements

Requirement Value
Minimum supported client
Windows 8 [desktop apps only]
Minimum supported server
Windows Server 2012 [desktop apps only]
Header
MpClient.h