~ubuntu-branches/ubuntu/trusty/anypaper/trusty-proposed

« back to all changes in this revision

Viewing changes to src/function.h

  • Committer: Bazaar Package Importer
  • Author(s): Alejandro Garrido Mota
  • Date: 2009-07-10 14:07:39 UTC
  • Revision ID: james.westby@ubuntu.com-20090710140739-tszwwq3veohvpglz
Tags: upstream-1.4
ImportĀ upstreamĀ versionĀ 1.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * function.h
 
3
 * This file is part of anyPaper
 
4
 *
 
5
 * Copyright (C) 2008 - Sergio Rodrigues de Oliveira Filho 
 
6
 *
 
7
 * This program is free software; you can redistribute it and/or modify
 
8
 * it under the terms of the GNU General Public License as published by
 
9
 * the Free Software Foundation; either version 3 of the License, or
 
10
 * (at your option) any later version.
 
11
 *
 
12
 * This program is distributed in the hope that it will be useful,
 
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
 * GNU General Public License for more details.
 
16
 *
 
17
 * "You should have received a copy of the GNU General Public License 
 
18
 * along with this program.  If not, see http://www.gnu.org/licenses/.
 
19
 */
 
20
 
 
21
int spi(gchar *t, int b);
 
22
 
 
23
void show_spin(int e);
 
24
 
 
25
void refresh_spin( GtkWidget *widget, gpointer data );
 
26
 
 
27
void change_other_spin ( GtkWidget *widget, gpointer data );
 
28
 
 
29
void custom_scale_connect( GtkWidget *widget, gpointer data );
 
30