Changeset d3307e2 for storage.h


Ignore:
Timestamp:
2005-12-13T23:07:05Z (18 years ago)
Author:
Jelmer Vernooij <jelmer@…>
Branches:
master
Children:
6aaa221
Parents:
34759e6 (diff), b73ac9c (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge my storage fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • storage.h

    r34759e6 rd3307e2  
    5353} storage_t;
    5454
     55storage_status_t storage_check_pass (const char *nick, const char *password);
     56
     57storage_status_t storage_load (const char *nick, const char *password, irc_t * irc);
     58storage_status_t storage_save (irc_t *irc, int overwrite);
     59storage_status_t storage_remove (const char *nick, const char *password);
     60
     61storage_status_t storage_rename (const char *onick, const char *nnick, const char *password);
     62
    5563void register_storage_backend(storage_t *);
    56 storage_t *storage_init(const char *name);
     64GList *storage_init(const char *primary, char **migrate);
    5765
    5866#endif /* __STORAGE_H__ */
Note: See TracChangeset for help on using the changeset viewer.