IMsmMerge::get_Errors method (mergemod.h)

The get_Errors method retrieves the Errors property of the Merge object. This retrieves the current collection of errors.

IMsmMerge2::get_Errors    Mergemod.dll version 2.0 or later.

 
IMsmMerge::get_Errors      All Mergemod.dll versions.

Syntax

HRESULT get_Errors(
  [out] IMsmErrors **Errors
);

Parameters

[out] Errors

Pointer to a memory location containing another pointer to an IMsmErrors interface.

Return value

This method can return one of these values.

Value Meaning
E_INVALIDARG
The Errors pointer is NULL
E_OUTOFMEMORY
The system is out of memory.
S_OK
The function succeeded.

Remarks

The retrieval is non-destructive, meaning that several instances of the error collection may be retrieved by repeatedly calling this method.

If there is an error, the memory location pointed to by Errors is set to NULL.

The client is responsible for releasing the interface returned by this function.

Requirements

Requirement Value
Minimum supported client Mergemod.dll 1.0 or later
Target Platform Windows
Header mergemod.h
DLL Mergemod.dll

See also

Merge Module Automation