deCONZ C++ API v2.6.1
Loading...
Searching...
No Matches
atom.h
1/*
2 * Copyright (c) 2023 dresden elektronik ingenieurtechnik gmbh.
3 * All rights reserved.
4 *
5 * The software in this package is published under the terms of the BSD
6 * style license a copy of which has been included with this distribution in
7 * the LICENSE.txt file.
8 *
9 */
10
11#ifndef ATOM_H
12#define ATOM_H
13
31typedef struct AT_Atom
32{
33 unsigned len;
34 unsigned char *data;
35} AT_Atom;
36
43typedef struct AT_AtomIndex
44{
45 unsigned index;
47
51#endif // ATOM_H
A unique index referencing a atom.
Definition atom.h:44
Represents an atom which is uniquely stored in the atom table.
Definition atom.h:32
unsigned char * data
Data pointer, always zero terminated, often a C-String.
Definition atom.h:34
unsigned len
Length of the atom, excluding 0 terminator.
Definition atom.h:33