3567N/A/*
3349N/A * Copyright 2002,2003 Red Hat Inc., Durham, North Carolina.
3349N/A *
3349N/A * All Rights Reserved.
3349N/A *
3349N/A * Permission is hereby granted, free of charge, to any person obtaining
3349N/A * a copy of this software and associated documentation files (the
3349N/A * "Software"), to deal in the Software without restriction, including
3349N/A * without limitation on the rights to use, copy, modify, merge,
3349N/A * publish, distribute, sublicense, and/or sell copies of the Software,
3349N/A * and to permit persons to whom the Software is furnished to do so,
3349N/A * subject to the following conditions:
3349N/A *
3349N/A * The above copyright notice and this permission notice (including the
3349N/A * next paragraph) shall be included in all copies or substantial
3349N/A * portions of the Software.
3349N/A *
3349N/A * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
3349N/A * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
3349N/A * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
3349N/A * NON-INFRINGEMENT. IN NO EVENT SHALL RED HAT AND/OR THEIR SUPPLIERS
3349N/A * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
3349N/A * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
3349N/A * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3349N/A * SOFTWARE.
3349N/A */
3349N/A
3349N/A/*
3349N/A * Authors:
3349N/A * Rickard E. (Rik) Faith <faith@redhat.com>
3349N/A *
3349N/A */
3349N/A
3349N/A/** \file
3349N/A * Interface for property support. \see dmxprop.c */
3349N/A
3349N/A#ifndef _DMXPROP_H_
3349N/A#define _DMXPROP_H_
3349N/Aextern int dmxPropertyDisplay(DMXScreenInfo *dmxScreen);
3349N/Aextern void dmxPropertyWindow(DMXScreenInfo *dmxScreen);
3349N/Aextern void *dmxPropertyIterate(DMXScreenInfo *start,
3349N/A void *(*f)(DMXScreenInfo *dmxScreen,
3349N/A void *closure),
3349N/A void *closure);
3349N/Aextern int dmxPropertySameDisplay(DMXScreenInfo *dmxScreen, const char *name);
3349N/A#endif
3349N/A