[amiwm] add some initial comments of structure members.

Still have a long way to go.
This commit is contained in:
Adrian Chadd
2022-03-18 20:56:16 -07:00
parent 64d540a026
commit 6bd141dec1
2 changed files with 20 additions and 0 deletions

View File

@@ -6,6 +6,14 @@
struct _Icon;
struct _Scrn;
/*
* struct _Client - application client information.
*
* @next: next client in list.
* @scr: virtual desktop this client belongs to.
* @colormap: current colormap.
*/
typedef struct _Client {
struct _Client *next;
struct _Scrn *scr;