1*2912Sartem /*************************************************************************** 2*2912Sartem * CVSID: $Id$ 3*2912Sartem * 4*2912Sartem * utils.h - Some utils for the hald runner 5*2912Sartem * 6*2912Sartem * Copyright (C) 2006 Sjoerd Simons, <sjoerd@luon.net> 7*2912Sartem * 8*2912Sartem * Licensed under the Academic Free License version 2.1 9*2912Sartem * 10*2912Sartem * This program is free software; you can redistribute it and/or modify 11*2912Sartem * it under the terms of the GNU General Public License as published by 12*2912Sartem * the Free Software Foundation; either version 2 of the License, or 13*2912Sartem * (at your option) any later version. 14*2912Sartem * 15*2912Sartem * This program is distributed in the hope that it will be useful, 16*2912Sartem * but WITHOUT ANY WARRANTY; without even the implied warranty of 17*2912Sartem * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18*2912Sartem * GNU General Public License for more details. 19*2912Sartem * 20*2912Sartem * You should have received a copy of the GNU General Public License 21*2912Sartem * along with this program; if not, write to the Free Software 22*2912Sartem * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 23*2912Sartem * 24*2912Sartem **************************************************************************/ 25*2912Sartem #ifndef UTILS_H 26*2912Sartem #define UTILS_H 27*2912Sartem 28*2912Sartem #define DBUS_API_SUBJECT_TO_CHANGE 29*2912Sartem #include <dbus/dbus-glib-lowlevel.h> 30*2912Sartem 31*2912Sartem char **get_string_array(DBusMessageIter *iter, gchar *extra); 32*2912Sartem char **get_string_array_from_fd(int fd); 33*2912Sartem void free_string_array(char **array); 34*2912Sartem 35*2912Sartem #endif /* UTILS_H */ 36