summaryrefslogtreecommitdiffstats
path: root/include/rofi.h
diff options
context:
space:
mode:
authorQC <qball@gmpclient.org>2015-04-16 21:13:45 +0200
committerQC <qball@gmpclient.org>2015-04-16 21:13:45 +0200
commit99118420ea1af1faa0f7790d1a830dcea86e6bd3 (patch)
tree5e73fa565fd97ce619e3470a8e5e26ff9dc2e5c3 /include/rofi.h
parentf64395e4e989830e9a11c72e1447ade32c065e81 (diff)
Support Levenshtein in dmenu.i #149
Diffstat (limited to 'include/rofi.h')
-rw-r--r--include/rofi.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/rofi.h b/include/rofi.h
index 593214f1..8f7ff651 100644
--- a/include/rofi.h
+++ b/include/rofi.h
@@ -91,8 +91,9 @@ typedef int ( *menu_match_cb )( char **tokens, const char *input, int case_sensi
* @returns The command issued (see MenuReturn)
*/
MenuReturn menu ( char **lines, unsigned int num_lines, char **input, char *prompt,
- menu_match_cb mmc, void *mmc_data,
- int *selected_line, int sorting, get_display_value mgrv, void *mgrv_data ) __attribute__ ( ( nonnull ( 1, 3, 4, 7 ) ) );
+ menu_match_cb mmc, void *mmc_data, int *selected_line, int sorting,
+ get_display_value mgrv, void *mgrv_data, int *next_pos ) __attribute__ ( ( nonnull ( 1, 3,
+ 4, 7 ) ) );
/**
* @param sig The caught signal
*