Lines Matching defs:rec
123 static Bool found_input_rec (FILE *ifp , file_rec *rec );
138 file_rec rec;
211 while (found_input_rec(ifp,&rec) == True)
217 last_time = (last_time ? last_time : rec.ts); /* first rec */
218 rec.ts = (rec.ts ? rec.ts : last_time); /* dual monitor bug! */
219 t1 = rec.ts; t2 = last_time; /* move to signed variables */
222 last_time = rec.ts;
224 XESimulateXEventRequest(tc, rec.type, rec.detail, rec.x, rec.y,
225 rec.screen);
232 static Bool found_input_rec(FILE *ifp, file_rec *rec)
255 rec->type = tmp[0L];
256 rec->detail = tmp[1L];
257 rec->screen = tmp[2L];
258 rec->x = tmp[3L];
259 rec->y = tmp[4L];
260 rec->ts = tmp[7L];