[osx/ios] remove unused function
[vuplus_xbmc] / xbmc / interfaces / python / xbmcmodule / listitem.h
1 #pragma once
2
3 /*
4  *      Copyright (C) 2005-2008 Team XBMC
5  *      http://www.xbmc.org
6  *
7  *  This Program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License as published by
9  *  the Free Software Foundation; either version 2, or (at your option)
10  *  any later version.
11  *
12  *  This Program is distributed in the hope that it will be useful,
13  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  *  GNU General Public License for more details.
16  *
17  *  You should have received a copy of the GNU General Public License
18  *  along with XBMC; see the file COPYING.  If not, write to
19  *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
20  *  http://www.gnu.org/copyleft/gpl.html
21  *
22  */
23
24 #if (defined HAVE_CONFIG_H) && (!defined WIN32)
25   #include "config.h"
26 #endif
27 #if (defined USE_EXTERNAL_PYTHON)
28   #if (defined HAVE_LIBPYTHON2_6)
29     #include <python2.6/Python.h>
30   #elif (defined HAVE_LIBPYTHON2_5)
31     #include <python2.5/Python.h>
32   #elif (defined HAVE_LIBPYTHON2_4)
33     #include <python2.4/Python.h>
34   #else
35     #error "Could not determine version of Python to use."
36   #endif
37 #else
38   #include "python/Include/Python.h"
39 #endif
40 #include "FileItem.h"
41
42 #define ListItem_Check(op) PyObject_TypeCheck(op, &ListItem_Type)
43 #define ListItem_CheckExact(op) ((op)->ob_type == &ListItem_Type)
44
45 #ifdef __cplusplus
46 extern "C" {
47 #endif
48
49 namespace PYXBMC
50 {
51   extern PyTypeObject ListItem_Type;
52
53   typedef struct {
54     PyObject_HEAD
55     CFileItemPtr item;
56   } ListItem;
57
58   extern ListItem* ListItem_FromString(std::string strLabel);
59
60   void initListItem_Type();
61 }
62
63 #ifdef __cplusplus
64 }
65 #endif