The element_install function installs a single drawing element; the element_list_install function installs all elements in the element list.
Syntax
element_install(PELEMENT_HEADER element, HINSTANCE resource_file_handle)
element_list_install(PELEMENT_HEADER element, HINSTANCE resource_file_handle)
The element_install and element_list_install functions have these parameters:
Parameter | Description |
PELEMENT_HEADER | |
element | Pointer to one or more elements to initialize. |
HINSTANCE | |
resource_file_handle | Specifies the instance handle of the gauge DLL. |
Example
void install_routine(HINSTANCE resource_file_handle)
{
element_list_install(list, resource_file_handle);
}