bzr branch
http://gegoxaren.bato24.eu/bzr/gpump/trunk
1
by Gustav Hartvigsson
Initial code. |
1 |
/* c-basic-offset: 2; tab-width: 2; indent-tabs-mode: nil
|
2 |
* vi: set shiftwidth=2 tabstop=2 expandtab:
|
|
3 |
* :indentSize=2:tabSize=2:noTabs=true:
|
|
4 |
*/
|
|
5 |
||
6 |
#include <gtk/gtk.h> |
|
7 |
#include <gio/gio.h> |
|
8 |
#include <rest/oauth2-proxy.h> |
|
9 |
#include <rest/rest-proxy-call.h> |
|
10 |
#include <stdlib.h> |
|
11 |
#include <string.h> |
|
12 |
||
3
by Gustav Hartvigsson
Something is wrong with GtkListStore it seems, |
13 |
#include "GPumpApp.h" |
14 |
||
1
by Gustav Hartvigsson
Initial code. |
15 |
int main (int argc, char ** argv) { |
3
by Gustav Hartvigsson
Something is wrong with GtkListStore it seems, |
16 |
gtk_init (&argc, &argv); |
17 |
GPumpApp * app = gpump_app_new (); |
|
18 |
return g_application_run (G_APPLICATION (app), argc, argv); |
|
1
by Gustav Hartvigsson
Initial code. |
19 |
}
|