dbus-gvalue-parse-variant.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /* GVariant to dbus-glib escape hatch
  2. *
  3. * Copyright © 2010 Collabora Ltd. <http://www.collabora.co.uk/>
  4. *
  5. * Licensed under the Academic Free License version 2.1
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * Alternatively, at your option, you can redistribute and/or modify
  13. * this single file under the terms of the GNU Lesser General Public License
  14. * as published by the Free Software Foundation; either version 2.1 of
  15. * that license, or (at your option) any later version.
  16. *
  17. * This program is distributed in the hope that it will be useful,
  18. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  20. * GNU General Public License for more details.
  21. *
  22. * You should have received a copy of the GNU General Public License
  23. * along with this program; if not, write to the Free Software
  24. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  25. *
  26. */
  27. #ifndef __DBUS_GVALUE_PARSE_VARIANT_H__
  28. #define __DBUS_GVALUE_PARSE_VARIANT_H__
  29. #include <glib-object.h>
  30. G_BEGIN_DECLS
  31. void dbus_g_value_parse_g_variant (GVariant *variant, GValue *value);
  32. G_END_DECLS
  33. #endif