22 lines
No EOL
463 B
C
22 lines
No EOL
463 B
C
#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 |