mouse_list_register

The mouse_list_register function initializes a mouse rectangle structure with the Panel system.

Syntax

mouse_list_register(PMOUSERECT rect, PGAUGEHDR gauge_header)

The mouse_list_register function has these parameters:

Parameter Description
PMOUSERECT rect Pointer to the mouse rectangle structure to register.
PGAUGEHDR gauge_header Pointer to the gauge header.

Example

void install_routine(HINSTANCE resource_file_handle)

{

element_list_install(list, resource_file_handle);

mouse_list_install(mouse_rect, &gauge_header, &background.image_data.final->dim);

mouse_list_register(mouse_rect, &gauge_header);

}