MQeGetVersion

Description
Get the version number of the WebSphere MQ Everyplace software running on the device.

Syntax
#include <hmq.h> 
MQEINT32 MQeGetVersion ( MQEINT32 * pCompCode, MQEINT32 * pReason);

Parameters

MQEINT32 * pCompCode- output
MQECC_OK, MQECC_WARNING or MQECC_ERROR.

MQEINT32 * pReason - output

Return Value

MQEINT32
Four ASCII character value representing the current version, such as '1.00'.

Example
#include <hmq.h>
MQEINT32  compcode;
MQEINT32  reason;
MQEINT32  version;
 
version = MQeGetVersion(&compcode, &reason);
 


© IBM Corporation 2002. All Rights Reserved