X-Git-Url: https://plomlompom.com/repos/test.html?a=blobdiff_plain;f=src%2Fclient%2Fwindows.h;h=3b272e2812245a1181adb41c990f794dbb1b6dfa;hb=632b6d3e471fcdebbbf0d753a9ae3080b432e626;hp=dd03d8b151138079c0dbd1884c632be391b0d026;hpb=c53b42dfc7e4de104f9189428dd5b9a0d431c00a;p=plomrogue diff --git a/src/client/windows.h b/src/client/windows.h index dd03d8b..3b272e2 100644 --- a/src/client/windows.h +++ b/src/client/windows.h @@ -1,4 +1,8 @@ /* src/client/windows.h + * + * This file is part of PlomRogue. PlomRogue is licensed under the GPL version 3 + * or any later version. For details on its copyright, license, and warranties, + * see the file NOTICE in the root directory of the PlomRogue source package. * * A tiled window manager for the terminal. * @@ -26,11 +30,16 @@ #include /* WINDOW, chtype */ #include /* uint8_t, int16_t, uint16_t, uint32_t */ -#include "../common/yx_uint16.h" /* yx_uint16 struct */ #include "keybindings.h" /* struct KeyBindingDB */ +struct yx_uint16 +{ + uint16_t y; + uint16_t x; +}; + struct WinDB { WINDOW * t_screen; /* ncurses' pointer to the terminal screen */