xdgmimemagic.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /* -*- mode: C; c-file-style: "gnu" -*- */
  2. /* xdgmimemagic.h: Private file. Datastructure for storing the magic files.
  3. *
  4. * More info can be found at http://www.freedesktop.org/standards/
  5. *
  6. * Copyright (C) 2003 Red Hat, Inc.
  7. * Copyright (C) 2003 Jonathan Blandford <jrb@alum.mit.edu>
  8. *
  9. * Licensed under the Academic Free License version 2.0
  10. * Or under the following terms:
  11. *
  12. * This library is free software; you can redistribute it and/or
  13. * modify it under the terms of the GNU Lesser General Public
  14. * License as published by the Free Software Foundation; either
  15. * version 2 of the License, or (at your option) any later version.
  16. *
  17. * This library 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 GNU
  20. * Lesser General Public License for more details.
  21. *
  22. * You should have received a copy of the GNU Lesser General Public
  23. * License along with this library; if not, write to the
  24. * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  25. * Boston, MA 02111-1307, USA.
  26. */
  27. #ifndef __XDG_MIME_MAGIC_H__
  28. #define __XDG_MIME_MAGIC_H__
  29. #include <unistd.h>
  30. #include "xdgmime.h"
  31. typedef struct XdgMimeMagic XdgMimeMagic;
  32. #ifdef XDG_PREFIX
  33. #define _xdg_mime_glob_read_from_file XDG_RESERVED_ENTRY(glob_read_from_file)
  34. #define _xdg_mime_magic_new XDG_RESERVED_ENTRY(magic_new)
  35. #define _xdg_mime_magic_read_from_file XDG_RESERVED_ENTRY(magic_read_from_file)
  36. #define _xdg_mime_magic_free XDG_RESERVED_ENTRY(magic_free)
  37. #define _xdg_mime_magic_get_buffer_extents XDG_RESERVED_ENTRY(magic_get_buffer_extents)
  38. #define _xdg_mime_magic_lookup_data XDG_RESERVED_ENTRY(magic_lookup_data)
  39. #endif
  40. XdgMimeMagic *_xdg_mime_magic_new (void);
  41. void _xdg_mime_magic_read_from_file (XdgMimeMagic *mime_magic,
  42. const char *file_name);
  43. void _xdg_mime_magic_free (XdgMimeMagic *mime_magic);
  44. int _xdg_mime_magic_get_buffer_extents (XdgMimeMagic *mime_magic);
  45. const char *_xdg_mime_magic_lookup_data (XdgMimeMagic *mime_magic,
  46. const void *data,
  47. size_t len,
  48. int *result_prio,
  49. const char *mime_types[],
  50. int n_mime_types);
  51. #endif /* __XDG_MIME_MAGIC_H__ */