IRtwqAsyncResult::GetObject method (rtworkq.h)

Returns an object associated with the asynchronous operation. The type of object, if any, depends on the asynchronous method that was called.

Syntax

HRESULT GetObject(
  [out] IUnknown **ppObject
);

Parameters

[out] ppObject

Receives a pointer to the object's IUnknown interface. If no object is associated with the operation, this parameter receives the value NULL. If the value is not NULL, the caller must release the interface.

Return value

The method returns an HRESULT. Possible values include, but are not limited to, those in the following table.

Return code Description
S_OK
The method succeeded.
E_POINTER
There is no object associated with this asynchronous result.

Requirements

Requirement Value
Minimum supported client Windows 8.1 [desktop apps only]
Minimum supported server Windows Server 2012 R2 [desktop apps only]
Target Platform Windows
Header rtworkq.h
Library Rtworkq.lib
DLL RTWorkQ.dll

See also

IRtwqAsyncResult