\r\n

51Degrees Device Detection C/C++  4.5

A device detection library that is used natively or by 51Degrees products

/home/runner/work/device-detection-cxx/device-detection-cxx/common/device-detection-cxx/src/common-cxx/storedBinaryValue.h

Structure containing raw bytes and size from data files.String: Short – length – 10 Byte value – first character of string – '5'

/* *********************************************************************
* This Original Work is copyright of 51 Degrees Mobile Experts Limited.
* Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House,
* Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU.
*
* This Original Work is licensed under the European Union Public Licence
* (EUPL) v.1.2 and is subject to its terms as set out below.
*
* If a copy of the EUPL was not distributed with this file, You can obtain
* one at https://opensource.org/licenses/EUPL-1.2.
*
* The 'Compatible Licences' set out in the Appendix to the EUPL (as may be
* amended by the European Commission) shall be deemed incompatible for
* the purposes of the Work and the provisions of the compatibility
* clause in Article 5 of the EUPL shall not apply.
*
* If using the Work as, or as part of, a network application, by
* including the attribution notice(s) required under Article 5 of the EUPL
* in the end user terms of the application under an appropriate heading,
* such notice(s) shall fulfill the requirements of that article.
* ********************************************************************* */
#ifndef FIFTYONE_DEGREES_STORED_BINARY_VALUE_H_INCLUDED
#define FIFTYONE_DEGREES_STORED_BINARY_VALUE_H_INCLUDED
#include <stdint.h>
#include <ctype.h>
#include "exceptions.h"
#include "collection.h"
#include "float.h"
#include "common.h"
#include "ip.h"
#include "propertyValueType.h"
#include "string.h"
#pragma pack(push, 1)
typedef struct fiftyone_degrees_var_length_byte_array_t {
int16_t size;
unsigned char firstByte;
#pragma pack(pop)
#pragma pack(push, 1)
typedef union fiftyone_degrees_stored_binary_value_t {
fiftyoneDegreesString stringValue;
fiftyoneDegreesFloat floatValue;
int32_t intValue;
int16_t shortValue;
byte byteValue;
#pragma pack(pop)
#ifndef FIFTYONE_DEGREES_MEMORY_ONLY
#endif
const fiftyoneDegreesCollection *strings,
uint32_t offset,
fiftyoneDegreesPropertyValueType storedValueType,
fiftyoneDegreesPropertyValueType storedValueType,
const char *target,
fiftyoneDegreesPropertyValueType storedValueType,
int defaultValue);
fiftyoneDegreesPropertyValueType storedValueType,
double defaultValue);
fiftyoneDegreesPropertyValueType storedValueType,
bool defaultValue);
#endif