diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2002-08-29 03:02:16 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2002-08-29 03:02:16 +0800 |
commit | f50e61ffab60c4a52664e3507fa489c84c057956 (patch) | |
tree | 8bd2eefbe634948b2e0d44766de57de8de721ea3 /e-util/e-proxy.h | |
parent | a5a141574adca1935f715022ad54aacea2d1bfd4 (diff) | |
download | gsoc2013-evolution-f50e61ffab60c4a52664e3507fa489c84c057956.tar.gz gsoc2013-evolution-f50e61ffab60c4a52664e3507fa489c84c057956.tar.zst gsoc2013-evolution-f50e61ffab60c4a52664e3507fa489c84c057956.zip |
New convenience function to initialise the proxy settings for soup to use.
2002-08-28 Jeffrey Stedfast <fejj@ximian.com>
* e-proxy.[c,h] (e_proxy_init): New convenience function to
initialise the proxy settings for soup to use.
svn path=/trunk/; revision=17896
Diffstat (limited to 'e-util/e-proxy.h')
-rw-r--r-- | e-util/e-proxy.h | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/e-util/e-proxy.h b/e-util/e-proxy.h new file mode 100644 index 0000000000..915592cef1 --- /dev/null +++ b/e-util/e-proxy.h @@ -0,0 +1,38 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ +/* + * Authors: Jeffrey Stedfast <fejj@ximian.com> + * + * Copyright 2002 Ximian, Inc. (www.ximian.com) + * + * This program 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 2 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, write to the Free Software + * Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA. + * + */ + + +#ifndef __E_PROXY_H__ +#define __E_PROXY_H__ + +#ifdef __cplusplus +extern "C" { +#pragma } +#endif /* __cplusplus */ + +void e_proxy_init (void); + +#ifdef __cplusplus +} +#endif /* __cplusplus */ + +#endif /* __E_PROXY_H__ */ |