blob: de6be57ba81bf4a13fde97bb201b9904ceeb9467 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef POPUPS_INFO_H
#define POPUPS_INFO_H
#ifdef __cplusplus
extern "C" {
#endif
#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);
#ifdef __cplusplus
}
#endif
#endif
|