~fginther/libgrip/libgrip-0.3.5-precise

« back to all changes in this revision

Viewing changes to src/libgrip-0.1.ver

  • Committer: Stephen M. Webb
  • Date: 2011-03-04 19:15:32 UTC
  • mfrom: (0.1.30 libgrip)
  • mto: (17.1.1 ubuntu)
  • mto: This revision was merged to the branch mainline in revision 8.
  • Revision ID: stephen.webb@canonical.com-20110304191532-46jnihnpbul5w569
Tags: upstream-0.1.4
ImportĀ upstreamĀ versionĀ 0.1.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Linker script for libgrip symbol versioning.
 
2
#
 
3
# Copyright (c) 2011 Canonical Ltd.
 
4
#
 
5
# This program is free software: you can redistribute it and/or modify it
 
6
# under the terms of either or both of the following licenses:
 
7
#
 
8
# 1) the GNU Lesser General Public License version 3, as published by the
 
9
# Free Software Foundation; and/or
 
10
# 2) the GNU Lesser General Public License version 2.1, as published by
 
11
# the Free Software Foundation.
 
12
#
 
13
# This program is distributed in the hope that it will be useful, but
 
14
# WITHOUT ANY WARRANTY; without even the implied warranties of
 
15
# MERCHANTABILITY, SATISFACTORY QUALITY or FITNESS FOR A PARTICULAR
 
16
# PURPOSE.  See the applicable version of the GNU Lesser General Public
 
17
# License for more details.
 
18
#
 
19
# You should have received a copy of both the GNU Lesser General Public
 
20
# License version 3 and version 2.1 along with this program.  If not, see
 
21
# <http://www.gnu.org/licenses/>
 
22
#
 
23
 
 
24
{
 
25
  global:
 
26
    _fini;
 
27
    _init;
 
28
};
 
29
 
 
30
GRIP_0.1 {
 
31
  global:
 
32
    grip_gesture_event_copy;
 
33
    grip_gesture_event_free;
 
34
    grip_gesture_event_get_type;
 
35
    grip_gesture_event_new;
 
36
    grip_gesture_manager_get;
 
37
    grip_gesture_manager_get_type;
 
38
    grip_gesture_manager_register_window;
 
39
    grip_gesture_type_get_type;
 
40
    grip_time_type_get_type;
 
41
 
 
42
  local:
 
43
    *;
 
44
};
 
45