device_info.h revision 1
1N/A/***************************************************************************
1N/A * CVSID: $Id$
1N/A *
1N/A * device_store.c : Search for .fdi files and merge on match
1N/A *
1N/A * Copyright (C) 2003 David Zeuthen, <david@fubar.dk>
1N/A *
1N/A * Licensed under the Academic Free License version 2.1
1N/A *
1N/A * This program is free software; you can redistribute it and/or modify
1N/A * it under the terms of the GNU General Public License as published by
1N/A * the Free Software Foundation; either version 2 of the License, or
1N/A * (at your option) any later version.
1N/A *
1N/A * This program is distributed in the hope that it will be useful,
1N/A * but WITHOUT ANY WARRANTY; without even the implied warranty of
1N/A * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1N/A * GNU General Public License for more details.
1N/A *
1N/A * You should have received a copy of the GNU General Public License
1N/A * along with this program; if not, write to the Free Software
1N/A * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
1N/A *
1N/A **************************************************************************/
1N/A
1N/A#ifndef DEVICE_INFO_H
1N/A#define DEVICE_INFO_H
1N/A
1N/A#include <stdarg.h>
1N/A#include <stdint.h>
1N/A#include <dbus/dbus.h>
1N/A
1N/A#include "device_store.h"
1N/A
1N/Atypedef enum {
1N/A DEVICE_INFO_TYPE_PREPROBE,
1N/A DEVICE_INFO_TYPE_INFORMATION,
1N/A DEVICE_INFO_TYPE_POLICY
1N/A} DeviceInfoType;
1N/A
1N/Adbus_bool_t di_search_and_merge (HalDevice *d, DeviceInfoType type);
1N/A
1N/A#endif /* DEVICE_INFO_H */