#include "gps.h"
#include "mapper-types.h"
#include "gpx.h"
+#include "path.h"
#define XML_DATE_FORMAT "%FT%T"
* Handle an entity in the parsing of a GPX file. We don't do anything
* special here.
*/
-xmlEntityPtr
+static xmlEntityPtr
gpx_get_entity(SaxData * data, const xmlChar * name)
{
vprintf("%s()\n", __PRETTY_FUNCTION__);
/**
* Handle an error in the parsing of a GPX file.
*/
-void
+static void
gpx_error(SaxData * data, const gchar * msg, ...)
{
vprintf("%s()\n", __PRETTY_FUNCTION__);
void gpx_init(void);
gboolean write_gpx(Path * path, GnomeVFSHandle * handle);
+gboolean parse_gpx(Path * to_replace, gchar * buffer, gint size, gint policy_old);
+
#endif