File: test_mail_to.c

package info (click to toggle)
modest 3.90.4-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 7,400 kB
  • ctags: 8,562
  • sloc: ansic: 88,775; makefile: 959; xml: 122; sh: 57
file content (29 lines) | stat: -rw-r--r-- 799 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#include <libmodest-dbus-client/libmodest-dbus-client.h>
#include <stdio.h>

int main(int argc, char *argv[])
{
	/* Initialize maemo application */
	osso_context_t * osso_context = osso_initialize(
	    "test_hello", "0.0.1", TRUE, NULL);
	       
	/* Check that initialization was ok */
	if (osso_context == NULL)
	{
		printf("osso_initialize() failed.\n");
	    return OSSO_ERROR;
	}
	
	/* Call the function in libmodest-dbus-client: */
	const gboolean ret = libmodest_dbus_client_mail_to (osso_context,
		"mailto:nomail@nodomain.com?subject=test%20subject%20via%20dbus&body=test%20body%20via%20dbus");
	if (!ret) {
		printf("libmodest_dbus_client_mail_to() failed.\n");
		return OSSO_ERROR;
	} else {
		printf("libmodest_dbus_client_mail_to() succeeded.\n");
	}
		
    /* Exit */
    return 0;
}