MQCOLUMNSET

The MQCOLUMNSET structure specifies the number of queue properties to be retrieved from each queue and their property identifiers. You can specify any number of queue properties, from a single queue property to all the properties provided by MSMQ. MSMQ can return any number of queue properties to the single query.

typedef struct  tagMQCOLUMNSET
{
    ULONG              cCol;
    PROPID _RPC_FAR   *aCol;
}   MQCOLUMNSET;
 

Members

cCol
Number of properties to be retrieved.
*aCol
An array of property identifiers (for example, PROPID_Q_PATHNAME, PROPID_Q_INSTANCE, and so on).

See Also

MQLocateBegin


© 1997 by Microsoft Corporation. All rights reserved.