X-Git-Url: http://git.tuebingen.mpg.de/?a=blobdiff_plain;f=interactive.h;h=53b1ad347e6f5b108814e8db309c5434272e9ab7;hb=cdbc8067a2e27ee7f9e0d8ff11cf415603fc0558;hp=96401b16a3a89b68182464622e55b6e629b0bc82;hpb=d1e6b28f66e243516d01916f9125baee75dd98d6;p=paraslash.git diff --git a/interactive.h b/interactive.h index 96401b16..53b1ad34 100644 --- a/interactive.h +++ b/interactive.h @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2011-2014 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2011 Andre Noll , see file COPYING. */ /** \file interactive.h Public API for interactive sessions. */ @@ -33,7 +29,7 @@ struct i9e_completion_result { * * \param name Determines the name of the function to be defined. */ -#define I9E_DUMMY_COMPLETER(name) void name ## _completer( \ +#define I9E_DUMMY_COMPLETER(name) static void name ## _completer( \ __a_unused struct i9e_completion_info *ciname, \ struct i9e_completion_result *result) {result->matches = NULL;} @@ -84,12 +80,11 @@ struct i9e_client_info { int i9e_open(struct i9e_client_info *ici, struct sched *s); void i9e_attach_to_stdout(struct btr_node *producer); -void ie9_print_status_bar(char *buf, unsigned len); +void i9e_print_status_bar(char *buf, unsigned len); void i9e_close(void); void i9e_signal_dispatch(int sig_num); __printf_2_3 void i9e_log(int ll, const char* fmt,...); -int i9e_select(int n, fd_set *readfds, fd_set *writefds, - struct timeval *timeout_tv); +int i9e_poll(struct pollfd *fds, nfds_t nfds, int timeout); int i9e_extract_completions(const char *word, char **string_list, char ***result); char **i9e_complete_commands(const char *word, struct i9e_completer *completers);