HashTableGetAttribute
int HashTableGetAttribute (HashTableType table, int attribute, void *value);
Purpose
Obtains the value of a hash table attribute.
Parameters
| Input | ||
| Name | Type | Description |
| table | HashTableType | Hash table to query. |
| attribute | int |
Attribute to obtain. |
| Output | ||
| Name | Type | Description |
| value | void * |
A buffer or variable reference for the attribute value. |
Return Value
| Name | Type | Description |
| status | int |
Returns a value indicating if the function was successful.
A negative number means an error occurred. For a detailed error message, pass the returned value to GetGeneralErrorString. |
Additional Information
Library: Programmer's Toolbox
Include file: toolbox\toolbox.h
LabWindows/CVI compatibility: LabWindows/CVI 8.5 and later
Example
Refer to toolbox\hashtable.cws for an example of using the HashTableGetAttribute function.