mirror of
https://codeberg.org/dnkl/yambar.git
synced 2025-04-19 19:25:41 +02:00
14 lines
584 B
C
14 lines
584 B
C
#pragma once
|
|
|
|
#include <pixman.h>
|
|
|
|
struct deco {
|
|
void *private;
|
|
void (*expose)(const struct deco *deco, pixman_image_t *pix, int x, int y, int width, int height);
|
|
void (*destroy)(struct deco *deco);
|
|
};
|
|
|
|
#define DECORATION_COMMON_ATTRS \
|
|
{ \
|
|
NULL, false, NULL \
|
|
}
|