]> git.street.me.uk Git - andy/viking.git/blobdiff - src/file.h
Improve function comments as these don't return anything
[andy/viking.git] / src / file.h
index a7a661f4dd70b90a38d25c27707f1b1a283e7151..a0b50d4f63f6019fce00ab4c09c97a79b8141772 100644 (file)
@@ -36,10 +36,10 @@ FILE_TYPE_GPSPOINT=1,
 FILE_TYPE_GPSMAPPER=2,
 FILE_TYPE_GPX=3,
 FILE_TYPE_KML=4,
+FILE_TYPE_GEOJSON=5,
 } VikFileType_t;
 
-const gchar *a_file_basename ( const gchar *filename );
-gboolean check_file_ext ( const gchar *filename, const gchar *fileext );
+gboolean a_file_check_ext ( const gchar *filename, const gchar *fileext );
 
 /*
  * Function to determine if a filename is a 'viking' type file
@@ -56,13 +56,23 @@ typedef enum {
   LOAD_TYPE_OTHER_SUCCESS,
 } VikLoadType_t;
 
-VikLoadType_t a_file_load ( VikAggregateLayer *top, VikViewport *vp, const gchar *filename );
+gchar *append_file_ext ( const gchar *filename, VikFileType_t type );
+
+VikLoadType_t a_file_load ( VikAggregateLayer *top, VikViewport *vp, VikTrwLayer *vtl, const gchar *filename );
 gboolean a_file_save ( VikAggregateLayer *top, gpointer vp, const gchar *filename );
 /* Only need to define VikTrack if the file type is FILE_TYPE_GPX_TRACK */
 gboolean a_file_export ( VikTrwLayer *vtl, const gchar *filename, VikFileType_t file_type, VikTrack *trk, gboolean write_hidden );
+gboolean a_file_export_babel ( VikTrwLayer *vtl, const gchar *filename, const gchar *format,
+    gboolean tracks, gboolean routes, gboolean waypoints );
 
 void file_write_layer_param ( FILE *f, const gchar *name, VikLayerParamType type, VikLayerParamData data );
 
+char *file_realpath ( const char *path, char *real );
+
+char *file_realpath_dup ( const char *path );
+
+const gchar *file_GetRelativeFilename ( gchar *currentDirectory, gchar *absoluteFilename );
+
 G_END_DECLS
 
 #endif