~dobey/stopwatch/trunk

« back to all changes in this revision

Viewing changes to src/main.h

  • Committer: Rodney Dawes
  • Date: 2009-03-27 22:55:10 UTC
  • Revision ID: dobey@gnome.org-20090327225510-hph5hfc2fyfo0446
        Cleaned up code import into bzr

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *  Authors: Rodney Dawes <dobey@gnome.org>
 
3
 *
 
4
 *  Copyright 2008-2009 Rodney Dawes
 
5
 *
 
6
 *  This program is free software; you can redistribute it and/or modify
 
7
 *  it under the terms of version 2 of the GNU General Public License
 
8
 *  as published by the Free Software Foundation
 
9
 *
 
10
 *  This program is distributed in the hope that it will be useful,
 
11
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 *  GNU General Public License for more details.
 
14
 */
 
15
#ifndef _STOPWATCH_MAIN_H_
 
16
#define _STOPWATCH_MAIN_H_
 
17
 
 
18
#include <config.h>
 
19
 
 
20
#include "window.h"
 
21
 
 
22
void stopwatch_main_quit (GtkWidget * widget, StopwatchWindow * window);
 
23
 
 
24
#endif