diff options
author | nobody <nobody@localhost> | 2000-08-22 20:05:30 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 2000-08-22 20:05:30 +0800 |
commit | 91c020e631fd7161e8133774aa38ad3c4fc360be (patch) | |
tree | 3b4824784cd30983db4a6ae1f38db287d5815941 /tests/test12.c | |
parent | 44ae37c371e25fe05e8aee145f1d9af7130a201d (diff) | |
download | gsoc2013-evolution-91c020e631fd7161e8133774aa38ad3c4fc360be.tar gsoc2013-evolution-91c020e631fd7161e8133774aa38ad3c4fc360be.tar.gz gsoc2013-evolution-91c020e631fd7161e8133774aa38ad3c4fc360be.tar.bz2 gsoc2013-evolution-91c020e631fd7161e8133774aa38ad3c4fc360be.tar.lz gsoc2013-evolution-91c020e631fd7161e8133774aa38ad3c4fc360be.tar.xz gsoc2013-evolution-91c020e631fd7161e8133774aa38ad3c4fc360be.tar.zst gsoc2013-evolution-91c020e631fd7161e8133774aa38ad3c4fc360be.zip |
This commit was manufactured by cvs2svn to create tag 'BONOBO_0_24'.BONOBO_0_24
svn path=/tags/BONOBO_0_24/; revision=4924
Diffstat (limited to 'tests/test12.c')
-rw-r--r-- | tests/test12.c | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/tests/test12.c b/tests/test12.c deleted file mode 100644 index 223eb980a8..0000000000 --- a/tests/test12.c +++ /dev/null @@ -1,56 +0,0 @@ -/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ - -#include <stdio.h> - -#include "camel.h" -#include "camel-nntp-store.h" -#include "camel-session.h" -#include "camel-exception.h" - -static char* -authenticator (char *prompt, gboolean secret, CamelService *service, char *item, - CamelException *ex) -{ -} - -static void -print_name(gpointer data, gpointer foo) -{ - printf ("%s\n", (char*)data); -} - -int -main (int argc, char **argv) -{ - CamelSession *session; - CamelException *ex; - CamelStore *store; - CamelFolder *n_p_m_a; - GList *groups; - const gchar *news_url = "news://news.mozilla.org"; - - gtk_init (&argc, &argv); - camel_init (); - ex = camel_exception_new (); - - g_assert (camel_provider_register_as_module ("/usr/local/lib/evolution/camel-providers/0.0.1/libcamelnntp.so")); - - session = camel_session_new (authenticator); - store = camel_session_get_store (session, news_url, ex); - - g_assert (store); - - camel_nntp_store_subscribe_group (store, "netscape.public.mozilla.announce"); - - printf ("subscribed groups on %s\n", news_url); - - groups = camel_nntp_store_list_subscribed_groups (store); - - g_list_foreach(groups, print_name, NULL); - - n_p_m_a = camel_store_get_folder (store, "netscape.public.mozilla.announce", ex); - - camel_folder_open(n_p_m_a, FOLDER_OPEN_READ, ex); - - camel_folder_close(n_p_m_a, FALSE, ex); -} |