Home | History | Annotate | Download | only in dist

Lines Matching refs:theWindow

204 WriteProxyFileEntry(FILE *proxyFile, WinInfo *theWindow)
206 if (!write_counted_string (proxyFile, theWindow->client_id))
208 if (!write_counted_string (proxyFile, theWindow->class.res_name))
210 if (!write_counted_string (proxyFile, theWindow->class.res_class))
212 if (!write_counted_string (proxyFile, theWindow->wm_name))
215 if (!theWindow->wm_command || theWindow->wm_command_count == 0)
222 if (!write_byte (proxyFile, (char) theWindow->wm_command_count))
224 for (int i = 0; i < theWindow->wm_command_count; i++)
225 if (!write_counted_string (proxyFile, theWindow->wm_command[i]))
446 LookupClientID(WinInfo *theWindow)
455 strcmp (theWindow->class.res_name, ptr->class.res_name) == 0 &&
456 strcmp (theWindow->class.res_class, ptr->class.res_class) == 0 &&
457 strcmp (theWindow->wm_name, ptr->wm_name) == 0)
459 if (theWindow->wm_command_count == ptr->wm_command_count)
463 for (i = 0; i < theWindow->wm_command_count; i++)
464 if (strcmp (theWindow->wm_command[i],
468 if (i == theWindow->wm_command_count)