entrance/src/daemon/entrance_history.h

18 lines
359 B
C

#ifndef ENTRANCE_HISTORY_
#define ENTRANCE_HISTORY_
void entrance_history_init();
void entrance_history_shutdown();
void entrance_history_push(const char *login, const char *session);
Eina_List *entrance_history_get();
typedef struct _Entrance_History Entrance_History;
struct _Entrance_History
{
Eina_List *history;
};
#endif /* ENTRANCE_HISTORY_ */