~jtaylor/ubuntu/natty/pyfltk/fix-779340

« back to all changes in this revision

Viewing changes to swig/filename.i

  • Committer: Bazaar Package Importer
  • Author(s): Aaron M. Ucko
  • Date: 2009-03-13 20:47:00 UTC
  • Revision ID: james.westby@ubuntu.com-20090313204700-ra4hgdlhxzrccas3
Tags: upstream-1.1.3
ImportĀ upstreamĀ versionĀ 1.1.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* File : filename.i */
 
2
//%module filename
 
3
%include "cstring.i"
 
4
 
 
5
%{
 
6
#include "FL/filename.H"
 
7
%}
 
8
 
 
9
%cstring_bounded_mutable(char *to, 1024);
 
10
 
 
11
%ignore Fl_File_Sort_F;
 
12
%ignore fl_filename_list;
 
13
%ignore fl_numericsort;
 
14
%ignore fl_alphasort;
 
15
%ignore fl_casealphasort;
 
16
%ignore fl_casenumericsort;
 
17
 
 
18
%include "FL/filename.H"
 
19