\r\n
51Degrees Device Detection C/C++
4.1
Newer Version 4.4
A device detection library that is used natively or by 51Degrees products
Search
Documentation
date.h
1
/* *********************************************************************
2
* This Original Work is copyright of 51 Degrees Mobile Experts Limited.
3
* Copyright 2019 51 Degrees Mobile Experts Limited, 5 Charlotte Close,
4
* Caversham, Reading, Berkshire, United Kingdom RG4 7BY.
5
*
6
* This Original Work is licensed under the European Union Public Licence (EUPL)
7
* v.1.2 and is subject to its terms as set out below.
8
*
9
* If a copy of the EUPL was not distributed with this file, You can obtain
10
* one at https://opensource.org/licenses/EUPL-1.2.
11
*
12
* The 'Compatible Licences' set out in the Appendix to the EUPL (as may be
13
* amended by the European Commission) shall be deemed incompatible for
14
* the purposes of the Work and the provisions of the compatibility
15
* clause in Article 5 of the EUPL shall not apply.
16
*
17
* If using the Work as, or as part of, a network application, by
18
* including the attribution notice(s) required under Article 5 of the EUPL
19
* in the end user terms of the application under an appropriate heading,
20
* such notice(s) shall fulfill the requirements of that article.
21
* ********************************************************************* */
22
23
#ifndef FIFTYONE_DEGREES_DATE_H_INCLUDED
24
#define FIFTYONE_DEGREES_DATE_H_INCLUDED
25
41
#include <stdint.h>
42
#ifdef _MSC_VER
43
#include <windows.h>
44
#endif
45
46
#include "data.h"
47
53
#pragma pack(push, 1)
54
typedef
struct
fiftyone_degrees_date_t {
55
int16_t
year
;
56
byte
month
;
57
byte
day
;
58
}
fiftyoneDegreesDate
;
59
#pragma pack(pop)
60
65
#endif
fiftyoneDegreesDate
Used to store the date when the dataset was produced and next date 51Degrees expect to provide a new ...
Definition:
date.h:54
fiftyoneDegreesDate::day
byte day
Day of the Month.
Definition:
date.h:57
fiftyoneDegreesDate::month
byte month
Month.
Definition:
date.h:56
fiftyoneDegreesDate::year
int16_t year
Year.
Definition:
date.h:55
Generated by
doxygen
1.8.15