summaryrefslogtreecommitdiff
path: root/src/libicalss/icalclusterimpl.h
blob: 642827fd0d4ebae11bac0baa100b5cea733da650 (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
/*======================================================================
 FILE: icalfilesetimpl.h
 CREATOR: acampi 13 March 2002

 SPDX-FileCopyrightText: 2002 Andrea Campi <a.campi@inet.it>

 SPDX-License-Identifier: LGPL-2.1-only OR MPL-2.0

======================================================================*/

#ifndef ICALCLUSTERIMPL_H
#define ICALCLUSTERIMPL_H

/* This definition is in its own file so it can be kept out of the
   main header file, but used by "friend classes" like icaldirset*/

#define ICALCLUSTER_ID "clus"

struct icalcluster_impl
{
    char id[5]; /* clus */

    char *key;
    icalcomponent *data;
    int changed;
};

#endif