00001 /* 00002 EasyDbus: DBus Binding Library 00003 Copyright (C) 2007 Daniele Rondina aka ge@@ru, geaaru@gmail.com 00004 00005 This program is free software; you can redistribute it and/or 00006 modify it under the terms of the GNU General Public License 00007 as published by the Free Software Foundation; either version 2 00008 of the License, or (at your option) any later version. 00009 00010 This program is distributed in the hope that it will be useful, 00011 but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00013 GNU General Public License for more details. 00014 00015 You should have received a copy of the GNU General Public License 00016 along with this program; if not, write to the Free Software 00017 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 00018 00019 Filename: array_internal.h 00020 00021 Description: 00022 00023 Version: 1.0 00024 Created: 09/08/07 18:31:38 CEST 00025 Revision: none 00026 00027 Author: Daniele Rondina aka Ge@@ru (geaaru@gmail.com) 00028 License: GPL 2.0 00029 */ 00030 00031 #ifndef EASYDBUS_ARRAY_INTERNAL_H 00032 #define EASYDBUS_ARRAY_INTERNAL_H 00033 00034 // add array on DBusMessage 00035 int 00036 add_array_to_msg (DBusMessage *, 00037 struct EasyDbus_elem *) 00038 EASYDBUS_INTERNAL_F_ATTR; 00039 00040 int 00041 easydbus_add_array_on_container_tomsg (DBusMessage *, 00042 DBusMessageIter *, 00043 struct EasyDbus_elem *) 00044 EASYDBUS_INTERNAL_F_ATTR; 00045 00046 void 00047 free_elem_on_array (struct EasyDbus_elem *) 00048 EASYDBUS_INTERNAL_F_ATTR; 00049 00050 inline void 00051 free_array_from_container (struct EasyDbus_elem *) 00052 EASYDBUS_INTERNAL_F_ATTR; 00053 00054 struct EasyDbus_container * 00055 easydbus_get_marshal_data_from_array (enum event_type, 00056 void *, enum el_type, 00057 DBusMessageIter *) 00058 EASYDBUS_INTERNAL_F_ATTR; 00059 00060 #endif 00061 // vim: ts=3 shiftwidth=3 expandtab