annotate src/text/gftp-text.h @ 951:99f8858bbf02

Updated Occitan translation
author ymarcheg
date Sat, 08 Mar 2008 11:36:14 +0000
parents 77660334b282
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
1 /*****************************************************************************/
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
2 /* gftp-text.h - include file for the gftp text port */
122
76e2b58a9440 2003-4-5 Brian Masney <masneyb@gftp.org>
masneyb
parents: 37
diff changeset
3 /* Copyright (C) 1998-2003 Brian Masney <masneyb@gftp.org> */
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
4 /* */
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
5 /* This program is free software; you can redistribute it and/or modify */
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
6 /* it under the terms of the GNU General Public License as published by */
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
7 /* the Free Software Foundation; either version 2 of the License, or */
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
8 /* (at your option) any later version. */
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
9 /* */
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
10 /* This program is distributed in the hope that it will be useful, */
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
11 /* but WITHOUT ANY WARRANTY; without even the implied warranty of */
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
12 /* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
13 /* GNU General Public License for more details. */
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
14 /* */
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
15 /* You should have received a copy of the GNU General Public License */
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
16 /* along with this program; if not, write to the Free Software */
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
17 /* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
18 /*****************************************************************************/
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
19
33
c8ec7877432e 2002-10-06 Brian Masney <masneyb@gftp.org>
masneyb
parents: 1
diff changeset
20 /* $Id$ */
c8ec7877432e 2002-10-06 Brian Masney <masneyb@gftp.org>
masneyb
parents: 1
diff changeset
21
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
22 #ifndef __GFTP_TEXT_H
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
23 #define __GFTP_TEXT_H
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
24
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
25 #include "../../lib/gftp.h"
341
eedc2c5727fa 2003-12-28 Brian Masney <masneyb@gftp.org>
masneyb
parents: 338
diff changeset
26 #include "../uicommon/gftpui.h"
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
27
234
251845fc1ef1 2003-7-25 Brian Masney <masneyb@gftp.org>
masneyb
parents: 233
diff changeset
28 #if HAVE_LIBREADLINE
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
29 #include <readline/readline.h>
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
30 #include <readline/history.h>
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
31 #endif
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
32
675
84d38c525f46 2005-1-24 Brian Masney <masneyb@gftp.org>
masneyb
parents: 377
diff changeset
33 unsigned int gftp_text_get_win_size ( void );
377
14da115b149b 2003-1-23 Brian Masney <masneyb@gftp.org>
masneyb
parents: 356
diff changeset
34
846
77660334b282 2006-11-2 Brian Masney <masneyb@gftp.org>
masneyb
parents: 675
diff changeset
35 char * gftp_text_ask_question ( gftp_request * request,
77660334b282 2006-11-2 Brian Masney <masneyb@gftp.org>
masneyb
parents: 675
diff changeset
36 const char *question,
356
7cb3327f96f7 2003-1-5 Brian Masney <masneyb@gftp.org>
masneyb
parents: 341
diff changeset
37 int echo,
7cb3327f96f7 2003-1-5 Brian Masney <masneyb@gftp.org>
masneyb
parents: 341
diff changeset
38 char *buf,
7cb3327f96f7 2003-1-5 Brian Masney <masneyb@gftp.org>
masneyb
parents: 341
diff changeset
39 size_t size );
7cb3327f96f7 2003-1-5 Brian Masney <masneyb@gftp.org>
masneyb
parents: 341
diff changeset
40
1
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
41 #endif
8b1883341c6f Initial revision
masneyb
parents:
diff changeset
42