/*====================================================================== FILE: icalparameterimpl.h CREATOR: eric 09 May 1999 SPDX-FileCopyrightText: 2000, Eric Busboom SPDX-License-Identifier: LGPL-2.1-only OR MPL-2.0 The original code is icalderivedparameters.{c,h} Contributions from: Graham Davison (g.m.davison@computer.org) ======================================================================*/ #ifndef ICALPARAMETERIMPL_H #define ICALPARAMETERIMPL_H #include "icalproperty.h" struct icalparameter_impl { icalparameter_kind kind; char id[5]; int size; const char *string; const char *x_name; icalproperty *parent; int data; }; #endif /*ICALPARAMETER_IMPL */