/* * This file is part of hildon-fm package * * Copyright (C) 2006 Nokia Corporation. All rights reserved. * * Contact: Marius Vollmer * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License * version 2.1 as published by the Free Software Foundation. * * This library is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA * */ #ifndef HILDON_FILE_SYSTEM_DYNAMIC_DEVICE_H__ #define HILDON_FILE_SYSTEM_DYNAMIC_DEVICE_H__ #include "hildon-file-system-remote-device.h" G_BEGIN_DECLS #define HILDON_TYPE_FILE_SYSTEM_DYNAMIC_DEVICE (hildon_file_system_dynamic_device_get_type ()) #define HILDON_FILE_SYSTEM_DYNAMIC_DEVICE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), HILDON_TYPE_FILE_SYSTEM_DYNAMIC_DEVICE, HildonFileSystemDynamicDevice)) #define HILDON_FILE_SYSTEM_DYNAMIC_DEVICE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), HILDON_TYPE_FILE_SYSTEM_DYNAMIC_DEVICE, HildonFileSystemDynamicDeviceClass)) #define HILDON_IS_FILE_SYSTEM_DYNAMIC_DEVICE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), HILDON_TYPE_FILE_SYSTEM_DYNAMIC_DEVICE)) #define HILDON_IS_FILE_SYSTEM_DYNAMIC_DEVICE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), HILDON_TYPE_FILE_SYSTEM_DYNAMIC_DEVICE)) #define HILDON_FILE_SYSTEM_DYNAMIC_DEVICE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), HILDON_TYPE_FILE_SYSTEM_DYNAMIC_DEVICE, HildonFileSystemDynamicDeviceClass)) typedef struct _HildonFileSystemDynamicDevice HildonFileSystemDynamicDevice; typedef struct _HildonFileSystemDynamicDeviceClass HildonFileSystemDynamicDeviceClass; struct _HildonFileSystemDynamicDevice { HildonFileSystemRemoteDevice parent_instance; }; struct _HildonFileSystemDynamicDeviceClass { HildonFileSystemRemoteDeviceClass parent_class; }; GType hildon_file_system_dynamic_device_get_type (void) G_GNUC_CONST; G_END_DECLS #endif