ITQueueEvent::get_Queue method (tapi3.h)

The get_Queue method gets a pointer to the queue on which the event occurred.

Syntax

HRESULT get_Queue(
  [out] ITQueue **ppQueue
);

Parameters

[out] ppQueue

Pointer to ITQueue interface on which event occurred.

Return value

This method can return one of these values.

Value Meaning
S_OK
Method succeeded.
E_POINTER
The ppQueue is not a valid pointer.
E_OUTOFMEMORY
Insufficient memory exists to perform the operation.

Remarks

TAPI calls the AddRef method on the ITQueue interface returned by ITQueueEvent::get_Queue. The application must call Release on the ITQueue interface to free resources associated with it.

Requirements

Requirement Value
Target Platform Windows
Header tapi3.h (include Tapi3.h)
Library Uuid.lib
DLL Tapi3.dll

See also

ITQueue

ITQueueEvent