summaryrefslogtreecommitdiff
path: root/rtuser.h
diff options
context:
space:
mode:
Diffstat (limited to 'rtuser.h')
-rw-r--r--rtuser.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/rtuser.h b/rtuser.h
new file mode 100644
index 0000000..dff3de0
--- /dev/null
+++ b/rtuser.h
@@ -0,0 +1,28 @@
+#ifndef RTUSER_H
+#define RTUSER_H
+
+typedef struct rt_user {
+ unsigned int id;
+ char *name;
+ char *password;
+ char *authtoken;
+ char *emailaddress;
+ char *organization;
+ char *realname;
+ char *nickname;
+ char *lang;
+ char *gecos;
+ char *homephone;
+ char *workphone;
+ char *mobilephone;
+ char *pagerphone;
+ char *address1;
+ char *address2;
+ char *city;
+ char *state;
+ char *zip;
+ char *country;
+ char *timezone;
+} rt_user;
+
+#endif // RTUSER_H