2011-02-12 05:22:29 +00:00
|
|
|
#ifndef _UTMP_H
|
|
|
|
#define _UTMP_H
|
|
|
|
|
2011-02-20 20:06:26 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2011-02-12 05:22:29 +00:00
|
|
|
#include <utmpx.h>
|
|
|
|
|
2012-01-31 19:39:17 +00:00
|
|
|
#define ACCOUNTING 9
|
2012-02-01 19:10:38 +00:00
|
|
|
#define UT_NAMESIZE 32
|
2012-01-31 19:39:17 +00:00
|
|
|
#define UT_HOSTSIZE 256
|
|
|
|
|
2011-02-12 05:22:29 +00:00
|
|
|
#define ut_time ut_tv.tv_sec
|
|
|
|
#define ut_name ut_user
|
|
|
|
#define ut_exit __ut_exit
|
|
|
|
#define e_termination __e_termination
|
|
|
|
#define e_exit __e_exit
|
|
|
|
#define utmp utmpx
|
|
|
|
#define utmpname(x) (-1)
|
|
|
|
|
2011-02-20 20:06:26 +00:00
|
|
|
void endutent(void);
|
|
|
|
struct utmp *getutent(void);
|
|
|
|
struct utmp *getutid(const struct utmp *);
|
|
|
|
struct utmp *getutline(const struct utmp *);
|
|
|
|
struct utmp *pututline(const struct utmp *);
|
|
|
|
void setutent(void);
|
|
|
|
|
2011-03-19 01:52:26 +00:00
|
|
|
void updwtmp(const char *, const struct utmp *);
|
|
|
|
|
2011-02-12 05:22:29 +00:00
|
|
|
#define _PATH_UTMP "/dev/null"
|
|
|
|
#define _PATH_WTMP "/dev/null"
|
|
|
|
|
2011-02-20 20:06:26 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2011-02-12 05:22:29 +00:00
|
|
|
#endif
|