summaryrefslogtreecommitdiff
path: root/includes/interface.h
diff options
context:
space:
mode:
authorSimon <simon@hardwired.org.uk>2010-10-21 22:49:45 (GMT)
committer Simon <simon@hardwired.org.uk>2010-10-21 22:59:56 (GMT)
commitf88bb0f246c7c7130b44d8b4b1b63012fadef94e (patch)
treebb0eaface9db804cdaa31f366e5de497e4402807 /includes/interface.h
parentfdd3d240316086fdfd37840a828dc2111f5c70e2 (diff)
downloadpowder-f88bb0f246c7c7130b44d8b4b1b63012fadef94e.zip
powder-f88bb0f246c7c7130b44d8b4b1b63012fadef94e.tar.gz
Changes for open_ui
Diffstat (limited to 'includes/interface.h')
-rw-r--r--includes/interface.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/includes/interface.h b/includes/interface.h
index a284475..f145543 100644
--- a/includes/interface.h
+++ b/includes/interface.h
@@ -67,9 +67,9 @@ static menu_section msections[] =
struct ui_edit
{
- int x, y, w, nx;
+ int x, y, w, nx, h;
char str[256],*def;
- int focus, cursor, hide;
+ int focus, cursor, hide, multiline;
};
typedef struct ui_edit ui_edit;
@@ -208,5 +208,7 @@ void execute_fav(pixel *vid_buf, char *id);
int execute_vote(pixel *vid_buf, char *id, char *action);
+void open_link(char *uri);
+
#endif