mirror of
https://codeberg.org/dnkl/yambar.git
synced 2025-04-21 20:05:42 +02:00
8 lines
330 B
C
8 lines
330 B
C
#pragma once
|
|
#include "../particle.h"
|
|
|
|
struct particle * particle_progress_bar_new(
|
|
const char *tag, int width,
|
|
struct particle *start_marker, struct particle *end_marker,
|
|
struct particle *fill, struct particle *empty, struct particle *indicator,
|
|
int left_margin, int right_margin, const char *on_click_template);
|