/gpump/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/gpump/trunk

« back to all changes in this revision

Viewing changes to src/main.c

  • Committer: Gustav Hartvigsson
  • Date: 2014-02-08 19:56:05 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20140208195605-1w5jl8d9nqk49hcg
Added a hacking manual.

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
#include <stdlib.h>
11
11
#include <string.h>
12
12
 
13
 
#include "GPumpApp.h"
14
 
 
15
13
int main (int argc, char ** argv) {
16
 
  gtk_init (&argc, &argv);
17
 
  GPumpApp * app = gpump_app_new ();
18
 
  return g_application_run (G_APPLICATION (app), argc, argv);
 
14
  
 
15
  return 0;
19
16
}