~ubuntu-branches/ubuntu/natty/stfl/natty

« back to all changes in this revision

Viewing changes to swig/longnames.i

  • Committer: Bazaar Package Importer
  • Author(s): Nico Golde
  • Date: 2007-08-07 13:06:54 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070807130654-fmvsraotulj0nbri
Tags: 0.15-3
Again added fPIC to CFLAGS. Hopefully all build issues
are fixed now.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *  STFL - The Structured Terminal Forms Language/Library
 
3
 *  Copyright (C) 2006, 2007  Clifford Wolf <clifford@clifford.at>
 
4
 *
 
5
 *  This library is free software; you can redistribute it and/or
 
6
 *  modify it under the terms of the GNU Lesser General Public
 
7
 *  License as published by the Free Software Foundation; either
 
8
 *  version 3 of the License, or (at your option) any later version.
 
9
 *  
 
10
 *  This library is distributed in the hope that it will be useful,
 
11
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
13
 *  Lesser General Public License for more details.
 
14
 *  
 
15
 *  You should have received a copy of the GNU Lesser General Public
 
16
 *  License along with this library; if not, write to the Free Software
 
17
 *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
 
18
 *  MA 02110-1301 USA
 
19
 *
 
20
 *  longnames.i: Use long function names in SWIG bindings
 
21
 */
 
22
 
 
23
%rename(stfl_create) stfl_create_wrapper;
 
24
%rename(stfl_run) stfl_run_wrapper;
 
25
 
 
26
%rename(stfl_get) stfl_get_wrapper;
 
27
%rename(stfl_set) stfl_set_wrapper;
 
28
 
 
29
%rename(stfl_get_focus) stfl_get_focus_wrapper;
 
30
%rename(stfl_set_focus) stfl_set_focus_wrapper;
 
31
 
 
32
%rename(stfl_quote) stfl_quote_wrapper;
 
33
%rename(stfl_dump) stfl_dump_wrapper;
 
34
%rename(stfl_modify) stfl_modify_wrapper;
 
35
%rename(stfl_lookup) stfl_lookup_wrapper;
 
36
 
 
37
%rename(stfl_error) stfl_error_wrapper;
 
38
%rename(stfl_error_action) stfl_error_action_wrapper;
 
39