reset line to avoid duplicating last item
[rugen] / src / page_units.c
1 /*
2 * page_units.c -- Units Page Handling
3 * Copyright (C) 2002-2003 Charles Yates <charles.yates@pandora.be>
4 * Copyright (C) 2010 Dan Dennedy <dan@dennedy.org>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software Foundation,
18 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 */
20
21 #ifdef HAVE_CONFIG_H
22 # include <config.h>
23 #endif
24
25 #include <stdlib.h>
26 #include <string.h>
27 #include <gtk/gtk.h>
28
29 #include "interface.h"
30 #include "support.h"
31 #include "dv1394app.h"
32 #include "page.h"
33
34 static void this_on_connect( page this )
35 {
36 }
37
38 static void this_on_disconnect( page this )
39 {
40 }
41
42 static void this_close( page this )
43 {
44 if ( this != NULL )
45 free( this );
46 }
47
48 page page_units_init( dv1394app app )
49 {
50 page this = calloc( 1, sizeof( struct page_t ) );
51
52 this->on_connect = this_on_connect;
53 this->on_disconnect = this_on_disconnect;
54 this->close = this_close;
55
56 return this;
57 }