1*18c2aff7Sartem /*************************************************************************** 2*18c2aff7Sartem * 3*18c2aff7Sartem * hal-storage-eject.c : Eject method handler 4*18c2aff7Sartem * 5*18c2aff7Sartem * Copyright (C) 2006 David Zeuthen, <david@fubar.dk> 6*18c2aff7Sartem * 7*18c2aff7Sartem * This program is free software; you can redistribute it and/or modify 8*18c2aff7Sartem * it under the terms of the GNU General Public License as published by 9*18c2aff7Sartem * the Free Software Foundation; either version 2 of the License, or 10*18c2aff7Sartem * (at your option) any later version. 11*18c2aff7Sartem * 12*18c2aff7Sartem * This program is distributed in the hope that it will be useful, 13*18c2aff7Sartem * but WITHOUT ANY WARRANTY; without even the implied warranty of 14*18c2aff7Sartem * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15*18c2aff7Sartem * GNU General Public License for more details. 16*18c2aff7Sartem * 17*18c2aff7Sartem * You should have received a copy of the GNU General Public License 18*18c2aff7Sartem * along with this program; if not, write to the Free Software 19*18c2aff7Sartem * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 20*18c2aff7Sartem * 21*18c2aff7Sartem **************************************************************************/ 22*18c2aff7Sartem 23*18c2aff7Sartem 24*18c2aff7Sartem #ifdef HAVE_CONFIG_H 25*18c2aff7Sartem # include <config.h> 26*18c2aff7Sartem #endif 27*18c2aff7Sartem 28*18c2aff7Sartem #include <stdio.h> 29*18c2aff7Sartem #include <stdlib.h> 30*18c2aff7Sartem #include <string.h> 31*18c2aff7Sartem #include <glib.h> 32*18c2aff7Sartem #include <glib/gstdio.h> 33*18c2aff7Sartem #include <sys/types.h> 34*18c2aff7Sartem #include <unistd.h> 35*18c2aff7Sartem 36*18c2aff7Sartem #include <libhal.h> 37*18c2aff7Sartem #include <libhal-storage.h> 38*18c2aff7Sartem #ifdef HAVE_POLKIT 39*18c2aff7Sartem #include <libpolkit.h> 40*18c2aff7Sartem #endif 41*18c2aff7Sartem 42*18c2aff7Sartem #include "hal-storage-shared.h" 43*18c2aff7Sartem 44*18c2aff7Sartem /* possible values: "Volume", "Storage" */ 45*18c2aff7Sartem static char *devtype = "Volume"; 46*18c2aff7Sartem 47