135c4bbdfSmrg/* 235c4bbdfSmrg * Copyright © 2011 Red Hat, Inc. 335c4bbdfSmrg * 435c4bbdfSmrg * Permission is hereby granted, free of charge, to any person obtaining a 535c4bbdfSmrg * copy of this software and associated documentation files (the "Software"), 635c4bbdfSmrg * to deal in the Software without restriction, including without limitation 735c4bbdfSmrg * the rights to use, copy, modify, merge, publish, distribute, sublicense, 835c4bbdfSmrg * and/or sell copies of the Software, and to permit persons to whom the 935c4bbdfSmrg * Software is furnished to do so, subject to the following conditions: 1035c4bbdfSmrg * 1135c4bbdfSmrg * The above copyright notice and this permission notice (including the next 1235c4bbdfSmrg * paragraph) shall be included in all copies or substantial portions of the 1335c4bbdfSmrg * Software. 1435c4bbdfSmrg * 1535c4bbdfSmrg * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 1635c4bbdfSmrg * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 1735c4bbdfSmrg * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 1835c4bbdfSmrg * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 1935c4bbdfSmrg * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 2035c4bbdfSmrg * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 2135c4bbdfSmrg * DEALINGS IN THE SOFTWARE. 2235c4bbdfSmrg * 2335c4bbdfSmrg */ 2435c4bbdfSmrg 2535c4bbdfSmrg#ifndef XF86OPTIONSTR_H 2635c4bbdfSmrg#define XF86OPTIONSTR_H 2735c4bbdfSmrg#include "list.h" 2835c4bbdfSmrg 2935c4bbdfSmrg/* 3035c4bbdfSmrg * All options are stored using this data type. 3135c4bbdfSmrg */ 3235c4bbdfSmrgtypedef struct _XF86OptionRec { 3335c4bbdfSmrg GenericListRec list; 3435c4bbdfSmrg const char *opt_name; 3535c4bbdfSmrg const char *opt_val; 3635c4bbdfSmrg int opt_used; 3735c4bbdfSmrg const char *opt_comment; 3835c4bbdfSmrg} XF86OptionRec; 3935c4bbdfSmrg 4035c4bbdfSmrgtypedef struct _InputOption *XF86OptionPtr; 4135c4bbdfSmrg 4235c4bbdfSmrg#endif 43