summaryrefslogtreecommitdiff
path: root/rtclient/user.h
diff options
context:
space:
mode:
Diffstat (limited to 'rtclient/user.h')
-rw-r--r--rtclient/user.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/rtclient/user.h b/rtclient/user.h
new file mode 100644
index 0000000..f48162e
--- /dev/null
+++ b/rtclient/user.h
@@ -0,0 +1,33 @@
+#ifndef RTCLIENT_USER_H
+#define RTCLIENT_USER_H
+
+#include <stdbool.h>
+
+struct rt_user {
+ char *id;
+ char *password;
+ char *name;
+ char *emailaddress;
+ char *realname;
+ char *nickname;
+ char *gecos;
+ char *organization;
+ char *address1;
+ char *address2;
+ char *city;
+ char *state;
+ char *zip;
+ char *country;
+ char *homephone;
+ char *workphone;
+ char *mobilephone;
+ char *pagerphone;
+ char *contactinfo;
+ char *comments;
+ char *signature;
+ char lang[2];
+ bool privileged;
+ bool disabled;
+};
+
+#endif // RTCLIENT_USER_H