MQeFields is the fundamental class used to hold data items for sending, receiving, or manipulating WebSphereMQ Everyplace messages. An MQeFields object is constructed as follows:
* MQeFieldsHndl hNewFields; * MQERETURN rc; * rc = mqeFields_new(&errStruct, &hNewFields); *
There are various put and get functions for storing and retrieving items in/from MQeFields. Items are held in a name, type and value form. The name must conform to the following rules:
Functions | |
MQERETURN | mqeFields_new (MQeExceptBlock *pErrStruct, MQeFieldsHndl *phNewFields) |
This function constructs and initializes an MQeFields structure. | |
MQERETURN | mqeFields_free (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct) |
Frees the MQeFields pointed to by hFields. | |
MQERETURN | mqeFields_contains (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQEBOOL *pContains, MQECONST MQeStringHndl hFieldName) |
This function determines if a field is in this MQeFields structure. | |
MQERETURN | mqeFields_copy (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQECONST MQeFieldsHndl hFrom, MQEBOOL replace, MQECONST MQeStringHndl hFieldName) |
This function copies all hFrom field items (or just hFieldName, if hFieldName is not NULL) to hFields. | |
MQERETURN | mqeFields_clone (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQeFieldsHndl *phToFields) |
This function clones all hFields field entries to *phToFields. | |
MQERETURN | mqeFields_dataLength (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQECONST MQeStringHndl hFieldName, MQEINT32 *pSize) |
This function returns the length (in bytes) of the field element data in hFieldname. | |
MQERETURN | mqeFields_dataType (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQEFIELDTYPE *pType, MQECONST MQeStringHndl hFieldName) |
This function extracts field data type of field hFieldName in hFields. | |
MQERETURN | mqeFields_delete (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQECONST MQeStringHndl hFieldName) |
This function removes a field from hFields. | |
MQERETURN | mqeFields_dump (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQEBYTE *pBytes, MQEINT32 *pSize) |
This function dumps all fields to a byte array ((*pBytes) ). | |
MQERETURN | mqeFields_isEqualTo (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQEBOOL *pEquals, MQECONST MQeFieldsHndl hMatch) |
This function checks if hMatch is equal to hFields. | |
MQERETURN | mqeFields_includes (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQEBOOL *pEquals, MQECONST MQeFieldsHndl hMatch) |
This function checks if hFields contains all fields in hMatch. | |
MQERETURN | mqeFields_dumpToDynBuf (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQeDynamicBufferHndl hOutput) |
This function dumps all fields to a dynamic buffer. If a security attribute has been attached (by calling mqeFields_setAttribute()), the MQeFields item will be encoded using the attribute. | |
MQERETURN | mqeFields_fields (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQeVectorHndl *phVector) |
This function returns the identifiers of all fields in hFields. | |
MQERETURN | mqeFields_setClassName (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQeStringHndl hClassName) |
This function sets or resets the class name in hFields. | |
MQERETURN | mqeFields_getClassName (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQeStringHndl *phClassName) |
This function gets the class name in hFields. | |
MQERETURN | mqeFields_getAscii (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQeStringHndl *phString, MQECONST MQeStringHndl hFieldName) |
This function gets a string field (hFieldName) stored in hFields and returns it as an MQeString. | |
MQERETURN | mqeFields_getAsciiArray (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQeStringHndl *phStrings, MQEINT32 *pArrSize, MQECONST MQeStringHndl hFieldName) |
This function gets an array of string fields (hFieldName) stored in hFields and returns it as an array of MQeString handles. | |
MQERETURN | mqeFields_getUnicode (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQeStringHndl *phString, MQECONST MQeStringHndl hFieldName) |
This function gets a string field (hFieldName) stored in hFields and returns it as a double-byte UNICODE string in MQeString. | |
MQERETURN | mqeFields_getUnicodeArray (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQeStringHndl *phStrings, MQEINT32 *pArrSize, MQECONST MQeStringHndl hFieldName) |
This function gets an array of string fields (hFieldName) stored in hFields and returns it as an array of double-byte Unicode strings. | |
MQERETURN | mqeFields_getAttribute (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQeFieldsAttrHndl *phAttribute) |
This function gets the current attribute setting of hFields. | |
MQERETURN | mqeFields_getBoolean (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQEBOOL *pBool, MQECONST MQeStringHndl hFieldName) |
This function gets a boolean field value in hFields. | |
MQERETURN | mqeFields_getByte (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQEBYTE *pByte, MQECONST MQeStringHndl hFieldName) |
This function gets a byte hFieldName stored in hFields. | |
MQERETURN | mqeFields_getByteArray (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQEBYTE **ppBytes, MQEINT32 *pByteSeqLens, MQEINT32 *pArrLength, MQECONST MQeStringHndl hFieldName) |
This function gets an array of byte sequences hFieldName stored in hFields. | |
MQERETURN | mqeFields_getDouble (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQEDOUBLE *pDouble, MQECONST MQeStringHndl hFieldName) |
This function gets a double hFieldName stored in hFields. | |
MQERETURN | mqeFields_getFields (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQeFieldsHndl *phOutputFields, MQECONST MQeStringHndl hFieldName) |
This function gets fields item hFieldName stored in hFields. | |
MQERETURN | mqeFields_getFieldsArray (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQeFieldsHndl *phOutputFields, MQEINT32 *pArrLength, MQECONST MQeStringHndl hFieldName) |
This function gets an array of fields hFieldName stored in hFields. | |
MQERETURN | mqeFields_getFloat (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQEFLOAT *pFloat, MQECONST MQeStringHndl hFieldName) |
This function gets a float hFieldName stored in hFields. | |
MQERETURN | mqeFields_getInt32 (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQEINT32 *pInt32, MQECONST MQeStringHndl hFieldName) |
This function gets an int32 hFieldName stored in hFields. | |
MQERETURN | mqeFields_getInt64 (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQEINT64 *pInt64, MQECONST MQeStringHndl hFieldName) |
This function gets an int64 hFieldName stored in hFields. | |
MQERETURN | mqeFields_getInt16 (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQEINT16 *pInt16, MQECONST MQeStringHndl hFieldName) |
This function gets an int16 hFieldName stored in hFields. | |
MQERETURN | mqeFields_putAscii (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQECONST MQeStringHndl hFieldName, MQECONST MQeStringHndl hString) |
This function puts an Ascii string (via MQeString) named hFieldName into hFields. | |
MQERETURN | mqeFields_putAsciiArray (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQECONST MQeStringHndl hFieldName, MQECONST MQeStringHndl *phStrings, MQEINT32 arrSize) |
This function puts an array of Ascii strings (via MQeString array) named hFieldName into hFields. | |
MQERETURN | mqeFields_putUnicode (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQECONST MQeStringHndl hFieldName, MQECONST MQeStringHndl hString) |
This function puts a double-byte UNICODE string (terminated by 0x0000) named hFieldName into hFields. | |
MQERETURN | mqeFields_putUnicodeArray (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQECONST MQeStringHndl hFieldName, MQECONST MQeStringHndl *phStrings, MQEINT32 arrSize) |
This function puts an array of double-byte UNICODE strings (via MQeString array) named hFieldName into hFields. | |
MQERETURN | mqeFields_putBoolean (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQECONST MQeStringHndl hFieldName, MQEBOOL b) |
This function puts a boolean field value named hFieldName into hFields. | |
MQERETURN | mqeFields_putByte (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQECONST MQeStringHndl hFieldName, MQEBYTE input) |
This function puts a byte named hFieldName into hFields. | |
MQERETURN | mqeFields_putByteArray (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQECONST MQeStringHndl hFieldName, MQECONST MQEBYTE **ppBytes, MQECONST MQEINT32 *pLenOfByteSeqs, MQEINT32 arrLength) |
This function puts a sequence of bytes named hFieldName into hFields. | |
MQERETURN | mqeFields_putDouble (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQECONST MQeStringHndl hFieldName, MQEDOUBLE input) |
This function puts a double named hFieldName into hFields. | |
MQERETURN | mqeFields_putFloat (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQECONST MQeStringHndl hFieldName, MQEFLOAT input) |
This function puts a float named hFieldName into hFields. | |
MQERETURN | mqeFields_putInt32 (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQECONST MQeStringHndl hFieldName, MQEINT32 input) |
This function puts an int32 named hFieldName into hFields. | |
MQERETURN | mqeFields_putInt64 (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQECONST MQeStringHndl hFieldName, MQEINT64 input) |
This function puts an int64 named hFieldName into hFields. | |
MQERETURN | mqeFields_putInt16 (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQECONST MQeStringHndl hFieldName, MQEINT16 input) |
This function puts an int16 named hFieldName into hFields. | |
MQERETURN | mqeFields_putFields (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQECONST MQeStringHndl hFieldName, MQECONST MQeFieldsHndl hInputFields) |
This function puts an MQeFields named hFieldName into hFields. | |
MQERETURN | mqeFields_putFieldsArray (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQECONST MQeStringHndl hFieldName, MQECONST MQeFieldsHndl *phInputFields, MQEINT32 arrLength) |
This function puts an array of Fields named hFieldName into hFields. | |
MQERETURN | mqeFields_rename (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQECONST MQeStringHndl hOrgName, MQECONST MQeStringHndl hNewName) |
This function renames a field hOrgName stored in hFields to hNewName. | |
MQERETURN | mqeFields_restore (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQEBYTE *pData, MQEINT32 size) |
This function restores a fields item from byte array (*pData). If a security attribute has been attached (by calling mqeFields_setAttribute()), the input bytes will be decoded using the attribute. | |
MQERETURN | mqeFields_setAttribute (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQECONST MQeFieldsAttrHndl hAttribute) |
This function sets the attribute setting of hFields to hAttribute. | |
MQERETURN | mqeFields_getArrayLength (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQEINT32 *pArrLength, MQECONST MQeStringHndl hFieldName) |
This function returns the length (number of array elements) of the array in hFieldname. | |
MQERETURN | mqeFields_putDoubles (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQECONST MQeStringHndl hFieldName, MQECONST MQEDOUBLE *pDoubles, MQEINT32 arrLength, MQEBOOL multiFieldsRep) |
This function puts a sequence of doubles named hFieldName into hFields. | |
MQERETURN | mqeFields_putFloats (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQECONST MQeStringHndl hFieldName, MQECONST MQEFLOAT *pFloats, MQEINT32 arrLength, MQEBOOL multiFieldsRep) |
This function puts a sequence of floats named hFieldName into hFields. | |
MQERETURN | mqeFields_putInt32s (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQECONST MQeStringHndl hFieldName, MQECONST MQEINT32 *pInt32s, MQEINT32 arrLength, MQEBOOL multiFieldsRep) |
This function puts a sequence of int32s named hFieldName into hFields. | |
MQERETURN | mqeFields_putInt64s (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQECONST MQeStringHndl hFieldName, MQECONST MQEINT64 *pInt64s, MQEINT32 arrLength, MQEBOOL multiFieldsRep) |
This function puts a sequence of int64s named hFieldName into hFields. | |
MQERETURN | mqeFields_putInt16s (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQECONST MQeStringHndl hFieldName, MQECONST MQEINT16 *pInt16s, MQEINT32 arrLength, MQEBOOL multiFieldsRep) |
This function puts a sequence of int16s named hFieldName into hFields. | |
MQERETURN | mqeFields_putBytes (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQECONST MQeStringHndl hFieldName, MQECONST MQEBYTE *pBytes, MQEINT32 arrLength) |
This function puts a sequence of bytes named hFieldName into hFields. | |
MQERETURN | mqeFields_getDoubles (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQEDOUBLE *pDoubles, MQEINT32 *pArrLength, MQECONST MQeStringHndl hFieldName) |
This function gets a sequence of doubles hFieldName stored in hFields. | |
MQERETURN | mqeFields_getFloats (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQEFLOAT *pFloats, MQEINT32 *pArrLength, MQECONST MQeStringHndl hFieldName) |
This function gets a sequence of floats hFieldName stored in hFields. | |
MQERETURN | mqeFields_getInt32s (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQEINT32 *pInt32s, MQEINT32 *pArrLength, MQECONST MQeStringHndl hFieldName) |
This function gets a sequence of int32s hFieldName stored in hFields. | |
MQERETURN | mqeFields_getInt64s (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQEINT64 *pInt64s, MQEINT32 *pArrLength, MQECONST MQeStringHndl hFieldName) |
This function gets a sequence of int64s hFieldName stored in hFields. | |
MQERETURN | mqeFields_getInt16s (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQEINT16 *pInt16s, MQEINT32 *pArrLength, MQECONST MQeStringHndl hFieldName) |
This function gets a sequence of int16s hFieldName stored in hFields. | |
MQERETURN | mqeFields_getBytes (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQEBYTE *pBytes, MQEINT32 *pArrLength, MQECONST MQeStringHndl hFieldName) |
This function gets a sequence of bytes hFieldName stored in hFields. | |
MQERETURN | mqeFields_putArrayOfByte (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQECONST MQeStringHndl hFieldName, MQECONST MQEBYTE *pBytes, MQEINT32 arrLength) |
This function puts a sequence of bytes named hFieldName into hFields. | |
MQERETURN | mqeFields_putArrayOfDouble (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQECONST MQeStringHndl hFieldName, MQECONST MQEDOUBLE *pDoubles, MQEINT32 arrLength) |
This function puts a sequence of doubles named hFieldName into hFields. | |
MQERETURN | mqeFields_putArrayOfFloat (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQECONST MQeStringHndl hFieldName, MQECONST MQEFLOAT *pFloats, MQEINT32 arrLength) |
This function puts a sequence of floats named hFieldName into hFields. | |
MQERETURN | mqeFields_putArrayOfInt32 (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQECONST MQeStringHndl hFieldName, MQECONST MQEINT32 *pInt32s, MQEINT32 arrLength) |
This function puts a sequence of int32s named hFieldName into hFields. | |
MQERETURN | mqeFields_putArrayOfInt64 (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQECONST MQeStringHndl hFieldName, MQECONST MQEINT64 *pInt64s, MQEINT32 arrLength) |
This function puts a sequence of int64s named hFieldName into hFields. | |
MQERETURN | mqeFields_putArrayOfInt16 (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQECONST MQeStringHndl hFieldName, MQECONST MQEINT16 *pInt16s, MQEINT32 arrLength) |
This function puts a sequence of int16s named hFieldName into hFields. | |
MQERETURN | mqeFields_getArrayOfByte (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQEBYTE *pBytes, MQEINT32 *pArrLength, MQECONST MQeStringHndl hFieldName) |
This function gets a sequence of bytes hFieldName stored in hFields. | |
MQERETURN | mqeFields_getArrayOfDouble (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQEDOUBLE *pDoubles, MQEINT32 *pArrLength, MQECONST MQeStringHndl hFieldName) |
This function gets a sequence of doubles hFieldName stored in hFields. | |
MQERETURN | mqeFields_getArrayOfFloat (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQEFLOAT *pFloats, MQEINT32 *pArrLength, MQECONST MQeStringHndl hFieldName) |
This function gets a sequence of floats hFieldName stored in hFields. | |
MQERETURN | mqeFields_getArrayOfInt32 (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQEINT32 *pInt32s, MQEINT32 *pArrLength, MQECONST MQeStringHndl hFieldName) |
This function gets a sequence of int32s hFieldName stored in hFields. | |
MQERETURN | mqeFields_getArrayOfInt64 (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQEINT64 *pInt64s, MQEINT32 *pArrLength, MQECONST MQeStringHndl hFieldName) |
This function gets a sequence of int64s hFieldName stored in hFields. | |
MQERETURN | mqeFields_getArrayOfInt16 (MQeFieldsHndl hFields, MQeExceptBlock *pErrStruct, MQEINT16 *pInt16s, MQEINT32 *pArrLength, MQECONST MQeStringHndl hFieldName) |
This function gets a sequence of int16s hFieldName stored in hFields. |
|
This function constructs and initializes an MQeFields structure.
|
|
Frees the MQeFields pointed to by hFields.
|
|
This function determines if a field is in this MQeFields structure.
|
|
This function copies all hFrom field items (or just hFieldName, if hFieldName is not NULL) to hFields.
|
|
This function clones all hFields field entries to *phToFields.
|
|
This function returns the length (in bytes) of the field element data in hFieldname.
|
|
This function extracts field data type of field hFieldName in hFields.
|
|
This function removes a field from hFields.
|
|
This function dumps all fields to a byte array ((*pBytes) ).
|
|
This function checks if hMatch is equal to hFields.
|
|
This function checks if hFields contains all fields in hMatch.
|
|
This function dumps all fields to a dynamic buffer. If a security attribute has been attached (by calling mqeFields_setAttribute()), the MQeFields item will be encoded using the attribute.
|
|
This function returns the identifiers of all fields in hFields.
|
|
This function sets or resets the class name in hFields.
|
|
This function gets the class name in hFields.
|
|
This function gets a string field (hFieldName) stored in hFields and returns it as an MQeString.
|
|
This function gets an array of string fields (hFieldName) stored in hFields and returns it as an array of MQeString handles.
* -------------------- ------------------ --------------------- ------------------- * initial (*pArrSize) initial phStrings returned (*pArrSize) returned phStrings * -------------------- ------------------ --------------------- ------------------- * <= 0 any number of elements in not defined * the array * any NULL ditto ditto * * > 0 != NULL ditto points to the array * of MQeString handles *
|
|
This function gets a string field (hFieldName) stored in hFields and returns it as a double-byte UNICODE string in MQeString.
|
|
This function gets an array of string fields (hFieldName) stored in hFields and returns it as an array of double-byte Unicode strings.
* -------------------- ------------------ --------------------- ------------------- * initial (*pArrSize) initial phStrings returned (*pArrSize) returned phStrings * -------------------- ------------------ --------------------- ------------------- * <= 0 any number of elements in not defined * the array * any NULL ditto ditto * * > 0 != NULL ditto points to the array * of MQeString handles *
|
|
This function gets the current attribute setting of hFields.
|
|
This function gets a boolean field value in hFields.
|
|
This function gets a byte hFieldName stored in hFields.
|
|
This function gets an array of byte sequences hFieldName stored in hFields.
|
|
This function gets a double hFieldName stored in hFields.
|
|
This function gets fields item hFieldName stored in hFields.
|
|
This function gets an array of fields hFieldName stored in hFields.
|
|
This function gets a float hFieldName stored in hFields.
|
|
This function gets an int32 hFieldName stored in hFields.
|
|
This function gets an int64 hFieldName stored in hFields.
|
|
This function gets an int16 hFieldName stored in hFields.
|
|
This function puts an Ascii string (via MQeString) named hFieldName into hFields.
|
|
This function puts an array of Ascii strings (via MQeString array) named hFieldName into hFields.
|
|
This function puts a double-byte UNICODE string (terminated by 0x0000) named hFieldName into hFields.
|
|
This function puts an array of double-byte UNICODE strings (via MQeString array) named hFieldName into hFields.
|
|
This function puts a boolean field value named hFieldName into hFields.
|
|
This function puts a byte named hFieldName into hFields.
|
|
This function puts a sequence of bytes named hFieldName into hFields.
|
|
This function puts a double named hFieldName into hFields.
|
|
This function puts a float named hFieldName into hFields.
|
|
This function puts an int32 named hFieldName into hFields.
|
|
This function puts an int64 named hFieldName into hFields.
|
|
This function puts an int16 named hFieldName into hFields.
|
|
This function puts an MQeFields named hFieldName into hFields.
|
|
This function puts an array of Fields named hFieldName into hFields.
|
|
This function renames a field hOrgName stored in hFields to hNewName.
|
|
This function restores a fields item from byte array (*pData). If a security attribute has been attached (by calling mqeFields_setAttribute()), the input bytes will be decoded using the attribute.
|
|
This function sets the attribute setting of hFields to hAttribute.
|
|
This function returns the length (number of array elements) of the array in hFieldname.
|
|
This function puts a sequence of doubles named hFieldName into hFields.
|
|
This function puts a sequence of floats named hFieldName into hFields.
|
|
This function puts a sequence of int32s named hFieldName into hFields.
|
|
This function puts a sequence of int64s named hFieldName into hFields.
|
|
This function puts a sequence of int16s named hFieldName into hFields.
|
|
This function puts a sequence of bytes named hFieldName into hFields.
|
|
This function gets a sequence of doubles hFieldName stored in hFields.
|
|
This function gets a sequence of floats hFieldName stored in hFields.
|
|
This function gets a sequence of int32s hFieldName stored in hFields.
|
|
This function gets a sequence of int64s hFieldName stored in hFields.
|
|
This function gets a sequence of int16s hFieldName stored in hFields.
|
|
This function gets a sequence of bytes hFieldName stored in hFields.
|
|
This function puts a sequence of bytes named hFieldName into hFields.
|
|
This function puts a sequence of doubles named hFieldName into hFields.
|
|
This function puts a sequence of floats named hFieldName into hFields.
|
|
This function puts a sequence of int32s named hFieldName into hFields.
|
|
This function puts a sequence of int64s named hFieldName into hFields.
|
|
This function puts a sequence of int16s named hFieldName into hFields.
|
|
This function gets a sequence of bytes hFieldName stored in hFields.
|
|
This function gets a sequence of doubles hFieldName stored in hFields.
|
|
This function gets a sequence of floats hFieldName stored in hFields.
|
|
This function gets a sequence of int32s hFieldName stored in hFields.
|
|
This function gets a sequence of int64s hFieldName stored in hFields.
|
|
This function gets a sequence of int16s hFieldName stored in hFields.
|