summaryrefslogtreecommitdiffstats
path: root/src/account/macros.h
blob: 1e33aa95d05c005ea159db8330e173e3de6edbfc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef MACROS_H
#define MACROS_H

/* Few global names of instances */
#define LAMSNAME "OpenLMI Linux Users Account Management Service"
#define LAMCNAME "OpenLMI Linux Users Account Management Capabilities"
#define LEACNAME "OpenLMI Linux Account Capabilities"

/* Organization ID. Used for InstaceIDs */
#define ORGID "LMI"

/* convert days to microseconds */
#define DAYSTOMS(days) ((days) * 86400000000)
#define MSTODAYS(ms) ((ms) / 86400000000)
#define STOMS(s) ((s) * 1000000)

#endif