diff dep/animia/include/animia.h @ 156:cdf79282d647

dep/animia: add VERY early x11 window stuff
author Paper <mrpapersonic@gmail.com>
date Wed, 15 Nov 2023 18:04:04 -0500
parents 8700806c2cc2
children
line wrap: on
line diff
--- a/dep/animia/include/animia.h	Wed Nov 15 15:24:39 2023 -0500
+++ b/dep/animia/include/animia.h	Wed Nov 15 18:04:04 2023 -0500
@@ -13,22 +13,22 @@
 };
 
 struct Process {
-	internal::pid_t pid = 0;
-	std::string name;
+		internal::pid_t pid = 0;
+		std::string name;
 };
 
 struct Window {
-	unsigned int id = 0;
-	std::string class_name;
-	std::string text; // title bar text
+		unsigned int id = 0;
+		std::string class_name;
+		std::string text; // title bar text
 };
 
 struct Result {
-	ResultType type;
-	Player player;
-	Process process; // unused when using window_title. it's dumb, blame X11
-	Window window; // unused with file descriptors
-	std::vector<Media> media;
+		ResultType type;
+		Player player;
+		Process process; // unused when using window_title. it's dumb, blame X11
+		Window window;   // unused with file descriptors
+		std::vector<Media> media;
 };
 
 bool GetResults(const std::vector<Player>& players, std::vector<Result>& results);