~ubuntu-branches/ubuntu/karmic/pulseaudio/karmic-updates

« back to all changes in this revision

Viewing changes to src/modules/jack/module-jack-source-symdef.h

  • Committer: Bazaar Package Importer
  • Author(s): Luke Yelavich, Daniel T Chen, Luke Yelavich
  • Date: 2009-09-11 09:24:39 UTC
  • mfrom: (1.14.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090911092439-7dixbvy6r30alrv8
Tags: 1:0.9.16-0ubuntu1
[ Daniel T Chen ]
* debian/patches/0090-use-volume-ignore-for-analog-output.patch:
  + Realign volume control behaviour with existing Ubuntu releases,
    i.e., disable volume = merge and use volume = ignore for
    analog output

[ Luke Yelavich ]
* New upstream release
* debian/patches/0057-introspect-version-fixes.patch (LP: #426210),
  debian/patches/0056-alsa-rework.patch,
  debian/patches/0055-llvm-clang-analyzer-fixes.patch,
  0054-volume-libpulse-backported-fixes.patch,
  0053-add-input-sources.patch,
  debian/patches/0052-disable-cpu-limit.patch: Dropped, all applied upstream
* debian/patches/0051-reduce-lib-linking.patch: Drop, since we are not going
  to be doing bi-arch pulseaudio packages for karmic

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef foomodulejacksourcesymdeffoo
 
2
#define foomodulejacksourcesymdeffoo
 
3
 
 
4
#include <pulsecore/core.h>
 
5
#include <pulsecore/module.h>
 
6
#include <pulsecore/macro.h>
 
7
 
 
8
#define pa__init module_jack_source_LTX_pa__init
 
9
#define pa__done module_jack_source_LTX_pa__done
 
10
#define pa__get_author module_jack_source_LTX_pa__get_author
 
11
#define pa__get_description module_jack_source_LTX_pa__get_description
 
12
#define pa__get_usage module_jack_source_LTX_pa__get_usage
 
13
#define pa__get_version module_jack_source_LTX_pa__get_version
 
14
#define pa__get_deprecated module_jack_source_LTX_pa__get_deprecated
 
15
#define pa__load_once module_jack_source_LTX_pa__load_once
 
16
#define pa__get_n_used module_jack_source_LTX_pa__get_n_used
 
17
 
 
18
int pa__init(pa_module*m);
 
19
void pa__done(pa_module*m);
 
20
int pa__get_n_used(pa_module*m);
 
21
 
 
22
const char* pa__get_author(void);
 
23
const char* pa__get_description(void);
 
24
const char* pa__get_usage(void);
 
25
const char* pa__get_version(void);
 
26
const char* pa__get_deprecated(void);
 
27
pa_bool_t pa__load_once(void);
 
28
 
 
29
#endif