home · contact · privacy
Restructured windows into pads that are horizontally scrollable. Also cleaned up...
[plomrogue] / windows.h
index 6ffcb96b37bc2b868adb8795add3e06add04e952..262c17602a6cd47bd3b4905406ec90803cdcf5ab 100644 (file)
--- a/windows.h
+++ b/windows.h
@@ -1,9 +1,12 @@
 struct WinMeta {
+  WINDOW * screen;
+  WINDOW * pad;
+  int pad_offset;
   struct Win * chain_start;
   struct Win * chain_end;
   struct Win * active;
-  int height;
-  int width; };
+  int width;
+  int height; };
 
 struct Win {
   struct Win * prev;