~ubuntu-branches/ubuntu/wily/alsaplayer/wily

« back to all changes in this revision

Viewing changes to interface/gtk2/ScopesWindow.h

  • Committer: Bazaar Package Importer
  • Author(s): Hubert Chathi
  • Date: 2007-10-10 15:33:10 UTC
  • mto: (9.2.5 sid)
  • mto: This revision was merged to the branch mainline in revision 15.
  • Revision ID: james.westby@ubuntu.com-20071010153310-h3holq75eu2cigb0
Tags: upstream-0.99.80~rc4
ImportĀ upstreamĀ versionĀ 0.99.80~rc4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*  ScopesWindow.h
 
2
 *  Copyright (C) 1998 Andy Lo A Foe <andy@alsa-project.org>
 
3
 *  Copyright (C) 2007 Madej
 
4
 *
 
5
 *  This file is part of AlsaPlayer.
 
6
 *
 
7
 *  AlsaPlayer 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
 *  AlsaPlayer 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
#ifndef __ScopesWindow_h__
 
22
#define __ScopesWindow_h__
 
23
 
 
24
#include <gtk/gtk.h>
 
25
#include "scope_plugin.h"
 
26
 
 
27
extern GtkWidget *init_scopes_window(GtkWidget *main_window);
 
28
extern void destroy_scopes_window();
 
29
extern int apRegisterScopePlugin(scope_plugin *plugin);
 
30
extern void apUnregiserScopePlugins();
 
31
extern bool scope_feeder_func(void *, void *, int);
 
32
 
 
33
typedef struct _scope_entry
 
34
{
 
35
        scope_plugin *sp;
 
36
        struct _scope_entry *next;
 
37
        struct _scope_entry *prev;
 
38
        int active;
 
39
} scope_entry;
 
40
 
 
41
#endif