summaryrefslogtreecommitdiffstats
path: root/src/account/macros.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/account/macros.h')
-rw-r--r--src/account/macros.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/account/macros.h b/src/account/macros.h
new file mode 100644
index 0000000..5cedfdb
--- /dev/null
+++ b/src/account/macros.h
@@ -0,0 +1,15 @@
+#ifndef MACROS_H
+#define MACROS_H
+
+/* Few global names of instances */
+#define LAMSNAME "Cura Linux Users Account Management Service"
+#define LAMCNAME "Cura Linux Users Account Management Capabilities"
+#define LEACNAME "Cura Linux Account Capabilities"
+
+/* Organization ID. Used for InstaceIDs */
+#define ORGID "Red Hat"
+
+/* convert days to microseconds */
+#define DAYSTOMS(days) ((days) * 86400000000)
+
+#endif