blob: 36d557ad7f21972d08adc1be7ed13c84d96180be (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef POPUPS_INFO_H
#define POPUPS_INFO_H
#include <popups/popup.h>
#include <pland/syscall.h>
#include <stdarg.h>
void info_popup(struct popup *into, const char *text, _pixel_t fg, _pixel_t bg);
void info_popupf(struct popup *into, const char *text, _pixel_t fg, _pixel_t bg, ...);
void info_popupf_v(struct popup *into, const char *text, _pixel_t fg, _pixel_t bg, va_list args);
#endif
|