~foxtrotgps-team/foxtrotgps/trunk

« back to all changes in this revision

Viewing changes to src/util.h

  • Committer: Joshua Judson Rosen
  • Author(s): Marcus Bauer
  • Date: 2010-08-08 22:28:45 UTC
  • Revision ID: rozzin@geekspace.com-20100808222845-86w25l3qq5nlf5ib
Perl scripts to convert track-logs from tangoGPS format to GPX and OSM.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
#include <gtk/gtk.h>
3
3
 
4
4
#include <curl/curl.h>
 
5
#include <curl/types.h>
5
6
#include <curl/easy.h>
6
7
int
7
 
sql_execute(const char *db_name, const char *sql, int (*cb_func)(void*,int,char**,char**));
 
8
sql_execute(char *db_name, char *sql, int (*cb_func)(void*,int,char**,char**));
8
9
 
9
10
typedef struct {
10
11
        char *name;
31
32
mycurl__do_http_post (char *url, GSList *post_data_list, char *useragent);
32
33
 
33
34
postreply_t*
34
 
mycurl__do_http_post_XML (char *url, char *xmlString, char *useragent);
35
 
 
36
 
postreply_t*
37
35
mycurl__do_http_get (char *url, char *useragent);