yambar/decoration.h
2019-01-13 17:43:25 +01:00

13 lines
284 B
C

#pragma once
#include <cairo.h>
struct deco {
void *private;
void (*expose)(const struct deco *deco, cairo_t *cr,
int x, int y, int width, int height);
void (*destroy)(struct deco *deco);
};
#define DECORATION_COMMON_ATTRS \
{NULL, false, NULL}