|
||
int get_event_info ( SS_EVENT *event );
SS_EVENT *event; // address of a SilverScreen event structure
|
|
|||||||||||
Synopsis |
#include "silver.h"
The get_event_info function is used to return information about various SilverScreen events that may not be contained in the return value from inchar. The event information is returned in the SS_EVENT structure pointed to by event. The id, flags, mouse_x and mouse_y fields of the SS_EVENT structure are always filled after inchar. Other fields are filled only on certain events:
|
|
||||||||||
Parameters |
event is the address of an SS_EVENT structure used to receive the event information.
|
|
||||||||||
Return Value |
get_event_info returns 0 always.
|
|
||||||||||
Comments |
The event information is only valid after a call to inchar, event information returned after a call to nextkey will not be reliable.
|
|
||||||||||
See Also |
|
|||||||||||
|
|