]> git.sur5r.net Git - i3/i3/blobdiff - include/match.h
Implement assignments for (named) workspaces, with '~' compatibility (floating)
[i3/i3] / include / match.h
index 4f0e9bdc291f3f17df7d9f80dec5dbbf8f355a0f..2786c66a8be7792cd25485f48ca7ea971b8d0667 100644 (file)
@@ -17,15 +17,15 @@ void match_init(Match *match);
 bool match_is_empty(Match *match);
 
 /**
- * Check if a match data structure matches the given window.
+ * Copies the data of a match from src to dest.
  *
  */
-bool match_matches_window(Match *match, i3Window *window);
+void match_copy(Match *dest, Match *src);
 
 /**
- * Returns the first match in 'assignments' that matches the given window.
+ * Check if a match data structure matches the given window.
  *
  */
-Match *match_by_assignment(i3Window *window);
+bool match_matches_window(Match *match, i3Window *window);
 
 #endif