mirror of
https://codeberg.org/dnkl/yambar.git
synced 2025-04-21 11:55:42 +02:00
6 lines
213 B
C
6 lines
213 B
C
#pragma once
|
|
#include "../particle.h"
|
|
|
|
struct particle *particle_string_new(
|
|
const char *text, struct font *font, struct rgba foreground,
|
|
int left_margin, int right_margin, const char *on_click_template);
|