forked from ZungBang/undbx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdbxprogress.h
79 lines (61 loc) · 2.45 KB
/
dbxprogress.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/*
UnDBX - Tool to extract e-mail messages from Outlook Express DBX files.
Copyright (C) 2008-2015 Avi Rozen <[email protected]>
DBX file format parsing code is based on DbxConv - a DBX to MBOX
Converter. Copyright (C) 2008, 2009 Ulrich Krebs
RFC-2822 and RFC-2047 parsing code is adapted from GNU Mailutils -
a suite of utilities for electronic mail, Copyright (C) 2002,
2003, 2004, 2005, 2006, 2009, 2010 Free Software Foundation, Inc.
This file is part of UnDBX.
UnDBX is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _DBX_PROGRESS_H_
#define _DBX_PROGRESS_H_
#ifdef __cplusplus
extern "C" {
#endif
typedef enum {
DBX_STATUS_OK,
DBX_STATUS_DELETED,
DBX_STATUS_MOVED,
DBX_STATUS_WARNING,
DBX_STATUS_ERROR,
DBX_STATUS_LAST
} dbx_status_t;
typedef enum {
DBX_VERBOSITY_QUIET,
DBX_VERBOSITY_ERROR,
DBX_VERBOSITY_WARNING,
DBX_VERBOSITY_INFO,
DBX_VERBOSITY_VERBOSE,
DBX_VERBOSITY_DEBUG,
} dbx_verbosity_t;
typedef struct dbx_progress_s *dbx_progress_handle_t;
dbx_progress_handle_t dbx_progress_new(dbx_verbosity_t level);
void dbx_progress_delete(dbx_progress_handle_t handle);
void dbx_progress_push(dbx_progress_handle_t handle,
dbx_verbosity_t level,
unsigned int n,
char *format, ...);
void dbx_progress_pop(dbx_progress_handle_t handle, char *format, ...);
void dbx_progress_update(dbx_progress_handle_t handle,
dbx_status_t status,
unsigned int n,
char *format, ...);
void dbx_progress_message(dbx_progress_handle_t handle,
dbx_status_t status,
char *format, ...);
#ifdef __cplusplus
};
#endif
#endif /* _DBX_PROGRESS_H_ */