#ifndef SYNC_SYNCML_ITEM_H #define SYNC_SYNCML_ITEM_H #include #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