blob: 2c4e83fc28d728992ab28c06ff8d0b35c8d15c5e (
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, uint8_t fg, uint8_t bg);
void info_popupf(struct popup *into, const char *text, uint8_t fg, uint8_t bg, ...);
void info_popupf_v(struct popup *into, const char *text, uint8_t fg, uint8_t bg, va_list args);
#endif
|