~ubuntu-branches/ubuntu/precise/evolution-data-server/precise-proposed

« back to all changes in this revision

Viewing changes to camel/providers/nntp/camel-nntp-store.h

  • Committer: Bazaar Package Importer
  • Author(s): Mathieu Trudel-Lapierre
  • Date: 2011-07-27 11:45:30 UTC
  • mfrom: (1.1.90 upstream)
  • Revision ID: james.westby@ubuntu.com-20110727114530-v4ntbu728os68b0b
Tags: 3.1.4-0ubuntu1
* New upstream version.
* debian/patches/999git_EDS_3_1_3_1_to_f94a069.patch: drop, included in
  the upstream 3.1.4 tarball.

Show diffs side-by-side

added added

removed removed

Lines of Context:
85
85
 
86
86
struct _CamelNNTPStore {
87
87
        CamelDiscoStore parent;
88
 
 
89
88
        CamelNNTPStorePrivate *priv;
90
89
 
91
90
        guint32 extensions;
110
109
 
111
110
struct _CamelNNTPStoreClass {
112
111
        CamelDiscoStoreClass parent_class;
113
 
 
114
112
};
115
113
 
116
 
GType camel_nntp_store_get_type (void);
117
 
 
118
 
gint camel_nntp_raw_commandv (CamelNNTPStore *store, GCancellable *cancellable, GError **error, gchar **line, const gchar *fmt, va_list ap);
119
 
gint camel_nntp_raw_command (CamelNNTPStore *store, GCancellable *cancellable, GError **error, gchar **line, const gchar *fmt, ...);
120
 
gint camel_nntp_raw_command_auth (CamelNNTPStore *store, GCancellable *cancellable, GError **error, gchar **line, const gchar *fmt, ...);
121
 
gint camel_nntp_command (CamelNNTPStore *store, GCancellable *cancellable, GError **error, struct _CamelNNTPFolder *folder, gchar **line, const gchar *fmt, ...);
 
114
GType           camel_nntp_store_get_type       (void);
 
115
gint            camel_nntp_raw_commandv         (CamelNNTPStore *store,
 
116
                                                 GCancellable *cancellable,
 
117
                                                 GError **error,
 
118
                                                 gchar **line,
 
119
                                                 const gchar *fmt,
 
120
                                                 va_list ap);
 
121
gint            camel_nntp_raw_command          (CamelNNTPStore *store,
 
122
                                                 GCancellable *cancellable,
 
123
                                                 GError **error,
 
124
                                                 gchar **line,
 
125
                                                 const gchar *fmt,
 
126
                                                 ...);
 
127
gint            camel_nntp_raw_command_auth     (CamelNNTPStore *store,
 
128
                                                 GCancellable *cancellable,
 
129
                                                 GError **error,
 
130
                                                 gchar **line,
 
131
                                                 const gchar *fmt,
 
132
                                                 ...);
 
133
gint            camel_nntp_command              (CamelNNTPStore *store,
 
134
                                                 GCancellable *cancellable,
 
135
                                                 GError **error,
 
136
                                                 struct _CamelNNTPFolder *folder,
 
137
                                                 gchar **line,
 
138
                                                 const gchar *fmt,
 
139
                                                 ...);
122
140
 
123
141
G_END_DECLS
124
142