You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
432 B
18 lines
432 B
#ifndef ENTRANCE_HISTORY_ |
|
#define ENTRANCE_HISTORY_ |
|
|
|
void entrance_history_init(void); |
|
void entrance_history_shutdown(void); |
|
void entrance_history_push(const char *login, const char *session); |
|
Eina_List *entrance_history_get(void); |
|
void entrance_history_user_update(const Entrance_Login *el); |
|
|
|
typedef struct _Entrance_History Entrance_History; |
|
|
|
struct _Entrance_History |
|
{ |
|
Eina_List *history; |
|
}; |
|
|
|
|
|
#endif /* ENTRANCE_HISTORY_ */
|
|
|