summaryrefslogtreecommitdiff
path: root/support/dktools/dk4timec.h
blob: a66b1b155cc9d628369040e0aa14bdc49bdf1b06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*
Copyright 2020, Dirk Krause. All rights reserved.
SPDX-License-Identifier:	BSD-3-Clause
*/

#ifndef DK4TIMEC_H_INCLUDED
/** Protection against multiple inclusions */
#define	DK4TIMEC_H_INCLUDED 1

/**	@file	dk4timec.h	Date/time formats.
*/

/**	Date/time formats.
*/
enum {
				/**	Complete date and time sortabel,
					yyyy-mm-dd hh:mm:ss
				*/
  DK4_TIMEFORMAT_DATE_TIME	= 1,

				/**	Date in sortable format,
					yyyy-mm-dd
				*/
  DK4_TIMEFORMAT_DATE_SORTABLE ,

				/**	English/american date format,
					mm/dd/yyyy
				*/
  DK4_TIMEFORMAT_DATE_ENGLISH ,

				/**	German date format
					dd.mm.yyyy
				*/
  DK4_TIMEFORMAT_DATE_GERMAN
};

#endif