2 * $Id: folder.h 767 2007-10-24 00:03:59Z hubert@u.washington.edu $
4 * ========================================================================
5 * Copyright 2013-2018 Eduardo Chappa
6 * Copyright 2006 University of Washington
8 * Licensed under the Apache License, Version 2.0 (the "License");
9 * you may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
12 * http://www.apache.org/licenses/LICENSE-2.0
14 * ========================================================================
17 #ifndef PINE_FOLDER_INCLUDED
18 #define PINE_FOLDER_INCLUDED
22 #include "../pith/folder.h"
23 #include "../pith/state.h"
24 #include "../pith/conf.h"
27 /* exported protoypes */
28 void folder_screen(struct pine
*);
29 void folder_config_screen(struct pine
*, int);
30 int folders_for_goto(struct pine
*, CONTEXT_S
**, char *, int);
31 int folders_for_save(struct pine
*, CONTEXT_S
**, char *, int);
32 char *folders_for_fcc(char **);
33 char *folder_for_config(int);
34 char *context_edit_screen(struct pine
*, char *, char *, char *, char *, char *);
35 int add_new_folder(CONTEXT_S
*, EditWhich
, int, char *, size_t, MAILSTREAM
*, char *);
36 char *next_folder(MAILSTREAM
**, char *, size_t, char *, CONTEXT_S
*, long *, int *);
37 char *news_group_selector(char **);
38 int fcc_tab_complete(char *, char **, int, unsigned);
40 #endif /* PINE_FOLDER_INCLUDED */