This repository has been archived on 2025-02-27. You can view files and clone it, but cannot push or open issues or pull requests.
portland-os/src/user/include/popups/info.h

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