aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-internet-address.h
diff options
context:
space:
mode:
authornobody <nobody@localhost>2000-11-07 05:40:14 +0800
committernobody <nobody@localhost>2000-11-07 05:40:14 +0800
commit7ff5a358e591e3babf755052f6ea2ef5d849e6a2 (patch)
tree786145ed8b82796d89e41d2ed37058c0097ace13 /camel/camel-internet-address.h
parentb4c61eba8055f666fd8a2270879a6f9722faa2b3 (diff)
downloadgsoc2013-evolution-7ff5a358e591e3babf755052f6ea2ef5d849e6a2.tar
gsoc2013-evolution-7ff5a358e591e3babf755052f6ea2ef5d849e6a2.tar.gz
gsoc2013-evolution-7ff5a358e591e3babf755052f6ea2ef5d849e6a2.tar.bz2
gsoc2013-evolution-7ff5a358e591e3babf755052f6ea2ef5d849e6a2.tar.lz
gsoc2013-evolution-7ff5a358e591e3babf755052f6ea2ef5d849e6a2.tar.xz
gsoc2013-evolution-7ff5a358e591e3babf755052f6ea2ef5d849e6a2.tar.zst
gsoc2013-evolution-7ff5a358e591e3babf755052f6ea2ef5d849e6a2.zip
This commit was manufactured by cvs2svn to create tagBEFORE_UI_REFACTOR
'BEFORE_UI_REFACTOR'. svn path=/tags/BEFORE_UI_REFACTOR/; revision=6432
Diffstat (limited to 'camel/camel-internet-address.h')
-rw-r--r--camel/camel-internet-address.h51
1 files changed, 0 insertions, 51 deletions
diff --git a/camel/camel-internet-address.h b/camel/camel-internet-address.h
deleted file mode 100644
index 6b303eef8f..0000000000
--- a/camel/camel-internet-address.h
+++ /dev/null
@@ -1,51 +0,0 @@
-/*
- * Copyright (C) 2000 Helix Code Inc.
- *
- * Authors: Michael Zucchi <notzed@helixcode.com>
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library 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 Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public
- * License along with this program; if not, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- */
-
-#ifndef _CAMEL_INTERNET_ADDRESS_H
-#define _CAMEL_INTERNET_ADDRESS_H
-
-#include <camel/camel-address.h>
-
-#define CAMEL_INTERNET_ADDRESS(obj) CAMEL_CHECK_CAST (obj, camel_internet_address_get_type (), CamelInternetAddress)
-#define CAMEL_INTERNET_ADDRESS_CLASS(klass) CAMEL_CHECK_CLASS_CAST (klass, camel_internet_address_get_type (), CamelInternetAddressClass)
-#define IS_CAMEL_INTERNET_ADDRESS(obj) CAMEL_CHECK_TYPE (obj, camel_internet_address_get_type ())
-
-typedef struct _CamelInternetAddressClass CamelInternetAddressClass;
-
-struct _CamelInternetAddress {
- CamelAddress parent;
-
- struct _CamelInternetAddressPrivate *priv;
-};
-
-struct _CamelInternetAddressClass {
- CamelAddressClass parent_class;
-};
-
-guint camel_internet_address_get_type (void);
-CamelInternetAddress *camel_internet_address_new (void);
-
-int camel_internet_address_add (CamelInternetAddress *, const char *, const char *);
-gboolean camel_internet_address_get (const CamelInternetAddress *, int, const char **, const char **);
-
-int camel_internet_address_find_name(CamelInternetAddress *, const char *, const char **);
-int camel_internet_address_find_address(CamelInternetAddress *, const char *, const char **);
-
-#endif /* ! _CAMEL_INTERNET_ADDRESS_H */