aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test7.c
blob: b3e32efb1017c8fe8b1f8edd0e12e9c82856ac31 (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;

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


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

    
    return 1;
}