~ubuntu-branches/ubuntu/oneiric/pulseaudio/oneiric

« back to all changes in this revision

Viewing changes to src/modules/module-native-protocol-unix-symdef.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel T Chen
  • Date: 2007-12-04 00:56:08 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20071204005608-y1xqvcu45g1yxtlu
Tags: 0.9.8-1ubuntu1
"Hail our new PulseAudio overlords (part two)."

* Merge from Debian unstable.
* Ubuntu-specific changes:
  - debian/control:
    + Don't build-depend on libjack0.100.0-dev or build jack module
      packages,
    + Update pulseaudio's Recommends and Suggests to accomodate
      existing promoted main packages,
    + Explicitly mention pasuspender in pulseaudio-utils's long
      description,
    + Add Vcs-Bzr URI,
    + Adhere to DebianMaintainerField;
  - debian/rules: Use multiuser for update-rc.d;
  - debian/patches/series: Retain the exclusion of
    0001-Set-ESD-socket-to-tmp-.esd-socket-to-match-up-with.patch.
* Dropped Ubuntu-specific change (absorbed into Debian source):
  debian/patches/0002-Double-esound-maximum-sample-size.patch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 
4
4
#include <pulsecore/core.h>
5
5
#include <pulsecore/module.h>
 
6
#include <pulsecore/macro.h>
6
7
 
7
8
#define pa__init module_native_protocol_unix_LTX_pa__init
8
9
#define pa__done module_native_protocol_unix_LTX_pa__done
10
11
#define pa__get_description module_native_protocol_unix_LTX_pa__get_description
11
12
#define pa__get_usage module_native_protocol_unix_LTX_pa__get_usage
12
13
#define pa__get_version module_native_protocol_unix_LTX_pa__get_version
 
14
#define pa__load_once module_native_protocol_unix_LTX_pa__load_once
13
15
 
14
16
int pa__init(pa_module*m);
15
17
void pa__done(pa_module*m);
18
20
const char* pa__get_description(void);
19
21
const char* pa__get_usage(void);
20
22
const char* pa__get_version(void);
 
23
pa_bool_t pa__load_once(void);
21
24
 
22
25
#endif