sync.h | sync.h | |||
---|---|---|---|---|
skipping to change at line 203 | skipping to change at line 203 | |||
Display *display; /* Display the event was read from */ | Display *display; /* Display the event was read from */ | |||
XSyncCounter counter; /* counter involved in await */ | XSyncCounter counter; /* counter involved in await */ | |||
XSyncValue wait_value; /* value being waited for */ | XSyncValue wait_value; /* value being waited for */ | |||
XSyncValue counter_value; /* counter value when this event was sent */ | XSyncValue counter_value; /* counter value when this event was sent */ | |||
Time time; /* milliseconds */ | Time time; /* milliseconds */ | |||
int count; /* how many more events to come */ | int count; /* how many more events to come */ | |||
Bool destroyed; /* True if counter was destroyed */ | Bool destroyed; /* True if counter was destroyed */ | |||
} XSyncCounterNotifyEvent; | } XSyncCounterNotifyEvent; | |||
typedef struct { | typedef struct { | |||
int type; /* event base + XSyncCounterNotify */ | int type; /* event base + XSyncAlarmNotify */ | |||
unsigned long serial; /* # of last request processed by server */ | unsigned long serial; /* # of last request processed by server */ | |||
Bool send_event; /* true if this came from a SendEvent reques t */ | Bool send_event; /* true if this came from a SendEvent reques t */ | |||
Display *display; /* Display the event was read from */ | Display *display; /* Display the event was read from */ | |||
XSyncAlarm alarm; /* alarm that triggered */ | XSyncAlarm alarm; /* alarm that triggered */ | |||
XSyncValue counter_value; /* value that triggered the alarm */ | XSyncValue counter_value; /* value that triggered the alarm */ | |||
XSyncValue alarm_value; /* test value of trigger in alarm */ | XSyncValue alarm_value; /* test value of trigger in alarm */ | |||
Time time; /* milliseconds */ | Time time; /* milliseconds */ | |||
XSyncAlarmState state; /* new state of alarm */ | XSyncAlarmState state; /* new state of alarm */ | |||
} XSyncAlarmNotifyEvent; | } XSyncAlarmNotifyEvent; | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||