Files
amiwm-neo/style.h
2017-03-26 13:00:19 +02:00

17 lines
280 B
C

#ifndef STYLE_H
#define STYLE_H
#include <X11/Xlib.h>
#include "icon.h"
typedef struct _Style {
struct _Style *next;
char *style_class, *style_title, *style_icon_title;
struct IconPixmaps icon_pms;
unsigned int icon_pm_w, icon_pm_h;
char *icon_name;
} Style;
#endif