aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test7.c
blob: aaf256f64bc3457b9356147a1f1c56909b0ed1c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */

/* test provider stuff */


#include "camel.h"


int
main (int argc, char**argv)
{
    const CamelProvider *new_provider;

    camel_debug_level = CAMEL_LOG_LEVEL_FULL_DEBUG;

    gtk_init (&argc, &argv);
    camel_init ();


    new_provider = camel_provider_register_as_module ("../camel/providers/MH/.libs/libcamelmh.so");
    
}