diff options
| author | Marc André Tanner <mat@brain-dump.org> | 2015-04-07 13:05:18 +0200 |
|---|---|---|
| committer | Marc André Tanner <mat@brain-dump.org> | 2015-04-07 13:09:25 +0200 |
| commit | 515c3e272950e88be6e6d24b147d3f82ffb2d99a (patch) | |
| tree | f7a8ae1fcffec06563c75ecdbab7b38beffe62b5 /ui.h | |
| parent | e0b0042619a0857c57b049dcc0d7e590a0fc0d2c (diff) | |
| download | vis-515c3e272950e88be6e6d24b147d3f82ffb2d99a.tar.gz vis-515c3e272950e88be6e6d24b147d3f82ffb2d99a.tar.xz | |
Set '< and '> marks
Diffstat (limited to 'ui.h')
| -rw-r--r-- | ui.h | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -26,10 +26,10 @@ struct Ui { void (*free)(Ui*); short (*color_get)(short fg, short bg); void (*resize)(Ui*); - UiWin* (*window_new)(Ui*, Text*); + UiWin* (*window_new)(Ui*, Win*, Text*); void (*window_free)(UiWin*); void (*window_focus)(UiWin*); - UiWin* (*prompt_new)(Ui*, Text*); + UiWin* (*prompt_new)(Ui*, Win*, Text*); void (*prompt)(Ui*, const char *title, const char *value); char* (*prompt_input)(Ui*); void (*prompt_hide)(Ui*); @@ -53,7 +53,6 @@ struct UiWin { void (*cursor_to)(UiWin*, int x, int y); void (*reload)(UiWin*, Text*); void (*options)(UiWin*, enum UiOption); - Win* (*view_get)(UiWin*); }; #endif |
