mirror of
https://codeberg.org/dnkl/yambar.git
synced 2025-04-20 19:35:44 +02:00
13 lines
284 B
C
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}
|