Libical API Documentation 3.1
icalparameterimpl.h
1/*======================================================================
2 FILE: icalparameterimpl.h
3 CREATOR: eric 09 May 1999
4
5 SPDX-FileCopyrightText: 2000, Eric Busboom <eric@civicknowledge.com>
6
7 SPDX-License-Identifier: LGPL-2.1-only OR MPL-2.0
8
9 The original code is icalderivedparameters.{c,h}
10
11 Contributions from:
12 Graham Davison (g.m.davison@computer.org)
13======================================================================*/
14
15#ifndef ICALPARAMETERIMPL_H
16#define ICALPARAMETERIMPL_H
17
18#include "icalproperty.h"
19
21{
22 icalparameter_kind kind;
23 char id[5];
24 int size;
25 const char *string;
26 const char *x_name;
27 icalproperty *parent;
28
29 int data;
30};
31
32#endif /*ICALPARAMETER_IMPL */
Definition: icalparameterimpl.h:21