entrance/src/daemon/entrance_history.h

20 lines
497 B
C
Raw Normal View History

#ifndef ENTRANCE_HISTORY_
#define ENTRANCE_HISTORY_
2014-01-08 15:04:44 -08:00
void entrance_history_init(void);
void entrance_history_shutdown(void);
void entrance_history_push(const char *login, const char *session);
2014-01-08 15:04:44 -08:00
Eina_List *entrance_history_get(void);
2014-01-09 15:10:30 -08:00
void entrance_history_user_update(const Entrance_Login *el);
const char *entrance_history_user_session_get(const char *user);
typedef struct _Entrance_History Entrance_History;
struct _Entrance_History
{
Eina_List *history;
};
#endif /* ENTRANCE_HISTORY_ */