Merge pull request #3819 from arnova/subtitles_for_stacks
[vuplus_xbmc] / xbmc / interfaces / swig / AddonModuleXbmcvfs.i
1 /*
2  *      Copyright (C) 2005-2013 Team XBMC
3  *      http://xbmc.org
4  *
5  *  This Program is free software; you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation; either version 2, or (at your option)
8  *  any later version.
9  *
10  *  This Program 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
13  *  GNU General Public License for more details.
14  *
15  *  You should have received a copy of the GNU General Public License
16  *  along with XBMC; see the file COPYING.  If not, see
17  *  <http://www.gnu.org/licenses/>.
18  *
19  */
20
21 %module xbmcvfs
22
23 %{
24 #include "interfaces/legacy/ModuleXbmcvfs.h"
25 #include "interfaces/legacy/File.h"
26 #include "interfaces/legacy/Stat.h"
27 #include "utils/log.h"
28
29 using namespace XBMCAddon;
30 using namespace xbmcvfs;
31
32 #if defined(__GNUG__) && (__GNUC__>4) || (__GNUC__==4 && __GNUC_MINOR__>=2)
33 #pragma GCC diagnostic ignored "-Wstrict-aliasing"
34 #endif
35
36 %}
37
38 %include "interfaces/legacy/swighelper.h"
39 %include "interfaces/legacy/AddonString.h"
40 %include "interfaces/legacy/File.h"
41
42 %rename ("st_atime") XBMCAddon::xbmcvfs::Stat::atime;
43 %rename ("st_mtime") XBMCAddon::xbmcvfs::Stat::mtime;
44 %rename ("st_ctime") XBMCAddon::xbmcvfs::Stat::ctime;
45 %include "interfaces/legacy/Stat.h"
46
47 %rename ("delete") XBMCAddon::xbmcvfs::deleteFile;
48 %include "interfaces/legacy/ModuleXbmcvfs.h"
49