~ubuntu-branches/ubuntu/trusty/gavl/trusty

« back to all changes in this revision

Viewing changes to gavl/libsamplerate/Version_script.in

  • Committer: Bazaar Package Importer
  • Author(s): Romain Beauxis
  • Date: 2009-01-17 20:38:33 UTC
  • mfrom: (1.1.3 upstream) (4.1.1 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090117203833-t8fq1e1jdquyelmy
Tags: 1.1.0-2
Fixed debian/copyright 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#
2
 
# Export file for libsamplerate
3
 
#
4
 
# Only the symbols listed in the global section will be callable from 
5
 
# applications linking to libsamplerate.
6
 
#
7
 
 
8
 
@PACKAGE@.so.0.0
9
 
{
10
 
        global:
11
 
                src_new ;
12
 
                src_delete ;
13
 
                src_get_name ;
14
 
                src_get_description ;
15
 
                src_get_version ;
16
 
                src_process ;
17
 
                src_reset ;
18
 
                src_error ;
19
 
                src_strerror ;
20
 
                src_simple ;
21
 
                src_is_valid_ratio ;
22
 
                src_set_ratio ;
23
 
                
24
 
        local:
25
 
                *;
26
 
};
27
 
 
28
 
@PACKAGE@.so.0.1
29
 
{
30
 
        global:
31
 
                src_new ;
32
 
                src_delete ;
33
 
                src_get_name ;
34
 
                src_get_description ;
35
 
                src_get_version ;
36
 
                src_process ;
37
 
                src_reset ;
38
 
                src_error ;
39
 
                src_strerror ;
40
 
                src_simple ;
41
 
                src_is_valid_ratio ;
42
 
                src_set_ratio ;
43
 
                
44
 
                src_callback_new ;
45
 
                src_callback_read ;
46
 
 
47
 
                src_short_to_float_array ;
48
 
                src_float_to_short_array ;
49
 
        local:
50
 
                *;
51
 
};