diff options
author | bertrand <Bertrand.Guiheneuf@inria.fr> | 1999-04-26 05:58:27 +0800 |
---|---|---|
committer | Bertrand Guiheneuf <bertrand@src.gnome.org> | 1999-04-26 05:58:27 +0800 |
commit | d224d1aaad9aca13a716278df6f81b96e9d58aea (patch) | |
tree | ec269e529e97d904e3bae5487c7a1d702f2b2cd2 /camel/camel-session.h | |
parent | f9595bb213b103bf071e97ea2f93886767aa7f64 (diff) | |
download | gsoc2013-evolution-d224d1aaad9aca13a716278df6f81b96e9d58aea.tar gsoc2013-evolution-d224d1aaad9aca13a716278df6f81b96e9d58aea.tar.gz gsoc2013-evolution-d224d1aaad9aca13a716278df6f81b96e9d58aea.tar.bz2 gsoc2013-evolution-d224d1aaad9aca13a716278df6f81b96e9d58aea.tar.lz gsoc2013-evolution-d224d1aaad9aca13a716278df6f81b96e9d58aea.tar.xz gsoc2013-evolution-d224d1aaad9aca13a716278df6f81b96e9d58aea.tar.zst gsoc2013-evolution-d224d1aaad9aca13a716278df6f81b96e9d58aea.zip |
initialize folder object.
1999-04-25 bertrand <Bertrand.Guiheneuf@inria.fr>
* camel/camel-session.c (camel_session_get_store_from_provider):
initialize folder object.
* camel/camel-store.c (init): new method.
called by session object at instantiation time.
* camel/camel-store.h (struct _CamelStore):
new fields : session and url_name
svn path=/trunk/; revision=879
Diffstat (limited to 'camel/camel-session.h')
-rw-r--r-- | camel/camel-session.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/camel/camel-session.h b/camel/camel-session.h index d6242182cd..0fb881ea72 100644 --- a/camel/camel-session.h +++ b/camel/camel-session.h @@ -32,7 +32,11 @@ extern "C" { #endif /* __cplusplus }*/ #include <gtk/gtk.h> + +typedef struct _CamelSession CamelSession; + #include "camel-provider.h" +#include "camel-store.h" #define CAMEL_SESSION_TYPE (camel_session_get_type ()) #define CAMEL_SESSION(obj) (GTK_CHECK_CAST((obj), CAMEL_SESSION_TYPE, CamelSession)) @@ -41,7 +45,6 @@ extern "C" { -typedef struct _CamelSession CamelSession; struct _CamelSession { |