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

« back to all changes in this revision

Viewing changes to interface/gtk/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
 
#ifndef __ScopesWindow_h__
2
 
#define __ScopesWindow_h__
3
 
 
4
 
#include <gtk/gtk.h>
5
 
#include "scope_plugin.h"
6
 
 
7
 
extern GtkWidget *init_scopes_window();
8
 
extern void destroy_scopes_window();
9
 
extern int apRegisterScopePlugin(scope_plugin *plugin);
10
 
extern void apUnregiserScopePlugins();
11
 
extern bool scope_feeder_func(void *, void *, int);
12
 
 
13
 
typedef struct _scope_entry
14
 
{
15
 
        scope_plugin *sp;
16
 
        struct _scope_entry *next;
17
 
        struct _scope_entry *prev;
18
 
        int active;
19
 
} scope_entry;
20
 
 
21
 
#endif