diff options
author | Benji Dial <benji6283@gmail.com> | 2021-03-05 18:07:48 -0500 |
---|---|---|
committer | Benji Dial <benji6283@gmail.com> | 2021-03-05 18:07:48 -0500 |
commit | 76e39eac8cee2175ec62a191f7c91ca53857e80c (patch) | |
tree | 156946f6e8f491235453aa3cbecfda43d6baa2a7 /src/user/include/popups/info.h | |
parent | 5e5e524f08ad653a7bf5d6e97f3a49f6c27d08fa (diff) | |
download | portland-os-76e39eac8cee2175ec62a191f7c91ca53857e80c.tar.gz |
more raleigh, including button and vbox widgets
Diffstat (limited to 'src/user/include/popups/info.h')
-rw-r--r-- | src/user/include/popups/info.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/user/include/popups/info.h b/src/user/include/popups/info.h index 36d557a..de6be57 100644 --- a/src/user/include/popups/info.h +++ b/src/user/include/popups/info.h @@ -1,6 +1,10 @@ #ifndef POPUPS_INFO_H #define POPUPS_INFO_H +#ifdef __cplusplus +extern "C" { +#endif + #include <popups/popup.h> #include <pland/syscall.h> @@ -11,4 +15,8 @@ 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
\ No newline at end of file |