mirror of
https://github.com/haiwen/seafile-server.git
synced 2025-06-27 23:46:48 +00:00
20 lines
396 B
C
20 lines
396 B
C
#ifndef HTTP_NOTIFICATION_MGR_H
|
|
#define HTTP_NOTIFICATION_MGR_H
|
|
|
|
struct _NotifManager {
|
|
struct _SeafileSession *seaf;
|
|
|
|
struct _NotifPriv *priv;
|
|
};
|
|
|
|
typedef struct _NotifManager NotifManager;
|
|
|
|
NotifManager *
|
|
seaf_notif_manager_new (struct _SeafileSession *seaf, char *url);
|
|
|
|
void
|
|
seaf_notif_manager_send_event (NotifManager *mgr,
|
|
const char *msg);
|
|
|
|
#endif
|