1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* c-basic-offset: 2; tab-width: 2; indent-tabs-mode: nil
* vi: set shiftwidth=2 tabstop=2 expandtab:
* :indentSize=2:tabSize=2:noTabs=true:
*/
#include <gtk/gtk.h>
#include <gio/gio.h>
#include <rest/oauth2-proxy.h>
#include <rest/rest-proxy-call.h>
#include <stdlib.h>
#include <string.h>
#include "GPumpApp.h"
int main (int argc, char ** argv) {
gtk_init (&argc, &argv);
GPumpApp * app = gpump_app_new ();
return g_application_run (G_APPLICATION (app), argc, argv);
}
|