summaryrefslogtreecommitdiffstats
path: root/sync/src/sync_syncml_item.h
blob: 541c342ad96679d83fba4c3854a62cc81d6db7c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef SYNC_SYNCML_ITEM_H
#define SYNC_SYNCML_ITEM_H

#include <glib.h>
#include "sync_item.h"

typedef enum {
	CONTACTS,
	EVENTS,
	TODO,
	NOTE,
} SyncSyncMLType;

SyncItem *	sync_syncml_item_new	(const gchar	*name,
					 const gchar	*address,
					 SyncSyncMLType	type,
					 const gchar	*username,
					 const gchar	*password,
					 const gchar	*dir);

#endif